From 9ddc944a09e4df7f808d044617408a13f81287ff Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Fri, 5 Jul 2024 17:38:16 -0300 Subject: [PATCH 01/28] Update TestBlockWithReceipts, remove integration files, update types --- rpc/block_test.go | 10 +- rpc/mock_test.go | 156 ++++++- rpc/tests/block/integration330363.json | 313 ------------- .../blockWithReceipts/integration332275.json | 355 -------------- rpc/types_block.go | 4 +- rpc/types_block_test.go | 437 +++++++++++++++++- rpc/types_block_transaction.go | 67 ++- 7 files changed, 611 insertions(+), 731 deletions(-) delete mode 100644 rpc/tests/block/integration330363.json delete mode 100644 rpc/tests/blockWithReceipts/integration332275.json diff --git a/rpc/block_test.go b/rpc/block_test.go index 508d23c7..1bc19f52 100644 --- a/rpc/block_test.go +++ b/rpc/block_test.go @@ -365,7 +365,7 @@ func TestBlockWithTxsAndInvokeTXNV1(t *testing.T) { Timestamp: 1714901729, }, Status: "ACCEPTED_ON_L1", - Transactions: []BlockTransaction{ + Transactions: []IBlockTransaction{ BlockInvokeTxnV1{ TransactionHash: utils.TestHexToFelt(t, "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc"), @@ -474,7 +474,7 @@ func TestBlockWithTxsAndInvokeTXNV3(t *testing.T) { Timestamp: 1661450764, }, Status: "ACCEPTED_ON_L1", - Transactions: []BlockTransaction{ + Transactions: []IBlockTransaction{ BlockInvokeTxnV3{ TransactionHash: utils.TestHexToFelt(t, "0xb91eada292de46f4ec663bac57699c7b8f8fa454a8efad91fde7f35d941199"), InvokeTxnV3: InvokeTxnV3{ @@ -614,7 +614,7 @@ func TestBlockWithTxsAndDeployOrDeclare(t *testing.T) { Timestamp: 1715289398, }, Status: "ACCEPTED_ON_L1", - Transactions: []BlockTransaction{ + Transactions: []IBlockTransaction{ BlockDeployAccountTxn{ TransactionHash: utils.TestHexToFelt(t, "0x26e30d2ed579c1ff575710d8ce29d9056e67ac08ab261a7221d384734d6ad5a"), DeployAccountTxn: DeployAccountTxn{ @@ -659,7 +659,7 @@ func TestBlockWithTxsAndDeployOrDeclare(t *testing.T) { Timestamp: 1715244926, }, Status: "ACCEPTED_ON_L1", - Transactions: []BlockTransaction{ + Transactions: []IBlockTransaction{ BlockDeclareTxnV1{ TransactionHash: utils.TestHexToFelt(t, "0x3c7817502dac2dc90198c6b64b85f3700507d74c75e08af85164e1b35e3a8b5"), DeclareTxnV1: DeclareTxnV1{ @@ -688,7 +688,7 @@ func TestBlockWithTxsAndDeployOrDeclare(t *testing.T) { Timestamp: 1715292305, }, Status: "ACCEPTED_ON_L1", - Transactions: []BlockTransaction{ + Transactions: []IBlockTransaction{ BlockDeclareTxnV2{ TransactionHash: utils.TestHexToFelt(t, "0x3e68091ecacab5a880ae8d9847d7b87408bbf05270ded34e082577acfdc3770"), DeclareTxnV2: DeclareTxnV2{ diff --git a/rpc/mock_test.go b/rpc/mock_test.go index e1d93df5..d398a9f4 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -342,7 +342,7 @@ func mock_starknet_getTransactionReceipt(result interface{}, method string, args } arg0Felt := args[0].(*felt.Felt) - l1BlockHash,err:=new(felt.Felt).SetString("0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519") + l1BlockHash, err := new(felt.Felt).SetString("0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519") if err != nil { return err } @@ -369,7 +369,7 @@ func mock_starknet_getTransactionReceipt(result interface{}, method string, args } return json.Unmarshal(txnReceipt, &r) - } else if arg0Felt.Equal(l1BlockHash){ + } else if arg0Felt.Equal(l1BlockHash) { var txnRec TransactionReceiptWithBlockInfo read, err := os.ReadFile("tests/receipt/0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json") if err != nil { @@ -1094,32 +1094,152 @@ func mock_starknet_getBlockWithReceipts(result interface{}, method string, args if len(args) != 1 { return errWrongArgs } - _, ok = args[0].(BlockID) + blockId, ok := args[0].(BlockID) if !ok { fmt.Printf("args[0] should be BlockID, got %T\n", args[0]) return errWrongArgs } - var blockWithReceipts struct { - Result BlockWithReceipts `json:"result"` - } - read, err := os.ReadFile("tests/blockWithReceipts/integration332275.json") - - if err != nil { - return err - } - - err = json.Unmarshal(read, &blockWithReceipts) + fakeFeltField, err := utils.HexToFelt("0xdeadbeef") if err != nil { return err } - - blockWithReceiptsJSON, err := json.Marshal(blockWithReceipts.Result) - if err != nil { - return err + if blockId.Tag == "pending" { + pBlock, err := json.Marshal( + PendingBlockWithReceipts{ + PendingBlockHeader{ + ParentHash: new(felt.Felt).SetUint64(1), + Timestamp: 123, + SequencerAddress: new(felt.Felt).SetUint64(1), + L1GasPrice: ResourcePrice{ + PriceInFRI: new(felt.Felt).SetUint64(1), + PriceInWei: new(felt.Felt).SetUint64(1), + }, + L1DataGasPrice: ResourcePrice{ + PriceInFRI: new(felt.Felt).SetUint64(1), + PriceInWei: new(felt.Felt).SetUint64(1), + }, + L1DAMode: L1DAModeBlob, + StarknetVersion: "0.13", + }, + BlockBodyWithReceipts{ + Transactions: []TransactionWithReceipt{ + { + Transaction: BlockTransaction{ + BlockInvokeTxnV1{ + TransactionHash: fakeFeltField, + InvokeTxnV1: InvokeTxnV1{ + Type: "INVOKE", + Version: TransactionV1, + Nonce: new(felt.Felt).SetUint64(1), + MaxFee: new(felt.Felt).SetUint64(1), + SenderAddress: fakeFeltField, + Signature: []*felt.Felt{ + fakeFeltField, + }, + Calldata: []*felt.Felt{ + new(felt.Felt).SetUint64(1), + }, + }, + }, + }, + Receipt: UnknownTransactionReceipt{ + TransactionReceipt: InvokeTransactionReceipt{ + Type: "INVOKE", + TransactionHash: fakeFeltField, + ActualFee: FeePayment{ + Amount: new(felt.Felt).SetUint64(1), + Unit: UnitWei, + }, + ExecutionStatus: TxnExecutionStatusSUCCEEDED, + FinalityStatus: TxnFinalityStatusAcceptedOnL1, + MessagesSent: []MsgToL1{}, + Events: []Event{}, + }, + }, + }, + }, + }, + }, + ) + if err != nil { + return err + } + err = json.Unmarshal(pBlock, &r) + if err != nil { + return err + } + } else { + block, err := json.Marshal( + BlockWithReceipts{ + BlockHeader{ + BlockHash: fakeFeltField, + ParentHash: new(felt.Felt).SetUint64(1), + BlockNumber: 1, + NewRoot: new(felt.Felt).SetUint64(1), + Timestamp: 123, + SequencerAddress: new(felt.Felt).SetUint64(1), + L1GasPrice: ResourcePrice{ + PriceInFRI: new(felt.Felt).SetUint64(1), + PriceInWei: new(felt.Felt).SetUint64(1), + }, + L1DataGasPrice: ResourcePrice{ + PriceInFRI: new(felt.Felt).SetUint64(1), + PriceInWei: new(felt.Felt).SetUint64(1), + }, + L1DAMode: L1DAModeBlob, + StarknetVersion: "0.13", + }, + "ACCEPTED_ON_L1", + BlockBodyWithReceipts{ + Transactions: []TransactionWithReceipt{ + { + Transaction: BlockTransaction{ + BlockInvokeTxnV1{ + TransactionHash: fakeFeltField, + InvokeTxnV1: InvokeTxnV1{ + Type: "INVOKE", + Version: TransactionV1, + Nonce: new(felt.Felt).SetUint64(1), + MaxFee: new(felt.Felt).SetUint64(1), + SenderAddress: fakeFeltField, + Signature: []*felt.Felt{ + fakeFeltField, + }, + Calldata: []*felt.Felt{ + new(felt.Felt).SetUint64(1), + }, + }, + }, + }, + Receipt: UnknownTransactionReceipt{ + TransactionReceipt: InvokeTransactionReceipt{ + Type: "INVOKE", + TransactionHash: fakeFeltField, + ActualFee: FeePayment{ + Amount: new(felt.Felt).SetUint64(1), + Unit: UnitWei, + }, + ExecutionStatus: TxnExecutionStatusSUCCEEDED, + FinalityStatus: TxnFinalityStatusAcceptedOnL1, + MessagesSent: []MsgToL1{}, + Events: []Event{}, + }, + }, + }, + }, + }, + }, + ) + if err != nil { + return err + } + if err := json.Unmarshal(block, &r); err != nil { + return err + } } - return json.Unmarshal(blockWithReceiptsJSON, &r) + return nil } // mock_starknet_traceBlockTransactions is a function that traces the transactions of a block in the StarkNet network. diff --git a/rpc/tests/block/integration330363.json b/rpc/tests/block/integration330363.json deleted file mode 100644 index cb29e43b..00000000 --- a/rpc/tests/block/integration330363.json +++ /dev/null @@ -1,313 +0,0 @@ -{ - "block_hash": "0x8ab8117e952f95efd96de0bc66dc6f13fe68dfda14b95fe1972759dee283a8", - "parent_block_hash": "0x2ef5b8b01ad9345f2b6be196005034baf42362c7406a89d8788b5969efaea1", - "block_number": 330363, - "state_root": "0x4406dc46518501c7530a13236d5620c8edbc53771c3b9080c148788ad76fd0c", - "transaction_commitment": "0x13367121d0b7e34a9b10c8a5a1c269811cd9afc3ce680c88888f1a22d2f017a", - "event_commitment": "0x1090dd2ab2aa22bd5fc5a59d3b1394d54461bb2a80156c4b2c2622d2c474ca2", - "status": "ACCEPTED_ON_L1", - "l1_da_mode": "BLOB", - "l1_gas_price": { - "price_in_wei": "0x3b9aca0a", - "price_in_fri": "0x2b6fdb70" - }, - "l1_data_gas_price": { - "price_in_wei": "0x5265a14ef", - "price_in_fri": "0x3c0c00c87" - }, - "transactions": [ - { - "transaction_hash": "0x1ffcecfdae93215db398482d3e91e065816bdeda116ef8d3e68f2f6c01a0e22", - "version": "0x3", - "signature": [ - "0x4de1bca2906135e43869ae416d6e5410660c2d1412678a743d3ab5f66bf78b0", - "0x5b2f18362a175878089b2f69b2953e3427bb9135fc64d6c50f7f3efe4e5d6fb" - ], - "nonce": "0xd0e", - "nonce_data_availability_mode": 0, - "fee_data_availability_mode": 0, - "resource_bounds": { - "L1_GAS": { - "max_amount": "0x4c4b40", - "max_price_per_unit": "0x5af3107a4000" - }, - "L2_GAS": { - "max_amount": "0x0", - "max_price_per_unit": "0x0" - } - }, - "tip": "0x0", - "paymaster_data": [], - "sender_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "calldata": [ - "0x2", - "0x1305509ce387ad1b83a47c85a0ff3e82cb3be71f39e8c8753589f10f60ecde4", - "0x1a8e87e9d2008fcd3ce423ae5219c21e49be18d05d72825feb7e2bb687ba35c", - "0x2", - "0xa5bbc76ce4df888a29eda0b0a330ab03", - "0x60b205737c37d74ad955261cbadab5a", - "0x1305509ce387ad1b83a47c85a0ff3e82cb3be71f39e8c8753589f10f60ecde4", - "0x2fd9126ee011f3a837cea02e32ae4ee73342d827e216998e5616bab88d8b7ea", - "0x1", - "0x2fd9126ee011f3a837cea02e32ae4ee73342d827e216998e5616bab88d8b7ea" - ], - "account_deployment_data": [], - "type": "INVOKE_FUNCTION" - }, - { - "transaction_hash": "0x176d3c945cfd1617a173023dd08904964a28d4047207a55890d535ecebeb855", - "version": "0x3", - "signature": [ - "0x64ac3d82149ae762db30b40a7bf62bcdda3e7766a50b277ab8fc310a5fa7573", - "0xaf92c9be805d0032253e7bacbd0ac374e50e5a81dfd473c5f34a132b49592f" - ], - "nonce": "0xd0f", - "nonce_data_availability_mode": 0, - "fee_data_availability_mode": 0, - "resource_bounds": { - "L1_GAS": { - "max_amount": "0x4c4b40", - "max_price_per_unit": "0x5af3107a4000" - }, - "L2_GAS": { - "max_amount": "0x0", - "max_price_per_unit": "0x0" - } - }, - "tip": "0x0", - "paymaster_data": [], - "sender_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "calldata": [ - "0x2", - "0x1305509ce387ad1b83a47c85a0ff3e82cb3be71f39e8c8753589f10f60ecde4", - "0x1136789e1c76159d9b9eca06fcef05bdcf77f5d51bd4d9e09f2bc8d7520d8e6", - "0x2", - "0x5b4484f4c3ac6b3e36f40d58b8a4898f", - "0x47ed253dc74560135faa58a3f5b1dafd", - "0x4e18c9f8a657466bfe60e23e590fc1e60cb465bf6a8ca8587b6a35f3b53db20", - "0x1a8e87e9d2008fcd3ce423ae5219c21e49be18d05d72825feb7e2bb687ba35c", - "0x2", - "0x98c0f992deda4c98c7c897429c4a0bef", - "0xd65041cb57428e00fcd0493c36ebf439" - ], - "account_deployment_data": [], - "type": "INVOKE_FUNCTION" - }, - { - "transaction_hash": "0x1026a5617deaf998b8cd2ee8c74ccee9691bedbdcabb20681f148918a67c579", - "version": "0x1", - "max_fee": "0x354a6ba7a18000", - "signature": [ - "0x789e321106ca0461f6cb87c402b16ab728bcc9585f5c2933e3a1eafe388318a", - "0x68832f809f3eeda9b3605436337d8e65a96705cd4837edd48bcba7dc60bb75e" - ], - "nonce": "0xd10", - "sender_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "calldata": [ - "0x2", - "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", - "0x2", - "0x4cbc5a746176a23a47175d24e8649e04e2964ecc03bc1acbc7bffe874f42d29", - "0x476f6db708731413479d252509fc9f09287ae8bc0f950e1d9cb2a104df3f1d4", - "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "0x2913ee03e5e3308c41e308bd391ea4faac9b9cb5062c76a6b3ab4f65397e106", - "0xb", - "0x7", - "0x18211d912741bc54c285b2d9e064677d9583d23d1c13cd6315badbb075631f3", - "0x616a09e59f254563a69a8ec20eabbf00f63ab8298ec88b70bbe32b72cc64699", - "0x6967836d5ad89ce9d3ae655ceb419900910450d32a5c258ae81cd8f45f44e5d", - "0x14f718f63db1f6b0485079a6100b7ffc9e28916799c1df3b57088a8bb2a9789", - "0x353a201b0153a4e83ba63adfc59e952dcc5b59d9c99cda7b941b544fdca845a", - "0x171f281c5b58f4e8065c0a62ed1d593509a8716b239af914b96556cc7c50845", - "0x345fd24f3305953bcd73901a2948cc4f8dde03373f893d2f310491bf0773c8c", - "0x2", - "0x1aa3586a2df68cdd16b828652af188839a563222f2f554602eca15b99988ce", - "0x7f7f98f280212b5dabcf57d77cc81f9ce1f4d9e1d72c3c24df954edf98b7725" - ], - "type": "INVOKE_FUNCTION" - }, - { - "transaction_hash": "0x4c2d8153bc1869b19e72cc54e093dab2e3ceb1ade34b0a7b3200259dcfa03f2", - "version": "0x1", - "max_fee": "0x354a6ba7a18000", - "signature": [ - "0x4d82a74f09ddef3863f7185707bbdf7e14e47bdbe72c24ad6c5bbc1064a2213", - "0x100f5c4cd679818b1a79922b8e26dc4c9d0ddba213e0669b212c3e24b6d255c" - ], - "nonce": "0xd11", - "sender_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "calldata": [ - "0x2", - "0x4e18c9f8a657466bfe60e23e590fc1e60cb465bf6a8ca8587b6a35f3b53db20", - "0x2468d193cd15b621b24c2a602b8dbcfa5eaa14f88416c40c09d7fd12592cb4b", - "0x0", - "0x1305509ce387ad1b83a47c85a0ff3e82cb3be71f39e8c8753589f10f60ecde4", - "0x1136789e1c76159d9b9eca06fcef05bdcf77f5d51bd4d9e09f2bc8d7520d8e6", - "0x2", - "0x22ba9c150f70a0710980f011720f8bcf", - "0x9859d9b143ea8473a96ca0f0cae406d4" - ], - "type": "INVOKE_FUNCTION" - } - ], - "timestamp": 1708331964, - "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "transaction_receipts": [ - { - "execution_status": "SUCCEEDED", - "transaction_index": 0, - "transaction_hash": "0x1ffcecfdae93215db398482d3e91e065816bdeda116ef8d3e68f2f6c01a0e22", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", - "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8" - ], - "data": [ - "0x1e5204243c0", - "0x0" - ] - }, - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd" - ], - "data": [ - "0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", - "0x265ebac9efe21a8d", - "0x0", - "0x265ebcaf10245e4d", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 10432, - "builtin_instance_counter": { - "ec_op_builtin": 3, - "range_check_builtin": 421, - "pedersen_builtin": 24 - }, - "n_memory_holes": 0, - "data_availability": { - "l1_gas": 0, - "l1_data_gas": 128 - } - }, - "actual_fee": "0x1e5204243c0" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 1, - "transaction_hash": "0x176d3c945cfd1617a173023dd08904964a28d4047207a55890d535ecebeb855", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", - "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8" - ], - "data": [ - "0x1e67bc11f40", - "0x0" - ] - }, - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd" - ], - "data": [ - "0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", - "0x265ebcaf10245e4d", - "0x0", - "0x265ebe958be57d8d", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 13918, - "builtin_instance_counter": { - "pedersen_builtin": 25, - "ec_op_builtin": 3, - "range_check_builtin": 708 - }, - "n_memory_holes": 0, - "data_availability": { - "l1_gas": 0, - "l1_data_gas": 128 - } - }, - "actual_fee": "0x1e67bc11f40" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 2, - "transaction_hash": "0x1026a5617deaf998b8cd2ee8c74ccee9691bedbdcabb20681f148918a67c579", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "keys": [ - "0x18211d912741bc54c285b2d9e064677d9583d23d1c13cd6315badbb075631f3", - "0x616a09e59f254563a69a8ec20eabbf00f63ab8298ec88b70bbe32b72cc64699", - "0x6967836d5ad89ce9d3ae655ceb419900910450d32a5c258ae81cd8f45f44e5d", - "0x14f718f63db1f6b0485079a6100b7ffc9e28916799c1df3b57088a8bb2a9789", - "0x353a201b0153a4e83ba63adfc59e952dcc5b59d9c99cda7b941b544fdca845a", - "0x171f281c5b58f4e8065c0a62ed1d593509a8716b239af914b96556cc7c50845", - "0x345fd24f3305953bcd73901a2948cc4f8dde03373f893d2f310491bf0773c8c" - ], - "data": [ - "0x1aa3586a2df68cdd16b828652af188839a563222f2f554602eca15b99988ce", - "0x7f7f98f280212b5dabcf57d77cc81f9ce1f4d9e1d72c3c24df954edf98b7725" - ] - } - ], - "execution_resources": { - "n_steps": 7254, - "builtin_instance_counter": { - "ec_op_builtin": 3, - "range_check_builtin": 186, - "pedersen_builtin": 34 - }, - "n_memory_holes": 0, - "data_availability": { - "l1_gas": 0, - "l1_data_gas": 256 - } - }, - "actual_fee": "0x52b3dc781d2" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 3, - "transaction_hash": "0x4c2d8153bc1869b19e72cc54e093dab2e3ceb1ade34b0a7b3200259dcfa03f2", - "l2_to_l1_messages": [], - "events": [], - "execution_resources": { - "n_steps": 10625, - "builtin_instance_counter": { - "range_check_builtin": 474, - "poseidon_builtin": 1, - "pedersen_builtin": 23, - "ec_op_builtin": 3 - }, - "n_memory_holes": 0, - "data_availability": { - "l1_gas": 0, - "l1_data_gas": 128 - } - }, - "actual_fee": "0x299b1f89098" - } - ], - "starknet_version": "0.13.1" -} \ No newline at end of file diff --git a/rpc/tests/blockWithReceipts/integration332275.json b/rpc/tests/blockWithReceipts/integration332275.json deleted file mode 100644 index b90ef020..00000000 --- a/rpc/tests/blockWithReceipts/integration332275.json +++ /dev/null @@ -1,355 +0,0 @@ -{ - "jsonrpc": "2.0", - "result": { - "status": "ACCEPTED_ON_L2", - "block_hash": "0x76c781a6a9d7f4a75205cd282fadf63f0c41d5c585a6cc384a7e726ac483316", - "parent_hash": "0x2b99733fb1dbeb1d1b8f7337755799577809c4c219296c4ed4fbd7a655689e3", - "block_number": 332275, - "new_root": "0x327658410803122a91b3116391348a1bd6f0e94bc6c80e2aa633df4261e564e", - "timestamp": 1709710853, - "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "l1_gas_price": { - "price_in_fri": "0x173c6ce8eb5", - "price_in_wei": "0x3b9aca09" - }, - "l1_data_gas_price": { - "price_in_fri": "0x208063558c79", - "price_in_wei": "0x535f4d983" - }, - "l1_da_mode": "BLOB", - "starknet_version": "0.13.1", - "transactions": [ - { - "transaction": { - "transaction_hash": "0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e", - "type": "INVOKE", - "version": "0x3", - "nonce": "0x2aed", - "sender_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "signature": [ - "0x10bfdb0cf187c562bc10d392d59514a2a680c281f230cdf374eb21bf611ed44", - "0xe0ce8256e76871e3552f1dba323ceb3f19b004fddb59f5387d40d115f6fff1" - ], - "calldata": [ - "0x1", - "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", - "0x2", - "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "0x29a82e0d28fd72bfbafa6bb5cdffd9cdb00bf2145f0542d2de771fe640b49ba" - ], - "resource_bounds": { - "l1_gas": { - "max_amount": "0xc3500", - "max_price_per_unit": "0x5af3107a4000" - }, - "l2_gas": { - "max_amount": "0x0", - "max_price_per_unit": "0x0" - } - }, - "tip": "0x0", - "paymaster_data": [], - "account_deployment_data": [], - "nonce_data_availability_mode": "L1", - "fee_data_availability_mode": "L1" - }, - "receipt": { - "type": "INVOKE", - "transaction_hash": "0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e", - "actual_fee": { - "amount": "0x30df144f446a59", - "unit": "FRI" - }, - "execution_status": "SUCCEEDED", - "finality_status": "ACCEPTED_ON_L2", - "messages_sent": [], - "events": [ - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", - "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8" - ], - "data": [ - "0x30df144f446a59", - "0x0" - ] - }, - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd" - ], - "data": [ - "0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", - "0x477bd3017f2b1cec6", - "0x0", - "0x477ee0f2c41f6391f", - "0x0" - ] - } - ], - "execution_resources": { - "steps": 7754, - "pedersen_builtin_applications": 20, - "range_check_builtin_applications": 185, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 0, - "l1_data_gas": 384 - } - } - } - }, - { - "transaction": { - "transaction_hash": "0x757078d49560c9f4a111caa0af5d7745453317069a81f6cd46391ef38cb55f5", - "type": "INVOKE", - "version": "0x3", - "nonce": "0x2aee", - "sender_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "signature": [ - "0x12a9fce2a3185b87f26c1f05f1001a37fd6ad8b9eb3799e22a2a14e19f47718", - "0x1371a0f70b3fa871913e441023355c57cefa150e29712224333889cfc89ef5" - ], - "calldata": [ - "0x1", - "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "0x218f305395474a84a39307fa5297be118fe17bf65e27ac5e2de6617baa44c64", - "0x2", - "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "0x1" - ], - "resource_bounds": { - "l1_gas": { - "max_amount": "0xc3500", - "max_price_per_unit": "0x5af3107a4000" - }, - "l2_gas": { - "max_amount": "0x0", - "max_price_per_unit": "0x0" - } - }, - "tip": "0x0", - "paymaster_data": [], - "account_deployment_data": [], - "nonce_data_availability_mode": "L1", - "fee_data_availability_mode": "L1" - }, - "receipt": { - "type": "INVOKE", - "transaction_hash": "0x757078d49560c9f4a111caa0af5d7745453317069a81f6cd46391ef38cb55f5", - "actual_fee": { - "amount": "0xd08e8785b60e92", - "unit": "FRI" - }, - "execution_status": "SUCCEEDED", - "finality_status": "ACCEPTED_ON_L2", - "messages_sent": [ - { - "from_address": "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "to_address": "0x0000000000000000000000000000000000000001", - "payload": [ - "0xc", - "0x22" - ] - } - ], - "events": [ - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", - "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8" - ], - "data": [ - "0xd08e8785b60e92", - "0x0" - ] - }, - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd" - ], - "data": [ - "0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", - "0x477ee0f2c41f6391f", - "0x0", - "0x478be9db3c7ac47b1", - "0x0" - ] - } - ], - "execution_resources": { - "steps": 9817, - "pedersen_builtin_applications": 20, - "range_check_builtin_applications": 229, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 0, - "l1_data_gas": 384 - } - } - } - }, - { - "transaction": { - "transaction_hash": "0x3b8e97046cefa8b6f67ec93627149d93d383ca6fc6a7268ac2fcb87184c10cb", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x2aef", - "max_fee": "0x354a6ba7a18000", - "sender_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "signature": [ - "0x520a4395e870142b7f28ecdd576c4d03f48c3f30b8f5b124179e2eb05e57106", - "0x185f6fc7e34905834fd19c370e2cd300fd9efa94c40c271e2340ca2f43fbc8d" - ], - "calldata": [ - "0x2", - "0x1305509ce387ad1b83a47c85a0ff3e82cb3be71f39e8c8753589f10f60ecde4", - "0x31aafc75f498fdfa7528880ad27246b4c15af4954f96228c9a132b328de1c92", - "0x6", - "0x6d562a2c7e7cad97825e17b208c2f4b35cde5f8c4a5df8290fbe7d23948d774", - "0x3", - "0x2c8be639ad617fb2b7bfc8a081125f7946cc75836c6f03a82758081935f8bc8", - "0x2e06d524e1ebda8d0d8852b303dcd55370cf61653ed278ef3e6416f9f752aad", - "0x430912e8fdb7ecb763b0dd3d77ef16b1f9953ceb27a0eda2030e15f96e72076", - "0x719fd2fd9e4ab7641561b3a8e63ab6ae990387ddd0caf73ea91b0e795f41816", - "0x1305509ce387ad1b83a47c85a0ff3e82cb3be71f39e8c8753589f10f60ecde4", - "0x2468d193cd15b621b24c2a602b8dbcfa5eaa14f88416c40c09d7fd12592cb4b", - "0x0" - ] - }, - "receipt": { - "type": "INVOKE", - "transaction_hash": "0x3b8e97046cefa8b6f67ec93627149d93d383ca6fc6a7268ac2fcb87184c10cb", - "actual_fee": { - "amount": "0x29fa2848a34", - "unit": "WEI" - }, - "execution_status": "SUCCEEDED", - "finality_status": "ACCEPTED_ON_L2", - "messages_sent": [], - "events": [ - { - "from_address": "0x1305509ce387ad1b83a47c85a0ff3e82cb3be71f39e8c8753589f10f60ecde4", - "keys": [ - "0x15bd0500dc9d7e69ab9577f73a8d753e8761bed10f25ba0f124254dc4edb8b4" - ], - "data": [ - "0x6d562a2c7e7cad97825e17b208c2f4b35cde5f8c4a5df8290fbe7d23948d774", - "0x3", - "0x2c8be639ad617fb2b7bfc8a081125f7946cc75836c6f03a82758081935f8bc8", - "0x2e06d524e1ebda8d0d8852b303dcd55370cf61653ed278ef3e6416f9f752aad", - "0x430912e8fdb7ecb763b0dd3d77ef16b1f9953ceb27a0eda2030e15f96e72076" - ] - } - ], - "execution_resources": { - "steps": 7505, - "pedersen_builtin_applications": 27, - "range_check_builtin_applications": 195, - "ec_op_builtin_applications": 3, - "poseidon_builtin_applications": 1, - "data_availability": { - "l1_gas": 0, - "l1_data_gas": 128 - } - } - } - }, - { - "transaction": { - "transaction_hash": "0x697b7acff810b674e383c3a160a62326b6dc33023d2fd4df290c3f1bee05dbc", - "type": "INVOKE", - "version": "0x3", - "nonce": "0x2af0", - "sender_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "signature": [ - "0x1fa5f4fcf8722d95a61c42948a6026b486ff98c83f3fe5391e5e5afb1839ccb", - "0x399f3dd373a9534f7c02abf548ced6f368c6885a9c8df22ecc8869f5565fe05" - ], - "calldata": [ - "0x1", - "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "0x169f135eddda5ab51886052d777a57f2ea9c162d713691b5e04a6d4ed71d47f", - "0x5", - "0x3ae2f9b340e70e3c6ae2101715ccde645f3766283bd3bfade4b5ce7cd7dc9c6", - "0x6411cde4414eb104149bde3103fec1ecd8e788563a0842ef12e0f6f79802b8c", - "0x2", - "0x7b3d68ced7b361fd2b7c1ef609278dfdb75262d13479a3a5937b277858e10fc", - "0x24c527f06258217aab798f638e50475ded15c917bd4afaec0100b6fb80524e4" - ], - "resource_bounds": { - "l1_gas": { - "max_amount": "0xc3500", - "max_price_per_unit": "0x5af3107a4000" - }, - "l2_gas": { - "max_amount": "0x0", - "max_price_per_unit": "0x0" - } - }, - "tip": "0x0", - "paymaster_data": [], - "account_deployment_data": [], - "nonce_data_availability_mode": "L1", - "fee_data_availability_mode": "L1" - }, - "receipt": { - "type": "INVOKE", - "transaction_hash": "0x697b7acff810b674e383c3a160a62326b6dc33023d2fd4df290c3f1bee05dbc", - "actual_fee": { - "amount": "0x24ac0781929f8f", - "unit": "FRI" - }, - "execution_status": "SUCCEEDED", - "finality_status": "ACCEPTED_ON_L2", - "messages_sent": [], - "events": [ - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", - "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8" - ], - "data": [ - "0x24ac0781929f8f", - "0x0" - ] - }, - { - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd" - ], - "data": [ - "0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", - "0x478be9db3c7ac47b1", - "0x0", - "0x478e349bb493ee740", - "0x0" - ] - } - ], - "execution_resources": { - "steps": 6944, - "pedersen_builtin_applications": 30, - "range_check_builtin_applications": 163, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 0, - "l1_data_gas": 288 - } - } - } - } - ] - }, - "id": 1 -} \ No newline at end of file diff --git a/rpc/types_block.go b/rpc/types_block.go index 15670387..2a490e82 100644 --- a/rpc/types_block.go +++ b/rpc/types_block.go @@ -127,8 +127,8 @@ type PendingBlock struct { // encoding/json doesn't support inlining fields type BlockWithReceipts struct { - BlockStatus BlockStatus `json:"status"` BlockHeader + Status BlockStatus `json:"status"` BlockBodyWithReceipts } @@ -137,7 +137,7 @@ type BlockBodyWithReceipts struct { } type TransactionWithReceipt struct { - Transaction UnknownTransaction `json:"transaction"` + Transaction BlockTransaction `json:"transaction"` Receipt UnknownTransactionReceipt `json:"receipt"` } diff --git a/rpc/types_block_test.go b/rpc/types_block_test.go index d2091f77..295d6d5c 100644 --- a/rpc/types_block_test.go +++ b/rpc/types_block_test.go @@ -5,10 +5,12 @@ import ( _ "embed" "encoding/json" "errors" - "os" + "fmt" + "strings" "testing" "github.com/NethermindEth/juno/core/felt" + "github.com/NethermindEth/starknet.go/utils" "github.com/test-go/testify/require" ) @@ -130,40 +132,431 @@ func TestBlock_Unmarshal(t *testing.T) { } func TestBlockWithReceipts(t *testing.T) { - provider := &Provider{c: &rpcMock{}} - - ctx := context.Background() + testConfig := beforeEach(t) type testSetType struct { - BlockID BlockID - ExpectedBlockWithReceipts BlockWithReceipts - ExpectedErr *RPCError + BlockID BlockID + ExpectedBlockWithReceipts *BlockWithReceipts + ExpectedPendingBlockWithReceipts *PendingBlockWithReceipts + } + + var blockSepolia64159 = BlockWithReceipts{ + BlockHeader{ + BlockHash: utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964"), + ParentHash: utils.TestHexToFelt(t, "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5"), + BlockNumber: 64159, + NewRoot: utils.TestHexToFelt(t, "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0"), + Timestamp: 1714901729, + SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), + L1GasPrice: ResourcePrice{ + PriceInFRI: utils.TestHexToFelt(t, "0xdf0413d3c777"), + PriceInWei: utils.TestHexToFelt(t, "0x185f2d3eb5"), + }, + L1DataGasPrice: ResourcePrice{ + PriceInFRI: utils.TestHexToFelt(t, "0xa41c1219f8849"), + PriceInWei: utils.TestHexToFelt(t, "0x11ef315a9ab"), + }, + L1DAMode: L1DAModeBlob, + StarknetVersion: "0.13.1.1", + }, + "ACCEPTED_ON_L1", + BlockBodyWithReceipts{ + Transactions: []TransactionWithReceipt{ + // a lot of previous transactions ... + { // this is the last transaction of this block + Transaction: BlockTransaction{ + BlockInvokeTxnV1{ + TransactionHash: utils.TestHexToFelt(t, "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b"), + InvokeTxnV1: InvokeTxnV1{ + Type: "INVOKE", + Version: TransactionV1, + Nonce: utils.TestHexToFelt(t, "0x3a"), + MaxFee: utils.TestHexToFelt(t, "0x1bad55a98e1c1"), + SenderAddress: utils.TestHexToFelt(t, "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067"), + Signature: []*felt.Felt{ + utils.TestHexToFelt(t, "0x1"), + utils.TestHexToFelt(t, "0x7f1d7eb58b1467c75dad461953ba6d931c7b46b51ee2055996ebaa595583985"), + utils.TestHexToFelt(t, "0x34fb6291f60e2a7ec088a92075bb977d89eb779e8f51fa638799d27a999d9fe"), + }, + Calldata: []*felt.Felt{ + utils.TestHexToFelt(t, "0x1"), + utils.TestHexToFelt(t, "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e"), + utils.TestHexToFelt(t, "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126"), + utils.TestHexToFelt(t, "0x6"), + utils.TestHexToFelt(t, "0x5265706f73736573734275696c64696e67"), + utils.TestHexToFelt(t, "0x4"), + utils.TestHexToFelt(t, "0x5"), + utils.TestHexToFelt(t, "0xa25"), + utils.TestHexToFelt(t, "0x1"), + utils.TestHexToFelt(t, "0xe52"), + }, + }, + }, + }, + Receipt: UnknownTransactionReceipt{ + TransactionReceipt: InvokeTransactionReceipt{ + Type: "INVOKE", + TransactionHash: utils.TestHexToFelt(t, "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b"), + ActualFee: FeePayment{ + Amount: utils.TestHexToFelt(t, "0x1276c2c6477ed"), + Unit: UnitWei, + }, + ExecutionStatus: TxnExecutionStatusSUCCEEDED, + FinalityStatus: TxnFinalityStatusAcceptedOnL1, + MessagesSent: []MsgToL1{}, + Events: []Event{ + { + FromAddress: utils.TestHexToFelt(t, "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e"), + Keys: []*felt.Felt{ + utils.TestHexToFelt(t, "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef"), + utils.TestHexToFelt(t, "0x436f6e74726f6c"), + }, + Data: []*felt.Felt{ + utils.TestHexToFelt(t, "0x1"), + utils.TestHexToFelt(t, "0xa250005"), + utils.TestHexToFelt(t, "0x1"), + utils.TestHexToFelt(t, "0xe52"), + }, + }, + { + FromAddress: utils.TestHexToFelt(t, "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e"), + Keys: []*felt.Felt{ + utils.TestHexToFelt(t, "0x1085a37d58e6a75db0dadc9bb9e6707ed9c5630aec61fdcdcd832decec751c0"), + }, + Data: []*felt.Felt{ + utils.TestHexToFelt(t, "0x5"), + utils.TestHexToFelt(t, "0xa25"), + utils.TestHexToFelt(t, "0x1"), + utils.TestHexToFelt(t, "0xe52"), + utils.TestHexToFelt(t, "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067"), + }, + }, + { + FromAddress: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), + Keys: []*felt.Felt{ + utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), + }, + Data: []*felt.Felt{ + utils.TestHexToFelt(t, "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067"), + utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), + utils.TestHexToFelt(t, "0x1276c2c6477ed"), + utils.TestHexToFelt(t, "0x0"), + }, + }, + }, + ExecutionResources: ExecutionResources{ + ComputationResources{ + Steps: 34408, + PedersenApps: 27, + RangeCheckApps: 1077, + ECOPApps: 3, + PoseidonApps: 65, + }, + DataAvailability{ + L1Gas: 0, + L1DataGas: 256, + }, + }, + }, + }, + }, + }, + }, } - var expectedBlockWithReceipts struct { - Result BlockWithReceipts `json:"result"` + var blockMainnet655660 = BlockWithReceipts{ + BlockHeader{ + BlockHash: utils.TestHexToFelt(t, "0x7e53153d9737c3b60f917ae6df26b10bed5771ca2fce980c1cea9973e97ee7e"), + ParentHash: utils.TestHexToFelt(t, "0x2147e34aba1742219cb6a702476b55cd959bb70e44550ca9b9ce545125bac42"), + BlockNumber: 655660, + NewRoot: utils.TestHexToFelt(t, "0x5c49cad0c4eac00da62a9c17f4b043973bbb58af5e94c59da7a215626559154"), + Timestamp: 1720209856, + SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), + L1GasPrice: ResourcePrice{ + PriceInFRI: utils.TestHexToFelt(t, "0x151a2612eeb3"), + PriceInWei: utils.TestHexToFelt(t, "0xedd8f5ff"), + }, + L1DataGasPrice: ResourcePrice{ + PriceInFRI: utils.TestHexToFelt(t, "0xa7dc58"), + PriceInWei: utils.TestHexToFelt(t, "0x764"), + }, + L1DAMode: L1DAModeBlob, + StarknetVersion: "0.13.1.1", + }, + "ACCEPTED_ON_L1", + BlockBodyWithReceipts{ + Transactions: []TransactionWithReceipt{ + // a lot of previous transactions ... + { // this is the last transaction of this block + Transaction: BlockTransaction{ + BlockInvokeTxnV1{ + TransactionHash: utils.TestHexToFelt(t, "0x7dd8facd75bdebed2a76eb29dfa49172efea4913eea0abbc3e90a1af3d2c6ed"), + InvokeTxnV1: InvokeTxnV1{ + Type: "INVOKE", + Version: TransactionV1, + Nonce: utils.TestHexToFelt(t, "0x42"), + MaxFee: utils.TestHexToFelt(t, "0x286a5dccd4"), + SenderAddress: utils.TestHexToFelt(t, "0x4dcbde5783e7131bd21c4114e22723ee0db79a5060933235fabea35049b766e"), + Signature: []*felt.Felt{ + utils.TestHexToFelt(t, "0x1"), + utils.TestHexToFelt(t, "0x2f9c7fa1b56357a343cf982b8f0beb0fddc8dcbac0e2bb65f4b98edb255ebcc"), + utils.TestHexToFelt(t, "0x48b6a3060e267da25fc6d6ba4496f2380f11ece6e4231be2048a22ca273bee9"), + }, + Calldata: []*felt.Felt{ + utils.TestHexToFelt(t, "0x1"), + utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), + utils.TestHexToFelt(t, "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e"), + utils.TestHexToFelt(t, "0x3"), + utils.TestHexToFelt(t, "0x73b7f95acad70fc8b2746062d9cf87c3e1600e0add99f469945b9d03d35637a"), + utils.TestHexToFelt(t, "0x7180a5ffdd4fe"), + utils.TestHexToFelt(t, "0x0"), + }, + }, + }, + }, + Receipt: UnknownTransactionReceipt{ + TransactionReceipt: InvokeTransactionReceipt{ + Type: "INVOKE", + TransactionHash: utils.TestHexToFelt(t, "0x7dd8facd75bdebed2a76eb29dfa49172efea4913eea0abbc3e90a1af3d2c6ed"), + ActualFee: FeePayment{ + Amount: utils.TestHexToFelt(t, "0x1bdf725ee2"), + Unit: UnitWei, + }, + ExecutionStatus: TxnExecutionStatusSUCCEEDED, + FinalityStatus: TxnFinalityStatusAcceptedOnL1, + MessagesSent: []MsgToL1{}, + Events: []Event{ + { + FromAddress: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), + Keys: []*felt.Felt{ + utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), + }, + Data: []*felt.Felt{ + utils.TestHexToFelt(t, "0x4dcbde5783e7131bd21c4114e22723ee0db79a5060933235fabea35049b766e"), + utils.TestHexToFelt(t, "0x73b7f95acad70fc8b2746062d9cf87c3e1600e0add99f469945b9d03d35637a"), + utils.TestHexToFelt(t, "0x7180a5ffdd4fe"), + utils.TestHexToFelt(t, "0x0"), + }, + }, + { + FromAddress: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), + Keys: []*felt.Felt{ + utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), + }, + Data: []*felt.Felt{ + utils.TestHexToFelt(t, "0x4dcbde5783e7131bd21c4114e22723ee0db79a5060933235fabea35049b766e"), + utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), + utils.TestHexToFelt(t, "0x1bdf725ee2"), + utils.TestHexToFelt(t, "0x0"), + }, + }, + }, + ExecutionResources: ExecutionResources{ + ComputationResources{ + Steps: 11453, + PedersenApps: 25, + RangeCheckApps: 224, + ECOPApps: 3, + }, + DataAvailability{ + L1Gas: 0, + L1DataGas: 192, + }, + }, + }, + }, + }, + }, + }, + } + + var blockMock123 = BlockWithReceipts{ + BlockHeader{ + BlockHash: utils.TestHexToFelt(t, "deadbeef"), + ParentHash: new(felt.Felt).SetUint64(1), + BlockNumber: 1, + NewRoot: new(felt.Felt).SetUint64(1), + Timestamp: 123, + SequencerAddress: new(felt.Felt).SetUint64(1), + L1GasPrice: ResourcePrice{ + PriceInFRI: new(felt.Felt).SetUint64(1), + PriceInWei: new(felt.Felt).SetUint64(1), + }, + L1DataGasPrice: ResourcePrice{ + PriceInFRI: new(felt.Felt).SetUint64(1), + PriceInWei: new(felt.Felt).SetUint64(1), + }, + L1DAMode: L1DAModeBlob, + StarknetVersion: "0.13", + }, + "ACCEPTED_ON_L1", + BlockBodyWithReceipts{ + Transactions: []TransactionWithReceipt{ + { + Transaction: BlockTransaction{ + BlockInvokeTxnV1{ + TransactionHash: utils.TestHexToFelt(t, "deadbeef"), + InvokeTxnV1: InvokeTxnV1{ + Type: "INVOKE", + Version: TransactionV1, + Nonce: new(felt.Felt).SetUint64(1), + MaxFee: new(felt.Felt).SetUint64(1), + SenderAddress: utils.TestHexToFelt(t, "deadbeef"), + Signature: []*felt.Felt{ + utils.TestHexToFelt(t, "deadbeef"), + }, + Calldata: []*felt.Felt{ + new(felt.Felt).SetUint64(1), + }, + }, + }, + }, + Receipt: UnknownTransactionReceipt{ + TransactionReceipt: InvokeTransactionReceipt{ + Type: "INVOKE", + TransactionHash: utils.TestHexToFelt(t, "deadbeef"), + ActualFee: FeePayment{ + Amount: new(felt.Felt).SetUint64(1), + Unit: UnitWei, + }, + ExecutionStatus: TxnExecutionStatusSUCCEEDED, + FinalityStatus: TxnFinalityStatusAcceptedOnL1, + MessagesSent: []MsgToL1{}, + Events: []Event{}, + }, + }, + }, + }, + }, + } + + var pendingBlockMock123 = PendingBlockWithReceipts{ + PendingBlockHeader{ + ParentHash: new(felt.Felt).SetUint64(1), + Timestamp: 123, + SequencerAddress: new(felt.Felt).SetUint64(1), + L1GasPrice: ResourcePrice{ + PriceInFRI: new(felt.Felt).SetUint64(1), + PriceInWei: new(felt.Felt).SetUint64(1), + }, + L1DataGasPrice: ResourcePrice{ + PriceInFRI: new(felt.Felt).SetUint64(1), + PriceInWei: new(felt.Felt).SetUint64(1), + }, + L1DAMode: L1DAModeBlob, + StarknetVersion: "0.13", + }, + BlockBodyWithReceipts{ + Transactions: []TransactionWithReceipt{ + { + Transaction: BlockTransaction{ + BlockInvokeTxnV1{ + TransactionHash: utils.TestHexToFelt(t, "deadbeef"), + InvokeTxnV1: InvokeTxnV1{ + Type: "INVOKE", + Version: TransactionV1, + Nonce: new(felt.Felt).SetUint64(1), + MaxFee: new(felt.Felt).SetUint64(1), + SenderAddress: utils.TestHexToFelt(t, "deadbeef"), + Signature: []*felt.Felt{ + utils.TestHexToFelt(t, "deadbeef"), + }, + Calldata: []*felt.Felt{ + new(felt.Felt).SetUint64(1), + }, + }, + }, + }, + Receipt: UnknownTransactionReceipt{ + TransactionReceipt: InvokeTransactionReceipt{ + Type: "INVOKE", + TransactionHash: utils.TestHexToFelt(t, "deadbeef"), + ActualFee: FeePayment{ + Amount: new(felt.Felt).SetUint64(1), + Unit: UnitWei, + }, + ExecutionStatus: TxnExecutionStatusSUCCEEDED, + FinalityStatus: TxnFinalityStatusAcceptedOnL1, + MessagesSent: []MsgToL1{}, + Events: []Event{}, + }, + }, + }, + }, + }, } - read, err := os.ReadFile("tests/blockWithReceipts/integration332275.json") - require.Nil(t, err) - require.Nil(t, json.Unmarshal(read, &expectedBlockWithReceipts)) testSet := map[string][]testSetType{ - "mock": {testSetType{ - BlockID: BlockID{Tag: "tests/blockWithReceipts/integration332275.json"}, - ExpectedBlockWithReceipts: expectedBlockWithReceipts.Result, - ExpectedErr: nil, + "mock": { + { + BlockID: WithBlockTag("latest"), + ExpectedBlockWithReceipts: &blockMock123, + ExpectedPendingBlockWithReceipts: nil, + }, + { + BlockID: WithBlockTag("latest"), + ExpectedBlockWithReceipts: nil, + ExpectedPendingBlockWithReceipts: &pendingBlockMock123, + }, + }, + "testnet": { + { + BlockID: WithBlockTag("pending"), + }, + { + BlockID: WithBlockNumber(64159), + ExpectedBlockWithReceipts: &blockSepolia64159, + }, }, + "mainnet": { + { + BlockID: WithBlockTag("pending"), + }, + { + BlockID: WithBlockNumber(655660), + ExpectedBlockWithReceipts: &blockMainnet655660, + }, }, }[testEnv] for _, test := range testSet { - t.Run("BlockWithReceipts - block", func(t *testing.T) { + require := require.New(t) - block, err := provider.BlockWithReceipts(ctx, test.BlockID) - require.Nil(t, err) - blockCasted := block.(*BlockWithReceipts) - require.Equal(t, test.ExpectedBlockWithReceipts, *blockCasted) + result, err := testConfig.provider.BlockWithReceipts(context.Background(), test.BlockID) + require.NoError(err, "Error in BlockWithReceipts") + switch resultType := result.(type) { + case *BlockWithReceipts: + block, ok := result.(*BlockWithReceipts) + require.True(ok, fmt.Sprintf("should return *BlockWithReceipts, instead: %T\n", result)) + require.True(strings.HasPrefix(block.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", block.BlockHash) + require.NotEmpty(block.Transactions, "the number of transactions should not be 0") - }) + if test.ExpectedBlockWithReceipts != nil { + require.Equal(block.BlockHeader.BlockHash, test.ExpectedBlockWithReceipts.BlockHeader.BlockHash, "Error in BlockTxHash BlockHash") + require.Equal(block.BlockHeader.ParentHash, test.ExpectedBlockWithReceipts.BlockHeader.ParentHash, "Error in BlockTxHash ParentHash") + require.Equal(block.BlockHeader.Timestamp, test.ExpectedBlockWithReceipts.BlockHeader.Timestamp, "Error in BlockTxHash Timestamp") + require.Equal(block.BlockHeader.SequencerAddress, test.ExpectedBlockWithReceipts.BlockHeader.SequencerAddress, "Error in BlockTxHash SequencerAddress") + require.Equal(block.Status, test.ExpectedBlockWithReceipts.Status, "Error in BlockTxHash Status") + require.Equal(block.Transactions[len(block.Transactions)-1], test.ExpectedBlockWithReceipts.Transactions[0], "Error in BlockTxHash Transactions") + } + case *PendingBlockWithReceipts: + pBlock, ok := result.(*PendingBlockWithReceipts) + require.True(ok, fmt.Sprintf("should return *PendingBlockWithReceipts, instead: %T\n", result)) + + if testEnv == "mock" { + require.Equal(pBlock.ParentHash, test.ExpectedPendingBlockWithReceipts.ParentHash, "Error in PendingBlockWithReceipts ParentHash") + require.Equal(pBlock.SequencerAddress, test.ExpectedPendingBlockWithReceipts.SequencerAddress, "Error in PendingBlockWithReceipts SequencerAddress") + require.Equal(pBlock.Timestamp, test.ExpectedPendingBlockWithReceipts.Timestamp, "Error in PendingBlockWithReceipts Timestamp") + require.Equal(pBlock.Transactions, test.ExpectedPendingBlockWithReceipts.Transactions, "Error in PendingBlockWithReceipts Transactions") + } else { + require.NotEmpty(pBlock.ParentHash, "Error in PendingBlockWithReceipts ParentHash") + require.NotEmpty(pBlock.SequencerAddress, "Error in PendingBlockWithReceipts SequencerAddress") + require.NotEmpty(pBlock.Timestamp, "Error in PendingBlockWithReceipts Timestamp") + require.NotEmpty(pBlock.Transactions, "Error in PendingBlockWithReceipts Transactions") + } + + default: + t.Fatalf("unexpected block type, found: %T\n", resultType) + } } } diff --git a/rpc/types_block_transaction.go b/rpc/types_block_transaction.go index 7eb7cd24..0d456613 100644 --- a/rpc/types_block_transaction.go +++ b/rpc/types_block_transaction.go @@ -6,24 +6,29 @@ import ( "fmt" "github.com/NethermindEth/juno/core/felt" + "github.com/NethermindEth/starknet.go/utils" ) -type BlockTransactions []BlockTransaction +type BlockTransactions []IBlockTransaction -type BlockTransaction interface { +type BlockTransaction struct { + IBlockTransaction +} + +type IBlockTransaction interface { Hash() *felt.Felt } -var _ BlockTransaction = BlockInvokeTxnV0{} -var _ BlockTransaction = BlockInvokeTxnV1{} -var _ BlockTransaction = BlockInvokeTxnV3{} -var _ BlockTransaction = BlockDeclareTxnV0{} -var _ BlockTransaction = BlockDeclareTxnV1{} -var _ BlockTransaction = BlockDeclareTxnV2{} -var _ BlockTransaction = BlockDeclareTxnV3{} -var _ BlockTransaction = BlockDeployTxn{} -var _ BlockTransaction = BlockDeployAccountTxn{} -var _ BlockTransaction = BlockL1HandlerTxn{} +var _ IBlockTransaction = BlockInvokeTxnV0{} +var _ IBlockTransaction = BlockInvokeTxnV1{} +var _ IBlockTransaction = BlockInvokeTxnV3{} +var _ IBlockTransaction = BlockDeclareTxnV0{} +var _ IBlockTransaction = BlockDeclareTxnV1{} +var _ IBlockTransaction = BlockDeclareTxnV2{} +var _ IBlockTransaction = BlockDeclareTxnV3{} +var _ IBlockTransaction = BlockDeployTxn{} +var _ IBlockTransaction = BlockDeployAccountTxn{} +var _ IBlockTransaction = BlockL1HandlerTxn{} // Hash returns the transaction hash of the BlockInvokeTxnV0. func (tx BlockInvokeTxnV0) Hash() *felt.Felt { @@ -140,7 +145,7 @@ func (txns *BlockTransactions) UnmarshalJSON(data []byte) error { return err } - unmarshalled := make([]BlockTransaction, len(dec)) + unmarshalled := make([]IBlockTransaction, len(dec)) for i, t := range dec { var err error unmarshalled[i], err = unmarshalBlockTxn(t) @@ -153,14 +158,44 @@ func (txns *BlockTransactions) UnmarshalJSON(data []byte) error { return nil } -// unmarshalBlockTxn unmarshals a given interface and returns a BlockTransaction. +// UnmarshalJSON unmarshals the data into a BlockTransaction object. +// +// It takes a byte slice as the parameter, representing the JSON data to be unmarshalled. +// The function returns an error if the unmarshalling process fails. +// +// Parameters: +// - data: The JSON data to be unmarshalled +// Returns: +// - error: An error if the unmarshalling process fails +func (txn *BlockTransaction) UnmarshalJSON(data []byte) error { + var dec map[string]interface{} + if err := json.Unmarshal(data, &dec); err != nil { + return err + } + + // BlockTransaction wrap transaction in the IBlockTransaction field. + dec, err := utils.UnwrapJSON(dec, "IBlockTransaction") + if err != nil { + return err + } + + t, err := unmarshalBlockTxn(dec) + if err != nil { + return err + } + + *txn = BlockTransaction{t} + return nil +} + +// unmarshalBlockTxn unmarshals a given interface and returns a IBlockTransaction. // // Parameter: // - t: The interface{} to be unmarshalled // Returns: -// - BlockTransaction: a BlockTransaction +// - IBlockTransaction: a IBlockTransaction // - error: an error if the unmarshaling process fails -func unmarshalBlockTxn(t interface{}) (BlockTransaction, error) { +func unmarshalBlockTxn(t interface{}) (IBlockTransaction, error) { switch casted := t.(type) { case map[string]interface{}: switch TransactionType(casted["type"].(string)) { From 04acb01939a98f482a1a6172b097a068330dc479 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Tue, 9 Jul 2024 13:06:20 -0300 Subject: [PATCH 02/28] Improving TestBlockWithReceipts test and json files --- rpc/tests/block/block.json | 7040 -------- rpc/tests/block/sepoliaTxs64159.json | 4628 +++++ .../mainnetReceipts588763.json | 9663 +++++++++++ .../sepoliaReceipts64159.json | 14304 ++++++++++++++++ rpc/types_block_test.go | 248 +- 5 files changed, 28614 insertions(+), 7269 deletions(-) delete mode 100644 rpc/tests/block/block.json create mode 100644 rpc/tests/block/sepoliaTxs64159.json create mode 100644 rpc/tests/blockWithReceipts/mainnetReceipts588763.json create mode 100644 rpc/tests/blockWithReceipts/sepoliaReceipts64159.json diff --git a/rpc/tests/block/block.json b/rpc/tests/block/block.json deleted file mode 100644 index b1995214..00000000 --- a/rpc/tests/block/block.json +++ /dev/null @@ -1,7040 +0,0 @@ -{ - "block_hash": "0x59b1d7d8f185a4a4096a026d46cce59eb521273536fed350dae16f058bf872e", - "parent_block_hash": "0x7dcef4cefcf8855d0bddeb61b665f2fcfc7165848b2fdb7936d944a68814789", - "block_number": 849703, - "state_root": "06036edb411a3491c6a7cfdcbf8672686c23e3d34be09aaee2e7782d94db947d", - "status": "ACCEPTED_ON_L2", - "gas_price": "0x3b9aca0e", - "transactions": [ - { - "transaction_hash": "0x5e24f8f3b23fbeb68b37f6b2c692c511890247e49529c60159f6f19c42fd3f8", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0xba9448886098ccd7ac463320d05b555fbd8632167e3a260c2164d476c7e330", - "0x6123da0916707ef553af1b36a3ece50663e61dc63079ee979a8c0a7be71ea0d" - ], - "nonce": "0x5ee8", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x6c6b935b8bbd4000000", - "0x0", - "0x0", - "0x8ac7230489e80000", - "0x0", - "0x1b6c2987dc2c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0x6f05b59d3b200000", - "0x0", - "0x2b139f8de6d0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x62417d8af6a38200000", - "0x0", - "0x0", - "0x6f05b59d3b20000", - "0x0", - "0x3e2c284391c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x79f905c6fd34e800000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xe90eda3944000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x44ae2f4b72bad949f9172961000349d8704e92ae2d1ab42c32593f25109482d", - "version": "0x1", - "max_fee": "0x2386f26fc10000", - "signature": [ - "0x4a7e513eeed3c384aa478f4eabe4b9db5ada7291af6343d42b232b681bde5b2", - "0x1f2c4fee2e62367a06f385598868ee8269a7de5dfaa39243758550da0701bc" - ], - "nonce": "0x5018", - "sender_address": "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "calldata": [ - "0x1", - "0x2f5f55ec9295557716537c1f0ee5bbc717846259863eed458f5dff5d60044ea", - "0x12ead94ae9d3f9d2bdb6b847cf255f1f398193a1f88884a0ae8e18f24a037b6", - "0x0", - "0x1", - "0x1", - "0xd468dfe2bbe4de5eacd4f476a9a6cfbe4cefcba8" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x2370b387266e98189a7c4104b15c165ec65c049ec01bda074b623a9948e8b6e", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x2a4a9e6347f9aa1fffea81875ede4ad6c41ee0c8f26eeb092429a36d98060e1", - "0x2384db19f2c02ee199799daa48424e8db32007d15a54f2ffcc7d005a54339d1" - ], - "nonce": "0x5ee9", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1afa79b3435c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x6e1d41a8f9ec3500000", - "0x0", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0xe35fa931a0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x658e7c80", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x6124fee993bc0000", - "0x0", - "0x1d882cb9b208000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x79f905c6fd34e800000", - "0x0", - "0x0", - "0x1100130279da80000", - "0x0", - "0xd252161ab4000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x5eaad03b80cc658f244e30dd9587a87b94803199e2c856e6737d635b19446e4", - "version": "0x1", - "max_fee": "0xe35fa931a0000", - "signature": [ - "0x48868c80a7fac66e93447541c5e5d41b8b100825fa79e5cc932a7567c2db946", - "0x648de47026023a367da43018fa0920ba833c40e4dc8924ffcbec43770fee504" - ], - "nonce": "0x16e", - "class_hash": "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2", - "sender_address": "0x50671dd80628ca48f960fbf7e4d29ec429d85a742776b2d68cb2b0453435104", - "type": "DECLARE" - }, - { - "transaction_hash": "0x55066f67bfd69f0f75a5fc96cfefc785f6df2ee8d6c3463b60734a2b3b9ed03", - "version": "0x1", - "max_fee": "0x3b3062bb4d02", - "signature": [ - "0x2fa8e45325991fad33e02a4b072234e9891c631d14193a8aa7b89cec7f0c4eb", - "0x1a4d797923322480ffd103886014a65c2c3102e231adb8b7ce2519a362d5128" - ], - "nonce": "0x5eea", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x53025cd216fce500000", - "0x0", - "0x1", - "0x429d069189e0000", - "0x0", - "0x2d79883d20000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x690836c0af5f5600000", - "0x0", - "0x0", - "0x7ce66c50e2840000", - "0x0", - "0x1f6b58013b7c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x73324c9144791400000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xc6f3b40b6c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1afa79b3435c000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x51764f64c2aef1f8c634353bc4980641bcb96478e5657cbf648a41318ce63ef", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x1c3d8425e4a021a78d5d7131b3b4ae65b27858bc4bc45a95957cd976ba666f2", - "0x395a31e78c80c660065d82ad05df34ede56225dcdf3617198df6dbe70517c3a" - ], - "nonce": "0x11f3", - "sender_address": "0x316003bd63473020c3b2b3cfaeaf1c9c0fa1bfcbeaaed31fd20fdcb9877a2ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x7d5c6261d992d200000", - "0x0", - "0x0", - "0x98a7d9b8314c0000", - "0x0", - "0x12a6d8e11220000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x84231b97924ea600000", - "0x0", - "0x0", - "0xa688906bd8b00000", - "0x0", - "0x108ad5af3c44000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0xe8b3e728c9c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x4ded51e9cc700600000", - "0x0", - "0x1", - "0xdca825c218b60000", - "0x0", - "0x58d15e17628000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x78ba0eeae6aa1581fccccab25ffcd86f18b62eaef5221b0b099f06f7bd6e8a8", - "version": "0x1", - "max_fee": "0x38662d7b3241", - "signature": [ - "0x42ef484f4b573bece7b5f26cb74cb9e9ea56a083298aff8fe8cf941eee03978", - "0x9ff98e8f10ffb1c77681e04d5d368101fd6a20e24562b7e909e9e20c2c4014" - ], - "nonce": "0x135b", - "sender_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x59c91607cfb8b900000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0x65409958194000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x658e7c80", - "0xfe1c215e8f838e00000", - "0x0", - "0x0", - "0x136dcc951d8c0000", - "0x0", - "0x60a24181e4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x658e7c80", - "0xfe1c215e8f838e00000", - "0x0", - "0x0", - "0x136dcc951d8c0000", - "0x0", - "0x5af3107a40000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x878678326eac9000000", - "0x0", - "0x0", - "0x26db992a3b180000", - "0x0", - "0x38d7ea4c68000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x78f18e4c285502eef97306e9aea7068cbe2f50ec825a043cd0d24ac5d412bba", - "version": "0x1", - "max_fee": "0xa012317b000", - "signature": [ - "0x8f6fa3189a1172fb8176d12b38ef9e2c2c2808fcca001506e0822eb9fd7238", - "0x3d9d4172ebca4b8e170d7882667448dc60c06901b8be16e17665317322c32a" - ], - "nonce": "0x7", - "sender_address": "0x60363105a84e4e38b6c388c1d92d75415fe6b4aa90bfeb7b36f22d584d13f1a", - "calldata": [ - "0x1", - "0x545c35f9d949507bc7319f0caf56e995bc6153d5d3dcc152b48013bc98809c", - "0x2d1af4265f4530c75b41282ed3b71617d3d435e96fe13b08848482173692f4f", - "0x0", - "0x3", - "0x3", - "0x131", - "0x0", - "0x1" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x517ba70df4a52dade59ea5b9706766ca418353b94ed068c930e5e0f7ef04fcb", - "version": "0x1", - "max_fee": "0x1432962ad979", - "signature": [ - "0x75b851a4996f1690273b0dba3ddd537cfeb57de0580319410b8434fe9bb15d1", - "0x52267677b9d257b3e65a9c24870bcb672cd3244431f1a89b2e91ac368fb27df" - ], - "nonce": "0x16f", - "sender_address": "0x50671dd80628ca48f960fbf7e4d29ec429d85a742776b2d68cb2b0453435104", - "calldata": [ - "0x5", - "0x3faa69969dcab25e5e1ab7da806150c92787af1d37d54c661c2cb9194537c50", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x0", - "0x1", - "0x6a5930946ea92b23bd0254162f5e816e6560fb8bbd5488269e114deeee0dc93", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x1", - "0x1", - "0x6914170a6050baef78fc8f5f85fca367637a9f8496858faea2f4820b402586a", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x2", - "0x1", - "0x4420dd6d51fcbf91c22d2e77f74707169192477de891340e16bd9884c40d777", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x3", - "0x1", - "0x42b4f364d02fa4c23726072320966afed152e9ec69815f4ed2323022e0960a0", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x4", - "0x1", - "0x5", - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2", - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2", - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2", - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2", - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x6baa685661633c949753b4f2e5279460e69314d378cbfb06a23e016ead75d82", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x75de0e38dba41ed90efb3d73f2f5fddce2fd031a34eac9c33810e43889deda7", - "0x2690ec5733913b2f2aa0e3d501110e35485bb8a133f60274eb55a47ebc6ad50" - ], - "nonce": "0x1153", - "sender_address": "0x38998f2d2fefac1ab70b390e3e8ccfeb4f710fcfdaae2c123e7c334728736b3", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0xa94f1b5c93c40000", - "0x0", - "0xec4165cd904000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x4c3ba39c5e411100000", - "0x0", - "0x1", - "0x53444835ec580000", - "0x0", - "0xf46d3c488c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x54b40b1f852bda00000", - "0x0", - "0x1", - "0x98a7d9b8314c0000", - "0x0", - "0x2e2f6e5e148000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x792242d9b5a550ce606f3a78edf403a9d37afcfcce6112226e4b83308aa1c98", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x6bd2bd5d2340748e88b814a93d3c0cd83f27dce9cce594d9d9f282b60dbdbae", - "0x327401700c96f57cbc318cfbc4341221b289878b423278c73e893ab660ebdc8" - ], - "nonce": "0x118f", - "sender_address": "0xf4bd81288a11d2ed1b220e9c59a45123ed6a7262a683516021830fe60c2ace", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x5665b96cf35acf00000", - "0x0", - "0x0", - "0x53444835ec580000", - "0x0", - "0x5c5edcbc290000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x1969368974c05b000000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x11c37937e08000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x4a89f54ef0121c00000", - "0x0", - "0x1", - "0x8ac7230489e80000", - "0x0", - "0x1334f4aad124000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5150ae84a8cdf000000", - "0x0", - "0x1", - "0x7ce66c50e2840000", - "0x0", - "0x15348be780cc000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x52786a3197efc60992fce8963705fa57d156f28f09590187338a0d9e2cfa699", - "version": "0x1", - "max_fee": "0x3b3062bb4d02", - "signature": [ - "0xdaa1a39616c11e67cb8cf7db400aea7b8bb076d122bd30e4d9db239df03113", - "0xd2750979d6bef1a84a0cc7f70c9642f1cdbdc7c670228b66b358a7fcc0f1de" - ], - "nonce": "0x5eeb", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x7ce66c50e2840000", - "0x0", - "0x2e130268ee4c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x58f03ee118a13e80000", - "0x0", - "0x0", - "0x2dcbf4840eca0000", - "0x0", - "0xcca2e51310000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1afa79b3435c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x58f03ee118a13e80000", - "0x0", - "0x1", - "0x24150e3980040000", - "0x0", - "0x2ff62db077c000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x2970baceb37991d2d664720b5add33b74bb41b155036d337733b48cbb377d11", - "version": "0x1", - "max_fee": "0x3bbd21bd6b11", - "signature": [ - "0x4eb394271b6c42640bf4fc5e6b4bd80d1fffaa03690e6c8a6449f95936aa4d7", - "0x31bd4f46cf94582fe02aed5ea9b05ce98bf8af4bd6e30a1790a70da2588f293" - ], - "nonce": "0x11b1", - "sender_address": "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x658e7c80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0x429d069189e0000", - "0x0", - "0x13df7c69b65c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x5665b96cf35acf00000", - "0x0", - "0x0", - "0xc7d713b49da00000", - "0x0", - "0x9e1883a4814000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x58d15e176280000", - "0x0", - "0xf5232269808000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x63f32bd864d27700000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x110d9316ec0000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x45dfc49ff222d4d389146208c37ca79eb0f66c9a66fb7c7d6cb20e48dc87490", - "version": "0x1", - "max_fee": "0x16345785d8a0000", - "signature": [ - "0x564be876e33e4e36a3c4b41a5f843a85c310027b0f2c6f7c6d1914f37f4a414", - "0x6414673a8f55e9aad4d26e6d3a0c9edf3fbfa91e6c3d3d6c22858c4707fc175" - ], - "nonce": "0xeb62", - "sender_address": "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "calldata": [ - "0x5", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x0", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x3", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x6", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x9", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0xc", - "0x3", - "0xf", - "0x4554482f555344", - "0x566d3e80", - "0x6", - "0x555344432f555344", - "0x14dc9380", - "0x8", - "0x4254432f555344", - "0x269004f0400", - "0x8", - "0x555344542f555344", - "0x5f5e100", - "0x8", - "0x4441492f555344", - "0x7bfa480", - "0x8" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x11d50797f25402ab71147d7c1cf4fa8f05d76429f8cf3d5832beca62c6c535a", - "version": "0x1", - "max_fee": "0x3b3062bb4d02", - "signature": [ - "0x20c17b3e96d3c5bdea58316966a93e7a0946416399a6b3dff7e4c70481b3b4", - "0x623f519d6d672a41bfd3b3ce1d3560ba1e96285aba05919e7b42b27d38efae4" - ], - "nonce": "0x11f1", - "sender_address": "0x19e5dace1b462bae149c9bef9834cb918dc3901251faa9e3cab59d226744da2", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0xed2b525841adfc00000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xcca2e51310000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x62417d8af6a38200000", - "0x0", - "0x0", - "0x7ce66c50e2840000", - "0x0", - "0x23bfca5a0d68000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5ede20f01a459800000", - "0x0", - "0x0", - "0x7ce66c50e2840000", - "0x0", - "0x1d32e8da3f6c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x62417d8af6a38200000", - "0x0", - "0x0", - "0x7ce66c50e2840000", - "0x0", - "0x1a6c5de98458000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x5cfb84dc8f72195c7700c2438f2d853c411c4c3e9cb34818439d87af1c6d314", - "version": "0x1", - "max_fee": "0x3b3062bb4d02", - "signature": [ - "0x3a8ca93ef5f45b7f37f40149ff2c78544432edf76bc01401c9b5b868146fca5", - "0x4e3c402b9925ca9384f0aa9e96df1c295350f852549b19acf6d96bf4be0f32a" - ], - "nonce": "0xf29", - "sender_address": "0x6becbb6d85ef319b7a1c5c7f759f0a39490d783b9beee05e1449567c3cf12e0", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5150ae84a8cdf000000", - "0x0", - "0x1", - "0x7ce66c50e2840000", - "0x0", - "0x15c2a7b13fd0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x4a89f54ef0121c00000", - "0x0", - "0x1", - "0x8ac7230489e80000", - "0x0", - "0x13c310749028000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x32d26d12e980b600000", - "0x0", - "0x1", - "0xebec21ee1da40000", - "0x0", - "0x1717b72f0a4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x3635c9adc5dea000000", - "0x0", - "0x1", - "0xebec21ee1da40000", - "0x0", - "0xfa1c6d5030000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x382cab7bccf73840bb85d90a0fea21bfbd8459acc776ccbf0f6cc03dc7063ff", - "version": "0x1", - "max_fee": "0x3bbd21bd6b11", - "signature": [ - "0x180bc1ad609a9fa76d8d6384c8f3269f93cefbfbe91a3fdc1d10ac6466eb4f0", - "0x4d002e29bf61dc680734200148af8b9297388acfd8fee8314991bdac9aa6197" - ], - "nonce": "0x1152", - "sender_address": "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228612a18b8a51453f5b594e2a7334138dadcb7b628372d33617fd95b7818ac", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x58f03ee118a13e80000", - "0x0", - "0x0", - "0x429d069189e0000", - "0x0", - "0xaa87bee538000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x21e19e0c9bab2400000", - "0x0", - "0x1", - "0x15af1d78b58c40000", - "0x0", - "0x38d7ea4c68000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x5d2c72a2ac16a300000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0xd19c2ff9bf8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0x88c78bc7da4000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x2cd855d44d3e8a34d30606dc118647b65490ae479b30c003a2ddae0baf075f0", - "version": "0x1", - "max_fee": "0x3cfa3f44698d", - "signature": [ - "0x53037fffab88630de3e3789f4002cce6d541daed54730f718090d258096c326", - "0xde3741c25cf02790ea89b070ae96aa1fe5f145424b18a7889b79aea25b02b0" - ], - "nonce": "0x5eec", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x573e9093aa724980000", - "0x0", - "0x1", - "0x429d069189e0000", - "0x0", - "0xbb9551fc24000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x558ce2463c435480000", - "0x0", - "0x1", - "0x429d069189e0000", - "0x0", - "0x5543df729c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x53025cd216fce500000", - "0x0", - "0x1", - "0x429d069189e0000", - "0x0", - "0x2d79883d20000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x6e1d41a8f9ec3500000", - "0x0", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0xd801472258000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x3f68c6a211c9cb79c900131980d10047410690e7b1d2ee5a7a24f9ab0eb7323", - "version": "0x1", - "max_fee": "0x16345785d8a0000", - "signature": [ - "0x2cbd5f24470afd32e5631a6e56df1829cc946b8158e4dc311cc9abf62bb9e12", - "0x4251fb0b8ec10800ac87c6c567c28170c9031ed2579db84ca9b891987106b67" - ], - "nonce": "0xeb63", - "sender_address": "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "calldata": [ - "0x5", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x0", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x3", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x6", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x9", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0xc", - "0x3", - "0xf", - "0x4554482f555344", - "0x566d3e80", - "0x6", - "0x555344432f555344", - "0x14dc9380", - "0x8", - "0x4254432f555344", - "0x269004f0400", - "0x8", - "0x555344542f555344", - "0x5f5e100", - "0x8", - "0x4441492f555344", - "0x7bfa480", - "0x8" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x6a022b36da183f301d6b614bc753323209217550ef89e021784c2d582adff58", - "version": "0x1", - "max_fee": "0x640b5eece000", - "signature": [ - "0xa64655b17bd39b91d34a9cb9465a7a6c3a1fc096d0134fbdd925bb08ecbaea", - "0x4de7a2a5acb0d9e54815bc5d3f3a9d2109450b220cb9baa724c9e9a3ded4c32" - ], - "nonce": "0x43", - "sender_address": "0x61984708644568dc33301d6b7adba8ac8104cbe3599a14d256b36aa0ccaf3dd", - "calldata": [ - "0x1", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x3", - "0xa98ac7", - "0x64", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x1007f86548d721803578388a43c3f0b92dbb561f2738709895b294d3d4f1095", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x53d7310fba8470ca3758e25a3add7669e08058cdbf0669dca253b09c2411f53", - "0x3f5713075c4dfb0de251a33e3a78d326fce7fb4b46a01dbcc1456b241de638" - ], - "nonce": "0x5eed", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x5665b96cf35acf00000", - "0x0", - "0x0", - "0xbf8372e26c640000", - "0x0", - "0xafdbfcdc61c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x658e7c80", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x7492cb7eb1480000", - "0x0", - "0x12a6d8e11220000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x581767ba6189c400000", - "0x0", - "0x0", - "0x6f05b59d3b200000", - "0x0", - "0x2c4c43168b0c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x73324c9144791400000", - "0x0", - "0x0", - "0x8ac7230489e80000", - "0x0", - "0x176cfb0e7cdc000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0xdc586ec4b5478c3ca418bb007fd16da730fc38e57a45a2d0c7bb4eb5269996", - "version": "0x1", - "max_fee": "0x2386f26fc10000", - "signature": [ - "0x2a83444011bf553cee44a3212419015d13bbce3392d712457210f962f89d853", - "0x5790b35a36c66881d0e1cd55ec759a57658f46bd250454a3e3cd8c9be8be74c" - ], - "nonce": "0x5019", - "sender_address": "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "calldata": [ - "0x1", - "0x2f5f55ec9295557716537c1f0ee5bbc717846259863eed458f5dff5d60044ea", - "0x679c22735055a10db4f275395763a3752a1e3a3043c192299ab6b574fba8d6", - "0x0", - "0x0", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x3595b399cdb4ac3f614606b48e53c62088953894ddb3e0d2b94a5b197ab82b2", - "version": "0x1", - "max_fee": "0x1319718a5000", - "signature": [ - "0x533b8cf6e01abec47b16c81d0c4082aa8ef21fe2f0cd2c9c3fff24d8c1a8a2c", - "0x56703825b79621f5e1d3c79aaf13e6989445567e2c3612e7e03bdc64447cc09" - ], - "nonce": "0xa3", - "sender_address": "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "calldata": [ - "0x2", - "0x3e85bfbb8e2a42b7bead9e88e9a1b19dbccf661471061807292120462396ec9", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x2bcc885342ebbcbcd170ae6cafa8a4bed22bb993479f49806e72d96af94c965", - "0x3276861cf5e05d6daf8f352cabb47df623eb10c383ab742fcc7abea94d5c5cc", - "0x3", - "0x9", - "0xc", - "0x2bcc885342ebbcbcd170ae6cafa8a4bed22bb993479f49806e72d96af94c965", - "0x6b8d87f0514700000", - "0x0", - "0x6b8d87f0514700000", - "0x0", - "0x13add422db14312", - "0x0", - "0x2", - "0x3e85bfbb8e2a42b7bead9e88e9a1b19dbccf661471061807292120462396ec9", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "0x64e34362" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x2f1ed05739b4251b955e01ecc43e48b89274eb272943e39a500e74e72ee50e3", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x3bf2924faef8d464a75ac0ee4fa62b23007fa3faa70bacb10e3afb74c54b282", - "0x29d84a0b5ac3692bbe5865161c0b68063fc64370883e0509c2f8404c01a7f2a" - ], - "nonce": "0x5eee", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x6fceeff6681b2a00000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xcca2e51310000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x79f905c6fd34e800000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xd801472258000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x608fcf3d88748d00000", - "0x0", - "0x0", - "0xd02ab486cedc0000", - "0x0", - "0xd252161ab4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x658e7c80", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0xc249fdd327780000", - "0x0", - "0x3a9ea99ecb4000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x47ea0c5e4315572617baec3e93b258a7672bd8bb7d6384208c1968d3c26c2b2", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x6df8ec3df67ed742c7da2592e0abb3457bae19c5e259dec039417459ec4b9d4", - "0x556529f355acc49b94c9dd19131c8a8b58ddd2ee08711ace3815fe9e9dea791" - ], - "nonce": "0x5eef", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x6124fee993bc0000", - "0x0", - "0x214e8348c4f0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x7695a92c20d6fe00000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xa4d88ddd94000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1afa79b3435c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x6e1d41a8f9ec3500000", - "0x0", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0xcca2e51310000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x2f843b229b8c6677939c514f883b7a313c9ee87c0735da6507cbebe8e62eb1a", - "version": "0x1", - "max_fee": "0x37ea3201e822", - "signature": [ - "0x45088feb81be2903b84970eaeb6839b43cd5e20cfdb9fec3e222b85ef6beba", - "0x2c394c65d6637a1f6f82b4c35be5d260e74db9e2250bf3a2d34446c5ffe1735" - ], - "nonce": "0x5ef0", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1afa79b3435c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x573e9093aa724980000", - "0x0", - "0x1", - "0x30927f74c9de0000", - "0x0", - "0x997a2bce4c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1", - "0x6124fee993bc0000", - "0x0", - "0x26f8051f614c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1afa79b3435c000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x37c596d7a8fb7df1d006475ad3ef63e977afc2b7242af06ef41de8de68c6979", - "version": "0x1", - "max_fee": "0x16345785d8a0000", - "signature": [ - "0x3cfd610b99020ea9b1fcb5036ba4152889e56ce9c5773802a8305e2ca5e7472", - "0x165ef43bd6c68e911dcee98eb7afaa69ca16e1a9b6989efc9019907f2be8e20" - ], - "nonce": "0xeb64", - "sender_address": "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "calldata": [ - "0x5", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x0", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x3", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x6", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x9", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0xc", - "0x3", - "0xf", - "0x4554482f555344", - "0x566d3e80", - "0x6", - "0x555344432f555344", - "0x14dc9380", - "0x8", - "0x4254432f555344", - "0x269004f0400", - "0x8", - "0x555344542f555344", - "0x5f5e100", - "0x8", - "0x4441492f555344", - "0x7bfa480", - "0x8" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x53d2c593081b967858224e402fe8d012dc43a8dccd88cb34639344cc9357a7f", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x71cc0a75ab245f438b216247d5543d467e0cd90e756aecc27fc26508d417c6", - "0x75ee350c4518f6d0b310c2dd05eddc2ac05ba28d84e23b18ebbdf921820f4c7" - ], - "nonce": "0x5ef1", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x658e7c80", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x6124fee993bc0000", - "0x0", - "0x1cfa10eff304000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x6f05b59d3b200000", - "0x0", - "0x322e9cd773d0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1afa79b3435c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x7695a92c20d6fe00000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xcca2e51310000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x7eac14e728cc31cb87f82c5031dd7792312c4d4094f3179669e56fc415e300c", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x7626b696f3d6d20508c71e85fc747f3e4da552cd607c07b49235425a914f697", - "0x53cce025d110cacb97a9d319bc6ffd8375f39b1fbf5f6b833ea7b610e721fe0" - ], - "nonce": "0x5ef2", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x80bfbefcb5f0bc00000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xc1448303c8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x5665b96cf35acf00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x96fd865af44000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x6c6b935b8bbd4000000", - "0x0", - "0x0", - "0x8ac7230489e80000", - "0x0", - "0x1aa535d3d0c0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0x6f05b59d3b200000", - "0x0", - "0x2a4cabd9db64000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x6165f212070b4ee7abf86b4d8b14407b44f189d6ff47fe447b7cba37f82bb9f", - "version": "0x1", - "max_fee": "0x1319718a5000", - "signature": [ - "0x63ccc6ca50108ff0be03362c41885fa83e69cfe4c0b17e8fe5a743081547925", - "0x43cd072f0a87e728d9e859b9385d948071e881e5b54845ddba56e199964d5c0" - ], - "nonce": "0xa4", - "sender_address": "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "calldata": [ - "0x2", - "0x12d537dc323c439dc65c976fad242d5610d27cfb5f31689a0a319b8be7f3d56", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x2bcc885342ebbcbcd170ae6cafa8a4bed22bb993479f49806e72d96af94c965", - "0x3276861cf5e05d6daf8f352cabb47df623eb10c383ab742fcc7abea94d5c5cc", - "0x3", - "0x9", - "0xc", - "0x2bcc885342ebbcbcd170ae6cafa8a4bed22bb993479f49806e72d96af94c965", - "0x9184e72a000", - "0x0", - "0x9184e72a000", - "0x0", - "0xb3278b3c1a10ea", - "0x0", - "0x2", - "0x12d537dc323c439dc65c976fad242d5610d27cfb5f31689a0a319b8be7f3d56", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "0x64e34362" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x282008c6a8788ff635f416450f16a93ce02ed3e637a439f9bcc7042685d60c5", - "version": "0x1", - "max_fee": "0x2386f26fc10000", - "signature": [ - "0x1f41bd3cce2658b7bb48a2524349e96d2098ea093ec4be9c47ccc8f7e79d0e9", - "0x7d4d874a5f71fb4fac0d01085650b5e200bb88fc7b8bc178264a26c432765b6" - ], - "nonce": "0x501a", - "sender_address": "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "calldata": [ - "0x1", - "0x7812357541c81dd9a320c2339c0c76add710db15f8cc29e8dde8e588cad4455", - "0x169f135eddda5ab51886052d777a57f2ea9c162d713691b5e04a6d4ed71d47f", - "0x0", - "0x5", - "0x5", - "0x3ac37c03ad09fcaa7f56239bba1e2aa29dbc6a41c62a58d9de47edf7ace198c", - "0x1adbad061f8317ca5a37a658e931e244f9076c73097f9aeb2612f68e83d3fbc", - "0x2", - "0xadcf0d92a64663759b62542cc8d04ced47d13719a081cb2149bd56636374da", - "0x7ced69b9beaee3fc19118b0355bf00924fa56a2fad338a1cd4620a45a06326d" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x6bd0e761237ae3e3d90de80a75cdc20e401da0731025972f18af459257991cb", - "version": "0x1", - "max_fee": "0x3b3062bb4d02", - "signature": [ - "0x1b266129bb39a22738d624a9037f4fc51efaefb313d222539eb612c42ffa77b", - "0x587467493c2d0fc8f8c5ed55d7691754636a2f644b84d75d24df992fab0f99b" - ], - "nonce": "0x5ef3", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x79f905c6fd34e800000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xc1448303c8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x80bfbefcb5f0bc00000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x71afd498d0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1afa79b3435c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5ede20f01a459800000", - "0x0", - "0x0", - "0x7ce66c50e2840000", - "0x0", - "0x26db992a3b18000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x3993e78332999f7c8cb6dd232176dde3b6ddee33063220830eb413096b26eca", - "version": "0x1", - "max_fee": "0x3b41264420f2", - "signature": [ - "0x3a0c5ac0328481f3e523b32445e0443a3baf199fd76da4a6acf868d3ea20a9d", - "0x605aaa135f2c39d182a77d41a9d53017f3412c14e11b1ad464597096565409" - ], - "nonce": "0x5ef4", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1", - "0x6124fee993bc0000", - "0x0", - "0x26a2c13feeb0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x53444835ec580000", - "0x0", - "0xea7aa67b2d0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5ede20f01a459800000", - "0x0", - "0x0", - "0x7ce66c50e2840000", - "0x0", - "0x26bf2d3514e4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x73324c9144791400000", - "0x0", - "0x0", - "0x8ac7230489e80000", - "0x0", - "0x16c2734f97a4000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x2a118beccd7c0008c07725b6e541c602c6b64b2f0bdfc31a84a969b1e77427c", - "version": "0x1", - "max_fee": "0x16345785d8a0000", - "signature": [ - "0x3d4ef28beb00e1b222171301e8ffe91fa5e6da57fe72becbf07a78edac2bdca", - "0x5f0a86bda17d84caa3bc22ab10194906040aa524d0c17fd1326e69cc365f633" - ], - "nonce": "0xeb65", - "sender_address": "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "calldata": [ - "0x5", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x0", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x3", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x6", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x9", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0xc", - "0x3", - "0xf", - "0x4554482f555344", - "0x566d3e80", - "0x6", - "0x555344432f555344", - "0x14dc9380", - "0x8", - "0x4254432f555344", - "0x269004f0400", - "0x8", - "0x555344542f555344", - "0x5f5e100", - "0x8", - "0x4441492f555344", - "0x7bfa480", - "0x8" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0xf246f27536e9c0f36bf6fcb8935488533090fe0c705a7f803322091c810006", - "version": "0x1", - "max_fee": "0x3b3062bb4d02", - "signature": [ - "0x3249bc1c66dd829ed56a0d3b072d5436410c18369e35195ed86f47ba2019ebe", - "0x5de16ad057587cb5c666aba5ac6f5106f9d937000803bb8baea49c9ae063fab" - ], - "nonce": "0x5ef5", - "sender_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x658e7c80", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x6f05b59d3b200000", - "0x0", - "0x1c331d3be798000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x79f905c6fd34e800000", - "0x0", - "0x0", - "0x1100130279da80000", - "0x0", - "0xd801472258000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0x6f05b59d3b200000", - "0x0", - "0x29f767fa68c8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x6c6b935b8bbd4000000", - "0x0", - "0x0", - "0x8ac7230489e80000", - "0x0", - "0x1a4ff1f45e24000", - "0x0" - ], - "type": "INVOKE" - }, - { - "transaction_hash": "0x1f4bd290a7517ed1b8e0203bd8ce639b85a5d181a0eda845981cdac94b84302", - "version": "0x1", - "max_fee": "0x16345785d8a0000", - "signature": [ - "0x42a08d8de3658f024a15ecea8faab3c7e7eaf4fad3f09d98d3afe2dd2d90d75", - "0x29e68f5e0c310f5a871e5793d49fe183131a353d77f6e6ef82e2533168b57ac" - ], - "nonce": "0xeb66", - "sender_address": "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "calldata": [ - "0x5", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x0", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x3", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x6", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0x9", - "0x3", - "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "0x459b2deb4d7f987d15a8ba5068ad8ef6a6cf519a58e7505ee5cc78f3ce1368", - "0xc", - "0x3", - "0xf", - "0x4554482f555344", - "0x566d3e80", - "0x6", - "0x555344432f555344", - "0x14dc9380", - "0x8", - "0x4254432f555344", - "0x269004f0400", - "0x8", - "0x555344542f555344", - "0x5f5e100", - "0x8", - "0x4441492f555344", - "0x7bfa480", - "0x8" - ], - "type": "INVOKE" - } - ], - "timestamp": 1692612116, - "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "transaction_receipts": [ - { - "execution_status": "SUCCEEDED", - "transaction_index": 0, - "transaction_hash": "0x5e24f8f3b23fbeb68b37f6b2c692c511890247e49529c60159f6f19c42fd3f8", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xdc", - "0x446d9b2a27066e9d7828f017ed440d1f31c86389026ecc1c1fce6ba02af2ff9", - "0x1b6c2987dc2c000", - "0x0", - "0x8ac7230489e80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xdc", - "0x446d9b2a27066e9d7828f017ed440d1f31c86389026ecc1c1fce6ba02af2ff9", - "0x1b6c2987dc2c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x62", - "0x6e536d71efe3da37ae6e886f432e47de3ecb7e25ab5bb7bd8a8f3cfb45e38b2", - "0x2b139f8de6d0000", - "0x0", - "0x6f05b59d3b200000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x62", - "0x6e536d71efe3da37ae6e886f432e47de3ecb7e25ab5bb7bd8a8f3cfb45e38b2", - "0x2b139f8de6d0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xb8", - "0x73a4a7c73b1b8fe48707dca215e767d1739170102bfb93515268979e0106484", - "0x3e2c284391c000", - "0x0", - "0x6f05b59d3b20000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xb8", - "0x73a4a7c73b1b8fe48707dca215e767d1739170102bfb93515268979e0106484", - "0x3e2c284391c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x2c", - "0x6aa7da9234c4f97d9a136bce01cf5a3a30a1f0be93620155e937a9a59a4dce8", - "0xe90eda3944000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x2c", - "0x6aa7da9234c4f97d9a136bce01cf5a3a30a1f0be93620155e937a9a59a4dce8", - "0xe90eda3944000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x5e24f8f3b23fbeb68b37f6b2c692c511890247e49529c60159f6f19c42fd3f8", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28550, - "builtin_instance_counter": { - "range_check_builtin": 1715, - "pedersen_builtin": 92 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 1, - "transaction_hash": "0x44ae2f4b72bad949f9172961000349d8704e92ae2d1ab42c32593f25109482d", - "l2_to_l1_messages": [ - { - "from_address": "0x2f5f55ec9295557716537c1f0ee5bbc717846259863eed458f5dff5d60044ea", - "to_address": "0xd468DFe2bbE4De5EACD4f476A9A6CfBe4CEfcBA8", - "payload": [ - "0xc", - "0x22" - ] - } - ], - "events": [ - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x1bdd7721d784", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 173, - "builtin_instance_counter": { - "range_check_builtin": 2 - }, - "n_memory_holes": 3 - }, - "actual_fee": "0x1bdd7721d784" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 2, - "transaction_hash": "0x2370b387266e98189a7c4104b15c165ec65c049ec01bda074b623a9948e8b6e", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xba2", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xba2", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x30", - "0x49f9fbc924b8983eef4c231c8215224b045426ced4b4598ee5b70246551c266", - "0xe35fa931a0000", - "0x0", - "0xde0b6b3a76400000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x30", - "0x49f9fbc924b8983eef4c231c8215224b045426ced4b4598ee5b70246551c266", - "0xe35fa931a0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x123", - "0x51ef6c380322d513d58feba581b9600e68b3da344707f187c1202950b7bb868", - "0x1d882cb9b208000", - "0x0", - "0x6124fee993bc0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x123", - "0x51ef6c380322d513d58feba581b9600e68b3da344707f187c1202950b7bb868", - "0x1d882cb9b208000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x52", - "0x1c5513d67d6cf1bbe598244ddcfb5282b2261db6e29b9723f7705aee6ee4f33", - "0xd252161ab4000", - "0x0", - "0x1100130279da80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x52", - "0x1c5513d67d6cf1bbe598244ddcfb5282b2261db6e29b9723f7705aee6ee4f33", - "0xd252161ab4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x2370b387266e98189a7c4104b15c165ec65c049ec01bda074b623a9948e8b6e", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28550, - "builtin_instance_counter": { - "range_check_builtin": 1715, - "pedersen_builtin": 92 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 3, - "transaction_hash": "0x5eaad03b80cc658f244e30dd9587a87b94803199e2c856e6737d635b19446e4", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x50671dd80628ca48f960fbf7e4d29ec429d85a742776b2d68cb2b0453435104", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x243bf914c2c", - "0x0" - ] - } - ], - "actual_fee": "0x243bf914c2c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 4, - "transaction_hash": "0x55066f67bfd69f0f75a5fc96cfefc785f6df2ee8d6c3463b60734a2b3b9ed03", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x73", - "0x74785c6919c542eb610e5fb0cd2ada91a382dce3b9cfc36ae8fb94ee173d2bd", - "0x2d79883d20000", - "0x0", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x73", - "0x74785c6919c542eb610e5fb0cd2ada91a382dce3b9cfc36ae8fb94ee173d2bd", - "0x2d79883d20000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xce", - "0x5e22d8966da396b43eb4798f57666b88addd5053ac783f62c92427da457677f", - "0x1f6b58013b7c000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xce", - "0x5e22d8966da396b43eb4798f57666b88addd5053ac783f62c92427da457677f", - "0x1f6b58013b7c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x33", - "0x380e4b9c5b4869bc96e9570da678c9faecf4f90b5b7627caa69e2d6080eff64", - "0xc6f3b40b6c000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x33", - "0x380e4b9c5b4869bc96e9570da678c9faecf4f90b5b7627caa69e2d6080eff64", - "0xc6f3b40b6c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xba3", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xba3", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x55066f67bfd69f0f75a5fc96cfefc785f6df2ee8d6c3463b60734a2b3b9ed03", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2775972788ac", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 25695, - "builtin_instance_counter": { - "pedersen_builtin": 90, - "range_check_builtin": 1460 - }, - "n_memory_holes": 1275 - }, - "actual_fee": "0x2775972788ac" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 5, - "transaction_hash": "0x51764f64c2aef1f8c634353bc4980641bcb96478e5657cbf648a41318ce63ef", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xb3", - "0x171a0105cbed77dd7667c34287122759818c4527d89d973e8b66439e32d5d1f", - "0x12a6d8e11220000", - "0x0", - "0x98a7d9b8314c0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xb3", - "0x171a0105cbed77dd7667c34287122759818c4527d89d973e8b66439e32d5d1f", - "0x12a6d8e11220000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xc1", - "0x3bf35575f05dce8773c5a694b0a8a961cebd0d0ea069e4d848c8598a03eef43", - "0x108ad5af3c44000", - "0x0", - "0xa688906bd8b00000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xc1", - "0x3bf35575f05dce8773c5a694b0a8a961cebd0d0ea069e4d848c8598a03eef43", - "0x108ad5af3c44000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x67", - "0x4b4eebc2828ebdcf2daa5e00ec3537b5423c1c74cf8fd24f9865611a2bdfb17", - "0xe8b3e728c9c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x67", - "0x4b4eebc2828ebdcf2daa5e00ec3537b5423c1c74cf8fd24f9865611a2bdfb17", - "0xe8b3e728c9c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x41", - "0x737f1ae71ac3fe82323faeb0cd5031cd6bf21c089024740ea26a7b0041e7940", - "0x58d15e17628000", - "0x0", - "0xdca825c218b60000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x41", - "0x737f1ae71ac3fe82323faeb0cd5031cd6bf21c089024740ea26a7b0041e7940", - "0x58d15e17628000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x316003bd63473020c3b2b3cfaeaf1c9c0fa1bfcbeaaed31fd20fdcb9877a2ad", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x51764f64c2aef1f8c634353bc4980641bcb96478e5657cbf648a41318ce63ef", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x316003bd63473020c3b2b3cfaeaf1c9c0fa1bfcbeaaed31fd20fdcb9877a2ad", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28542, - "builtin_instance_counter": { - "pedersen_builtin": 92, - "range_check_builtin": 1715 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 6, - "transaction_hash": "0x78ba0eeae6aa1581fccccab25ffcd86f18b62eaef5221b0b099f06f7bd6e8a8", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x2e08c710ad580000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0xa200f559c2000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x80", - "0x2c61172a2980846e3af8c2d6231f2b447a6227f099acbbf68d1e6b9a733c36e", - "0x65409958194000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x80", - "0x2c61172a2980846e3af8c2d6231f2b447a6227f099acbbf68d1e6b9a733c36e", - "0x65409958194000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x2e005277bec74000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x87498ee90c000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x2b", - "0x4d2c2874b8d895474d0b81d523b834ec98d087162b31eef44a4634a5cd091ca", - "0x60a24181e4000", - "0x0", - "0x136dcc951d8c0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x2b", - "0x4d2c2874b8d895474d0b81d523b834ec98d087162b31eef44a4634a5cd091ca", - "0x60a24181e4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x2df85d331a7b4000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x7f544a44c0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x2c", - "0x4d2c2874b8d895474d0b81d523b834ec98d087162b31eef44a4634a5cd091ca", - "0x5af3107a40000", - "0x0", - "0x136dcc951d8c0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x2c", - "0x4d2c2874b8d895474d0b81d523b834ec98d087162b31eef44a4634a5cd091ca", - "0x5af3107a40000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x2dee6a9d4d1c4000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x9f295cd5f0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x26", - "0x1c56c6b14f58bc2424a187e3a11b26ed904f700e069b52e2f0b8a622a876cab", - "0x38d7ea4c68000", - "0x0", - "0x26db992a3b180000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x26", - "0x1c56c6b14f58bc2424a187e3a11b26ed904f700e069b52e2f0b8a622a876cab", - "0x38d7ea4c68000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x78ba0eeae6aa1581fccccab25ffcd86f18b62eaef5221b0b099f06f7bd6e8a8", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x259973a776d6", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 46194, - "builtin_instance_counter": { - "pedersen_builtin": 124, - "range_check_builtin": 3143 - }, - "n_memory_holes": 2331 - }, - "actual_fee": "0x259973a776d6" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 7, - "transaction_hash": "0x78f18e4c285502eef97306e9aea7068cbe2f50ec825a043cd0d24ac5d412bba", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x545c35f9d949507bc7319f0caf56e995bc6153d5d3dcc152b48013bc98809c", - "keys": [ - "0xa49daa709d8ce1504e24805b9a0bd38d4ea48c2bfc3bf9b6d4e8fbc993836c" - ], - "data": [ - "0x60363105a84e4e38b6c388c1d92d75415fe6b4aa90bfeb7b36f22d584d13f1a", - "0x131", - "0x0", - "0x11f", - "0x64", - "0x4", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1d", - "0x2e", - "0x0", - "0x1", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0", - "0x2e", - "0x1", - "0x2" - ] - }, - { - "from_address": "0x545c35f9d949507bc7319f0caf56e995bc6153d5d3dcc152b48013bc98809c", - "keys": [ - "0x335e768ceca00415f9ee04d58d9aebc613c76b43863445e7e33c7138184442e" - ], - "data": [ - "0x60363105a84e4e38b6c388c1d92d75415fe6b4aa90bfeb7b36f22d584d13f1a", - "0x131", - "0x0", - "0x11f", - "0x64", - "0x4", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1d", - "0x2e", - "0x8", - "0x1", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0", - "0x0", - "0x15", - "0x5", - "0x1", - "0x1", - "0x0", - "0x0", - "0x0", - "0x9", - "0x0", - "0x4", - "0x8", - "0x4" - ] - }, - { - "from_address": "0x545c35f9d949507bc7319f0caf56e995bc6153d5d3dcc152b48013bc98809c", - "keys": [ - "0x16b747f083a5bc0eb62f1465891cc9b6ce061c09e77556f949348af4e7a608a" - ], - "data": [ - "0x60363105a84e4e38b6c388c1d92d75415fe6b4aa90bfeb7b36f22d584d13f1a", - "0x131", - "0x0", - "0x11f", - "0x64", - "0x4", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1d", - "0x2e", - "0x8", - "0x1", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0", - "0x1", - "0x2" - ] - }, - { - "from_address": "0x545c35f9d949507bc7319f0caf56e995bc6153d5d3dcc152b48013bc98809c", - "keys": [ - "0x2936b4d632c5391815e603335a751ddccf13f3ee988c5dea820bdf95b1bb28a" - ], - "data": [ - "0x60363105a84e4e38b6c388c1d92d75415fe6b4aa90bfeb7b36f22d584d13f1a", - "0x131", - "0x0", - "0x11f", - "0x64", - "0x4", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1d", - "0x2e", - "0x8", - "0x1", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0" - ] - }, - { - "from_address": "0x545c35f9d949507bc7319f0caf56e995bc6153d5d3dcc152b48013bc98809c", - "keys": [ - "0x8405c4c189410e7150aa8e050635c5da32c4cea679d92918fe08eb65cdb028" - ], - "data": [ - "0x60363105a84e4e38b6c388c1d92d75415fe6b4aa90bfeb7b36f22d584d13f1a", - "0x131", - "0x0", - "0x11f", - "0x64", - "0x4", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1", - "0x1d", - "0x2e", - "0x8", - "0x1", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x1", - "0x0", - "0x14", - "0xb", - "0x3", - "0x1", - "0x1", - "0xc", - "0x45", - "0x3", - "0x2", - "0x6", - "0xc", - "0x1a", - "0x5", - "0x1", - "0x3", - "0x4", - "0x54", - "0x3", - "0x3", - "0x3", - "0xc", - "0x29", - "0x5", - "0x1", - "0x6", - "0x4", - "0x63", - "0x3", - "0x3", - "0x6", - "0xc", - "0x38", - "0x5", - "0x2", - "0x3", - "0x4", - "0xd", - "0x1", - "0x1", - "0x1", - "0x14", - "0x47", - "0x5", - "0x2", - "0x6", - "0x4", - "0x1c", - "0x2", - "0x1", - "0x4", - "0x10", - "0x56", - "0x5", - "0x3", - "0x3", - "0x4", - "0x2b", - "0x2", - "0x2", - "0x1", - "0x10", - "0x65", - "0x5", - "0x3", - "0x6", - "0x4", - "0x3a", - "0x2", - "0x2", - "0x4", - "0x10", - "0xf", - "0x3", - "0x1", - "0x1", - "0xc", - "0x49", - "0x2", - "0x3", - "0x1", - "0x10", - "0x1e", - "0x4", - "0x1", - "0x4", - "0x8", - "0x58", - "0x2", - "0x3", - "0x4", - "0x10", - "0x2d", - "0x4", - "0x2", - "0x1", - "0x8", - "0x2", - "0x1", - "0x4", - "0x7", - "0x14" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x60363105a84e4e38b6c388c1d92d75415fe6b4aa90bfeb7b36f22d584d13f1a", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x61d8da317b8", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 90346, - "builtin_instance_counter": { - "poseidon_builtin": 7, - "pedersen_builtin": 18, - "range_check_builtin": 11270 - }, - "n_memory_holes": 41604 - }, - "actual_fee": "0x61d8da317b8" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 8, - "transaction_hash": "0x517ba70df4a52dade59ea5b9706766ca418353b94ed068c930e5e0f7ef04fcb", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x3faa69969dcab25e5e1ab7da806150c92787af1d37d54c661c2cb9194537c50", - "keys": [ - "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3" - ], - "data": [ - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2" - ] - }, - { - "from_address": "0x6a5930946ea92b23bd0254162f5e816e6560fb8bbd5488269e114deeee0dc93", - "keys": [ - "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3" - ], - "data": [ - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2" - ] - }, - { - "from_address": "0x6914170a6050baef78fc8f5f85fca367637a9f8496858faea2f4820b402586a", - "keys": [ - "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3" - ], - "data": [ - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2" - ] - }, - { - "from_address": "0x4420dd6d51fcbf91c22d2e77f74707169192477de891340e16bd9884c40d777", - "keys": [ - "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3" - ], - "data": [ - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2" - ] - }, - { - "from_address": "0x42b4f364d02fa4c23726072320966afed152e9ec69815f4ed2323022e0960a0", - "keys": [ - "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3" - ], - "data": [ - "0x5394444e82f1ce815be7c7ce4e263c7a78ceae02aa7059ad441474a9b8b76a2" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x50671dd80628ca48f960fbf7e4d29ec429d85a742776b2d68cb2b0453435104", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0xd7838cd2dec", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 1110, - "builtin_instance_counter": { - "range_check_builtin": 3 - }, - "n_memory_holes": 19 - }, - "actual_fee": "0xd7838cd2dec" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 9, - "transaction_hash": "0x6baa685661633c949753b4f2e5279460e69314d378cbfb06a23e016ead75d82", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x68", - "0x4b4eebc2828ebdcf2daa5e00ec3537b5423c1c74cf8fd24f9865611a2bdfb17", - "0xec4165cd904000", - "0x0", - "0xa94f1b5c93c40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x68", - "0x4b4eebc2828ebdcf2daa5e00ec3537b5423c1c74cf8fd24f9865611a2bdfb17", - "0xec4165cd904000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xba4", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xba4", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x72", - "0x17d4d460668a7cb6732eab54a279db2a69bd383ef322c434d7b94019c1b88b1", - "0xf46d3c488c000", - "0x0", - "0x53444835ec580000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x72", - "0x17d4d460668a7cb6732eab54a279db2a69bd383ef322c434d7b94019c1b88b1", - "0xf46d3c488c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x106", - "0x5f62f63c113db6a691ed14a4351553798cea68f961b69cf71f6b4780d1fd69", - "0x2e2f6e5e148000", - "0x0", - "0x98a7d9b8314c0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x106", - "0x5f62f63c113db6a691ed14a4351553798cea68f961b69cf71f6b4780d1fd69", - "0x2e2f6e5e148000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x38998f2d2fefac1ab70b390e3e8ccfeb4f710fcfdaae2c123e7c334728736b3", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x6baa685661633c949753b4f2e5279460e69314d378cbfb06a23e016ead75d82", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x38998f2d2fefac1ab70b390e3e8ccfeb4f710fcfdaae2c123e7c334728736b3", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28538, - "builtin_instance_counter": { - "pedersen_builtin": 92, - "range_check_builtin": 1715 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 10, - "transaction_hash": "0x792242d9b5a550ce606f3a78edf403a9d37afcfcce6112226e4b83308aa1c98", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x4f", - "0x7d677dd807608f3e1e085b351469a8854c5c46dddcb606c259b7e9f024d25f3", - "0x5c5edcbc290000", - "0x0", - "0x53444835ec580000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x4f", - "0x7d677dd807608f3e1e085b351469a8854c5c46dddcb606c259b7e9f024d25f3", - "0x5c5edcbc290000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xef", - "0x40e49ba61ffed5476f5a2a73dfaca7addde437cb2ef46587ca2d257f8aa9ab5", - "0x11c37937e08000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xef", - "0x40e49ba61ffed5476f5a2a73dfaca7addde437cb2ef46587ca2d257f8aa9ab5", - "0x11c37937e08000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xbf", - "0x365b92e4e154c749f5efa6bc55964b82d8e399faf2d03bb5f3cd0d0d838e7a", - "0x1334f4aad124000", - "0x0", - "0x8ac7230489e80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xbf", - "0x365b92e4e154c749f5efa6bc55964b82d8e399faf2d03bb5f3cd0d0d838e7a", - "0x1334f4aad124000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x9d", - "0x70c93c8e481e221c079bbd07ab72bc1a28e4058ba7580cdbe017e33b11257b3", - "0x15348be780cc000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x9d", - "0x70c93c8e481e221c079bbd07ab72bc1a28e4058ba7580cdbe017e33b11257b3", - "0x15348be780cc000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0xf4bd81288a11d2ed1b220e9c59a45123ed6a7262a683516021830fe60c2ace", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x792242d9b5a550ce606f3a78edf403a9d37afcfcce6112226e4b83308aa1c98", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0xf4bd81288a11d2ed1b220e9c59a45123ed6a7262a683516021830fe60c2ace", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28542, - "builtin_instance_counter": { - "pedersen_builtin": 92, - "range_check_builtin": 1715 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 11, - "transaction_hash": "0x52786a3197efc60992fce8963705fa57d156f28f09590187338a0d9e2cfa699", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x65", - "0x79a2921351857adc18c510c3b289f3da416d2e17a3c66c76e7f912de4ecfc76", - "0x2e130268ee4c000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x65", - "0x79a2921351857adc18c510c3b289f3da416d2e17a3c66c76e7f912de4ecfc76", - "0x2e130268ee4c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x1f5", - "0x6151e2eaf7d9085b311e3bef0a324b5782e138f5f637b2f3bfe84db08bf13e5", - "0xcca2e51310000", - "0x0", - "0x2dcbf4840eca0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x1f5", - "0x6151e2eaf7d9085b311e3bef0a324b5782e138f5f637b2f3bfe84db08bf13e5", - "0xcca2e51310000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xba5", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xba5", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x4d", - "0x4270713ddd65c7d55ee3684bd36cefe348dc650a38e5ff88d3fdeb38f647a2", - "0x2ff62db077c000", - "0x0", - "0x24150e3980040000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x4d", - "0x4270713ddd65c7d55ee3684bd36cefe348dc650a38e5ff88d3fdeb38f647a2", - "0x2ff62db077c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x52786a3197efc60992fce8963705fa57d156f28f09590187338a0d9e2cfa699", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2775972788ac", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 25695, - "builtin_instance_counter": { - "pedersen_builtin": 90, - "range_check_builtin": 1460 - }, - "n_memory_holes": 1275 - }, - "actual_fee": "0x2775972788ac" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 12, - "transaction_hash": "0x2970baceb37991d2d664720b5add33b74bb41b155036d337733b48cbb377d11", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x84cc8e82a3c5c000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x5f63eec8382000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x54", - "0x46c851030e97b382fefd340d1d5423cf0595593aa91b45b6ea1a2c6328d3eff", - "0x13df7c69b65c000", - "0x0", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x54", - "0x46c851030e97b382fefd340d1d5423cf0595593aa91b45b6ea1a2c6328d3eff", - "0x13df7c69b65c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x7be7fa4e2fb3c000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x8e4943474120000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x4c", - "0x4d811f61e6750c7af3f381b1ff466bce8d1dbc23bdf0a3be7f5a4952651b90e", - "0x9e1883a4814000", - "0x0", - "0xc7d713b49da00000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x4c", - "0x4d811f61e6750c7af3f381b1ff466bce8d1dbc23bdf0a3be7f5a4952651b90e", - "0x9e1883a4814000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x7b85ec406be6c000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x620e0dc3cd0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x36", - "0x121b36d2ae29c95a78388b6f4db30de68773771ca0c7e0ddb10abcdb18e0eb0", - "0xf5232269808000", - "0x0", - "0x58d15e176280000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x36", - "0x121b36d2ae29c95a78388b6f4db30de68773771ca0c7e0ddb10abcdb18e0eb0", - "0xf5232269808000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x7b8437b1b668c000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x1b48eb57e0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x35", - "0x36e8a2f5f1f366d57b333f09adee5e2786d0d3b861c3db577664c2820f85b76", - "0x110d9316ec0000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x35", - "0x36e8a2f5f1f366d57b333f09adee5e2786d0d3b861c3db577664c2820f85b76", - "0x110d9316ec0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x2970baceb37991d2d664720b5add33b74bb41b155036d337733b48cbb377d11", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x658e5e09965f39f2c7b82d6a5b6ead1e2e2f2fb02feb079bf35048d5181878", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x27d36bd39cb6", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 46170, - "builtin_instance_counter": { - "range_check_builtin": 3143, - "pedersen_builtin": 124 - }, - "n_memory_holes": 2343 - }, - "actual_fee": "0x27d36bd39cb6" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 13, - "transaction_hash": "0x45dfc49ff222d4d389146208c37ca79eb0f66c9a66fb7c7d6cb20e48dc87490", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4554482f555344", - "0x566d3e80", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344432f555344", - "0x14dc9380", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4254432f555344", - "0x269004f0400", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344542f555344", - "0x5f5e100", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4441492f555344", - "0x7bfa480", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x8fd87ebfe96", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 1162, - "builtin_instance_counter": { - "range_check_builtin": 22, - "pedersen_builtin": 5 - }, - "n_memory_holes": 65 - }, - "actual_fee": "0x8fd87ebfe96" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 14, - "transaction_hash": "0x11d50797f25402ab71147d7c1cf4fa8f05d76429f8cf3d5832beca62c6c535a", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x50", - "0x4617b609597a00928dd279fc1a6e77a824ab74941ab536918ed760af7e73848", - "0xcca2e51310000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x50", - "0x4617b609597a00928dd279fc1a6e77a824ab74941ab536918ed760af7e73848", - "0xcca2e51310000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xd8", - "0x56ff77a1cefbf71423884064ed5fcbafa6ad6aa49d43a094ae11b3d7ae01a51", - "0x23bfca5a0d68000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xd8", - "0x56ff77a1cefbf71423884064ed5fcbafa6ad6aa49d43a094ae11b3d7ae01a51", - "0x23bfca5a0d68000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xac", - "0x2d7a903d1669cfdf8ba208de3e0a980d6d89b5c8bc759ac3306b94be23c9fcc", - "0x1d32e8da3f6c000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xac", - "0x2d7a903d1669cfdf8ba208de3e0a980d6d89b5c8bc759ac3306b94be23c9fcc", - "0x1d32e8da3f6c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xa1", - "0x69c8c98912d6b044a6a798d5dc4b835a4eb5953d603ccb7c5f60d2ce1cc73f5", - "0x1a6c5de98458000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xa1", - "0x69c8c98912d6b044a6a798d5dc4b835a4eb5953d603ccb7c5f60d2ce1cc73f5", - "0x1a6c5de98458000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x19e5dace1b462bae149c9bef9834cb918dc3901251faa9e3cab59d226744da2", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x11d50797f25402ab71147d7c1cf4fa8f05d76429f8cf3d5832beca62c6c535a", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x19e5dace1b462bae149c9bef9834cb918dc3901251faa9e3cab59d226744da2", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2775972788ac", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 25699, - "builtin_instance_counter": { - "pedersen_builtin": 90, - "range_check_builtin": 1460 - }, - "n_memory_holes": 1275 - }, - "actual_fee": "0x2775972788ac" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 15, - "transaction_hash": "0x5cfb84dc8f72195c7700c2438f2d853c411c4c3e9cb34818439d87af1c6d314", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x9e", - "0x70c93c8e481e221c079bbd07ab72bc1a28e4058ba7580cdbe017e33b11257b3", - "0x15c2a7b13fd0000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x9e", - "0x70c93c8e481e221c079bbd07ab72bc1a28e4058ba7580cdbe017e33b11257b3", - "0x15c2a7b13fd0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xc0", - "0x365b92e4e154c749f5efa6bc55964b82d8e399faf2d03bb5f3cd0d0d838e7a", - "0x13c310749028000", - "0x0", - "0x8ac7230489e80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xc0", - "0x365b92e4e154c749f5efa6bc55964b82d8e399faf2d03bb5f3cd0d0d838e7a", - "0x13c310749028000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x2c", - "0x380484e35e580c74ffdf78bbda35ca623360cf00aec311051540fd610fafbc1", - "0x1717b72f0a4000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x2c", - "0x380484e35e580c74ffdf78bbda35ca623360cf00aec311051540fd610fafbc1", - "0x1717b72f0a4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x2e", - "0x21080a694cdaf54518cd2b0acbd70d6a017fbf080fa47824f1ce30bbd361d15", - "0xfa1c6d5030000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x2e", - "0x21080a694cdaf54518cd2b0acbd70d6a017fbf080fa47824f1ce30bbd361d15", - "0xfa1c6d5030000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x6becbb6d85ef319b7a1c5c7f759f0a39490d783b9beee05e1449567c3cf12e0", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x5cfb84dc8f72195c7700c2438f2d853c411c4c3e9cb34818439d87af1c6d314", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x6becbb6d85ef319b7a1c5c7f759f0a39490d783b9beee05e1449567c3cf12e0", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2775972788ac", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 25683, - "builtin_instance_counter": { - "range_check_builtin": 1460, - "pedersen_builtin": 90 - }, - "n_memory_holes": 1275 - }, - "actual_fee": "0x2775972788ac" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 16, - "transaction_hash": "0x382cab7bccf73840bb85d90a0fea21bfbd8459acc776ccbf0f6cc03dc7063ff", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0xe18a8f836fdb8000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x3328b944c4000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x9f", - "0x6151e2eaf7d9085b311e3bef0a324b5782e138f5f637b2f3bfe84db08bf13e5", - "0xaa87bee538000", - "0x0", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x9f", - "0x6151e2eaf7d9085b311e3bef0a324b5782e138f5f637b2f3bfe84db08bf13e5", - "0xaa87bee538000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0xe131be2558790000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x58d15e17628000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x35", - "0x267aae7c2b2d93bd9757e662a86e9e77bb7118d194808db35a71c02e74ee5a2", - "0x38d7ea4c68000", - "0x0", - "0x15af1d78b58c40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x35", - "0x267aae7c2b2d93bd9757e662a86e9e77bb7118d194808db35a71c02e74ee5a2", - "0x38d7ea4c68000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0xe11cc8208c4c4000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x14f604cc2cc000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x48", - "0x4ca57e74f02f1ec8aa5c360a69e1ece1bae014d22ad455dfbb60a0d2415bdd3", - "0xd19c2ff9bf8000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x48", - "0x4ca57e74f02f1ec8aa5c360a69e1ece1bae014d22ad455dfbb60a0d2415bdd3", - "0xd19c2ff9bf8000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0xe10f1a9291e9a000", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0xdad8dfa62a000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x26684eef914df65fcac4bcd8605ef0a4456bc23a70d0768130708379d09bbc4" - ], - "data": [ - "0x35", - "0x156f73b2c2708786d80edfaf3f159d205fd86dd3b535c4a913fe39006be9e44", - "0x88c78bc7da4000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x35", - "0x156f73b2c2708786d80edfaf3f159d205fd86dd3b535c4a913fe39006be9e44", - "0x88c78bc7da4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x382cab7bccf73840bb85d90a0fea21bfbd8459acc776ccbf0f6cc03dc7063ff", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x27d36bd39cb6", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 46186, - "builtin_instance_counter": { - "range_check_builtin": 3143, - "pedersen_builtin": 124 - }, - "n_memory_holes": 2331 - }, - "actual_fee": "0x27d36bd39cb6" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 17, - "transaction_hash": "0x2cd855d44d3e8a34d30606dc118647b65490ae479b30c003a2ddae0baf075f0", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x146", - "0x19b8ce350872c759d3866ef68c10b235301511bf0030dae0872e3b57532579", - "0xbb9551fc24000", - "0x0", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x146", - "0x19b8ce350872c759d3866ef68c10b235301511bf0030dae0872e3b57532579", - "0xbb9551fc24000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x19945ca262000", - "0x0" - ] - }, - { - "from_address": "0x1c0365f7783879a91dc5c1574940966979dbf2d789a9caa0acd85a93e1ee646", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x0", - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x1c0365f7783879a91dc5c1574940966979dbf2d789a9caa0acd85a93e1ee646", - "keys": [ - "0x4b7379c4f61a7ccdd878a8f90f842de75c764903d77f52da7a300c0622d7c4" - ], - "data": [ - "0x0", - "0x54e83b9cabd7d38a20be56f5fbb7231fd97459a80592c3be8e763e7f197354f", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "keys": [ - "0x33876591907f20c0f39994e2e4cd07b3847a430ffa74dd6d673298561e3e80b" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x429d069189e0000", - "0x0", - "0x1c0365f7783879a91dc5c1574940966979dbf2d789a9caa0acd85a93e1ee646" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x1e206f8d845dff79d35c0e35ecde4a49f5ce4cacc6433db8008602acb6d973" - ], - "data": [ - "0x99", - "0x1c0365f7783879a91dc5c1574940966979dbf2d789a9caa0acd85a93e1ee646", - "0x886c98b760000", - "0x0", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0xa006108d44271b4927fb36f15d33c76702a36ae54bb3307134d6a7b2600e5c" - ], - "data": [ - "0x0", - "0x1c0365f7783879a91dc5c1574940966979dbf2d789a9caa0acd85a93e1ee646", - "0x5543df729c000", - "0x0", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x74", - "0x74785c6919c542eb610e5fb0cd2ada91a382dce3b9cfc36ae8fb94ee173d2bd", - "0x2d79883d20000", - "0x0", - "0x429d069189e0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x74", - "0x74785c6919c542eb610e5fb0cd2ada91a382dce3b9cfc36ae8fb94ee173d2bd", - "0x2d79883d20000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x31", - "0x49f9fbc924b8983eef4c231c8215224b045426ced4b4598ee5b70246551c266", - "0xd801472258000", - "0x0", - "0xde0b6b3a76400000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x31", - "0x49f9fbc924b8983eef4c231c8215224b045426ced4b4598ee5b70246551c266", - "0xd801472258000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x2cd855d44d3e8a34d30606dc118647b65490ae479b30c003a2ddae0baf075f0", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x28a6d4d8465e", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 29180, - "builtin_instance_counter": { - "pedersen_builtin": 94, - "range_check_builtin": 1594 - }, - "n_memory_holes": 1815 - }, - "actual_fee": "0x28a6d4d8465e" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 18, - "transaction_hash": "0x3f68c6a211c9cb79c900131980d10047410690e7b1d2ee5a7a24f9ab0eb7323", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4554482f555344", - "0x566d3e80", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344432f555344", - "0x14dc9380", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4254432f555344", - "0x269004f0400", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344542f555344", - "0x5f5e100", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4441492f555344", - "0x7bfa480", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x24f9f678cf6", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 1162, - "builtin_instance_counter": { - "range_check_builtin": 22, - "pedersen_builtin": 5 - }, - "n_memory_holes": 65 - }, - "actual_fee": "0x24f9f678cf6" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 19, - "transaction_hash": "0x6a022b36da183f301d6b614bc753323209217550ef89e021784c2d582adff58", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x61984708644568dc33301d6b7adba8ac8104cbe3599a14d256b36aa0ccaf3dd", - "0xa98ac7", - "0x64", - "0x0" - ] - }, - { - "from_address": "0x61984708644568dc33301d6b7adba8ac8104cbe3599a14d256b36aa0ccaf3dd", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x6a022b36da183f301d6b614bc753323209217550ef89e021784c2d582adff58", - "0x1", - "0x1" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x61984708644568dc33301d6b7adba8ac8104cbe3599a14d256b36aa0ccaf3dd", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x24b6e8557fa", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 517, - "builtin_instance_counter": { - "range_check_builtin": 8, - "pedersen_builtin": 2 - }, - "n_memory_holes": 14 - }, - "actual_fee": "0x24b6e8557fa" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 20, - "transaction_hash": "0x1007f86548d721803578388a43c3f0b92dbb561f2738709895b294d3d4f1095", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xde", - "0x4d811f61e6750c7af3f381b1ff466bce8d1dbc23bdf0a3be7f5a4952651b90e", - "0xafdbfcdc61c000", - "0x0", - "0xbf8372e26c640000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xde", - "0x4d811f61e6750c7af3f381b1ff466bce8d1dbc23bdf0a3be7f5a4952651b90e", - "0xafdbfcdc61c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xce", - "0x522f4d7f07d9604e550f49cb57f168a61eef9097273f896e2d9c173f02e11f0", - "0x12a6d8e11220000", - "0x0", - "0x7492cb7eb1480000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xce", - "0x522f4d7f07d9604e550f49cb57f168a61eef9097273f896e2d9c173f02e11f0", - "0x12a6d8e11220000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x55", - "0x7e3f52130f998d6ecfeba0c8f2d20ead2f8690504dc9205f52b33fafd16fa3f", - "0x2c4c43168b0c000", - "0x0", - "0x6f05b59d3b200000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x55", - "0x7e3f52130f998d6ecfeba0c8f2d20ead2f8690504dc9205f52b33fafd16fa3f", - "0x2c4c43168b0c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xcd", - "0xf9ebf942317d925c01b8ab7cd967faf02233a049ff1d5e1abebcea08096ca9", - "0x176cfb0e7cdc000", - "0x0", - "0x8ac7230489e80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xcd", - "0xf9ebf942317d925c01b8ab7cd967faf02233a049ff1d5e1abebcea08096ca9", - "0x176cfb0e7cdc000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x1007f86548d721803578388a43c3f0b92dbb561f2738709895b294d3d4f1095", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28546, - "builtin_instance_counter": { - "range_check_builtin": 1715, - "pedersen_builtin": 92 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 21, - "transaction_hash": "0xdc586ec4b5478c3ca418bb007fd16da730fc38e57a45a2d0c7bb4eb5269996", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x244e9973e72", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 251, - "builtin_instance_counter": { - "range_check_builtin": 2, - "ec_op_builtin": 1 - }, - "n_memory_holes": 3 - }, - "actual_fee": "0x244e9973e72" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 22, - "transaction_hash": "0x3595b399cdb4ac3f614606b48e53c62088953894ddb3e0d2b94a5b197ab82b2", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x3e85bfbb8e2a42b7bead9e88e9a1b19dbccf661471061807292120462396ec9", - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "0x2bcc885342ebbcbcd170ae6cafa8a4bed22bb993479f49806e72d96af94c965", - "0x6b8d87f0514700000", - "0x0" - ] - }, - { - "from_address": "0x3e85bfbb8e2a42b7bead9e88e9a1b19dbccf661471061807292120462396ec9", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "0xaa77901620bdae04ffe72235a50f53c02c4bdfccbe00e86f99ae6373064d3c", - "0x6b8d87f0514700000", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0xaa77901620bdae04ffe72235a50f53c02c4bdfccbe00e86f99ae6373064d3c", - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "0x141295d1a2053c6", - "0x0" - ] - }, - { - "from_address": "0xaa77901620bdae04ffe72235a50f53c02c4bdfccbe00e86f99ae6373064d3c", - "keys": [ - "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" - ], - "data": [ - "0x188da998e23ab8dce9ce", - "0x0", - "0x4975d8325a74889c5", - "0x0" - ] - }, - { - "from_address": "0xaa77901620bdae04ffe72235a50f53c02c4bdfccbe00e86f99ae6373064d3c", - "keys": [ - "0xe316f0d9d2a3affa97de1d99bb2aac0538e2666d0d8545545ead241ef0ccab" - ], - "data": [ - "0x2bcc885342ebbcbcd170ae6cafa8a4bed22bb993479f49806e72d96af94c965", - "0x6b8d87f0514700000", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x141295d1a2053c6", - "0x0", - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0xc8eecf25320", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 10239, - "builtin_instance_counter": { - "range_check_builtin": 734, - "pedersen_builtin": 22 - }, - "n_memory_holes": 670 - }, - "actual_fee": "0xc8eecf25320" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 23, - "transaction_hash": "0x2f1ed05739b4251b955e01ecc43e48b89274eb272943e39a500e74e72ee50e3", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x33", - "0x4377bec9f12c39c534b272a76fbc3dead56f2d19dec328ffdf8b4446fdf6f51", - "0xcca2e51310000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x33", - "0x4377bec9f12c39c534b272a76fbc3dead56f2d19dec328ffdf8b4446fdf6f51", - "0xcca2e51310000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x2d", - "0x6aa7da9234c4f97d9a136bce01cf5a3a30a1f0be93620155e937a9a59a4dce8", - "0xd801472258000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x2d", - "0x6aa7da9234c4f97d9a136bce01cf5a3a30a1f0be93620155e937a9a59a4dce8", - "0xd801472258000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x191", - "0x3e16f1f25241ba3af694fe8b6326163b64011c4375d1ee03d44e4ed288338d4", - "0xd252161ab4000", - "0x0", - "0xd02ab486cedc0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x191", - "0x3e16f1f25241ba3af694fe8b6326163b64011c4375d1ee03d44e4ed288338d4", - "0xd252161ab4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x61", - "0x144e94a3af44752bc8fc5a011a9b59c423e30d20bc6c28929f0e7bfbc5f198e", - "0x3a9ea99ecb4000", - "0x0", - "0xc249fdd327780000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x61", - "0x144e94a3af44752bc8fc5a011a9b59c423e30d20bc6c28929f0e7bfbc5f198e", - "0x3a9ea99ecb4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x2f1ed05739b4251b955e01ecc43e48b89274eb272943e39a500e74e72ee50e3", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28546, - "builtin_instance_counter": { - "range_check_builtin": 1715, - "pedersen_builtin": 92 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 24, - "transaction_hash": "0x47ea0c5e4315572617baec3e93b258a7672bd8bb7d6384208c1968d3c26c2b2", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x9f", - "0x46c385724082dab11c1dce13cef69694c44afe6efe1ddca9794f6b02656ab68", - "0x214e8348c4f0000", - "0x0", - "0x6124fee993bc0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x9f", - "0x46c385724082dab11c1dce13cef69694c44afe6efe1ddca9794f6b02656ab68", - "0x214e8348c4f0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x1d", - "0x269922860a5210e4ff35e359426b7771e89216574ed1544f59303044b2f60d0", - "0xa4d88ddd94000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x1d", - "0x269922860a5210e4ff35e359426b7771e89216574ed1544f59303044b2f60d0", - "0xa4d88ddd94000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xba6", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xba6", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x32", - "0x49f9fbc924b8983eef4c231c8215224b045426ced4b4598ee5b70246551c266", - "0xcca2e51310000", - "0x0", - "0xde0b6b3a76400000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x32", - "0x49f9fbc924b8983eef4c231c8215224b045426ced4b4598ee5b70246551c266", - "0xcca2e51310000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x47ea0c5e4315572617baec3e93b258a7672bd8bb7d6384208c1968d3c26c2b2", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28546, - "builtin_instance_counter": { - "range_check_builtin": 1715, - "pedersen_builtin": 92 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 25, - "transaction_hash": "0x2f843b229b8c6677939c514f883b7a313c9ee87c0735da6507cbebe8e62eb1a", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xba7", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xba7", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x147", - "0x19b8ce350872c759d3866ef68c10b235301511bf0030dae0872e3b57532579", - "0x997a2bce4c000", - "0x0", - "0x30927f74c9de0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x147", - "0x19b8ce350872c759d3866ef68c10b235301511bf0030dae0872e3b57532579", - "0x997a2bce4c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x67", - "0x448553b1fe67233adcbe09c36ec66af54e83489667015af5c3947c5666012ce", - "0x26f8051f614c000", - "0x0", - "0x6124fee993bc0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x67", - "0x448553b1fe67233adcbe09c36ec66af54e83489667015af5c3947c5666012ce", - "0x26f8051f614c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xba8", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xba8", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x2f843b229b8c6677939c514f883b7a313c9ee87c0735da6507cbebe8e62eb1a", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2546cc01456c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28542, - "builtin_instance_counter": { - "range_check_builtin": 1715, - "pedersen_builtin": 92 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2546cc01456c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 26, - "transaction_hash": "0x37c596d7a8fb7df1d006475ad3ef63e977afc2b7242af06ef41de8de68c6979", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4554482f555344", - "0x566d3e80", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344432f555344", - "0x14dc9380", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4254432f555344", - "0x269004f0400", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344542f555344", - "0x5f5e100", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4441492f555344", - "0x7bfa480", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x24f9f678cf6", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 1162, - "builtin_instance_counter": { - "range_check_builtin": 22, - "pedersen_builtin": 5 - }, - "n_memory_holes": 65 - }, - "actual_fee": "0x24f9f678cf6" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 27, - "transaction_hash": "0x53d2c593081b967858224e402fe8d012dc43a8dccd88cb34639344cc9357a7f", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x124", - "0x51ef6c380322d513d58feba581b9600e68b3da344707f187c1202950b7bb868", - "0x1cfa10eff304000", - "0x0", - "0x6124fee993bc0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x124", - "0x51ef6c380322d513d58feba581b9600e68b3da344707f187c1202950b7bb868", - "0x1cfa10eff304000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x66", - "0x79a2921351857adc18c510c3b289f3da416d2e17a3c66c76e7f912de4ecfc76", - "0x322e9cd773d0000", - "0x0", - "0x6f05b59d3b200000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x66", - "0x79a2921351857adc18c510c3b289f3da416d2e17a3c66c76e7f912de4ecfc76", - "0x322e9cd773d0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xba9", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xba9", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x3b", - "0x2b837985b8d8743a38ded20aedb6187903c7078475982168684243d20bda1a7", - "0xcca2e51310000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x3b", - "0x2b837985b8d8743a38ded20aedb6187903c7078475982168684243d20bda1a7", - "0xcca2e51310000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x53d2c593081b967858224e402fe8d012dc43a8dccd88cb34639344cc9357a7f", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28550, - "builtin_instance_counter": { - "pedersen_builtin": 92, - "range_check_builtin": 1715 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 28, - "transaction_hash": "0x7eac14e728cc31cb87f82c5031dd7792312c4d4094f3179669e56fc415e300c", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x16", - "0x492420e7cb42bf48a70ef254d75bb3b03831c8a64d826cccdde4161c7d908f5", - "0xc1448303c8000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x16", - "0x492420e7cb42bf48a70ef254d75bb3b03831c8a64d826cccdde4161c7d908f5", - "0xc1448303c8000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xca", - "0xa4fb420e0a95dc71bd0b0396f4109d0803a362415880c8a2f1ad4196c3ec8b", - "0x96fd865af44000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xca", - "0xa4fb420e0a95dc71bd0b0396f4109d0803a362415880c8a2f1ad4196c3ec8b", - "0x96fd865af44000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xdd", - "0x446d9b2a27066e9d7828f017ed440d1f31c86389026ecc1c1fce6ba02af2ff9", - "0x1aa535d3d0c0000", - "0x0", - "0x8ac7230489e80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xdd", - "0x446d9b2a27066e9d7828f017ed440d1f31c86389026ecc1c1fce6ba02af2ff9", - "0x1aa535d3d0c0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x63", - "0x6e536d71efe3da37ae6e886f432e47de3ecb7e25ab5bb7bd8a8f3cfb45e38b2", - "0x2a4cabd9db64000", - "0x0", - "0x6f05b59d3b200000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x63", - "0x6e536d71efe3da37ae6e886f432e47de3ecb7e25ab5bb7bd8a8f3cfb45e38b2", - "0x2a4cabd9db64000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x7eac14e728cc31cb87f82c5031dd7792312c4d4094f3179669e56fc415e300c", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28550, - "builtin_instance_counter": { - "range_check_builtin": 1715, - "pedersen_builtin": 92 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 29, - "transaction_hash": "0x6165f212070b4ee7abf86b4d8b14407b44f189d6ff47fe447b7cba37f82bb9f", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x18f5acc7136467c4eb67c394befadb2093bf3497396a94f3ac1fb02681407ba", - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "0xb6bcd094580704", - "0x0" - ] - }, - { - "from_address": "0x18f5acc7136467c4eb67c394befadb2093bf3497396a94f3ac1fb02681407ba", - "keys": [ - "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" - ], - "data": [ - "0x57ec0fbab8bae", - "0x0", - "0x6e068d27374d7538", - "0x0" - ] - }, - { - "from_address": "0x18f5acc7136467c4eb67c394befadb2093bf3497396a94f3ac1fb02681407ba", - "keys": [ - "0xe316f0d9d2a3affa97de1d99bb2aac0538e2666d0d8545545ead241ef0ccab" - ], - "data": [ - "0x2bcc885342ebbcbcd170ae6cafa8a4bed22bb993479f49806e72d96af94c965", - "0x9184e72a000", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0xb6bcd094580704", - "0x0", - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x1281db57329acc0289defbd54cd14d8eef6ed980ad56ad3c08db1fec46554d7", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0xc8e75bcbf04", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 10094, - "builtin_instance_counter": { - "pedersen_builtin": 22, - "range_check_builtin": 734 - }, - "n_memory_holes": 672 - }, - "actual_fee": "0xc8e75bcbf04" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 30, - "transaction_hash": "0x282008c6a8788ff635f416450f16a93ce02ed3e637a439f9bcc7042685d60c5", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x50f3ca4be3a", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 229, - "builtin_instance_counter": { - "range_check_builtin": 3 - }, - "n_memory_holes": 5 - }, - "actual_fee": "0x50f3ca4be3a" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 31, - "transaction_hash": "0x6bd0e761237ae3e3d90de80a75cdc20e401da0731025972f18af459257991cb", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x2e", - "0x6aa7da9234c4f97d9a136bce01cf5a3a30a1f0be93620155e937a9a59a4dce8", - "0xc1448303c8000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x2e", - "0x6aa7da9234c4f97d9a136bce01cf5a3a30a1f0be93620155e937a9a59a4dce8", - "0xc1448303c8000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x75", - "0x28ccafbe3805057271cf0349fdef9c66db0785cebc72d2efd67fee111011df5", - "0x71afd498d0000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x75", - "0x28ccafbe3805057271cf0349fdef9c66db0785cebc72d2efd67fee111011df5", - "0x71afd498d0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xbaa", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xbaa", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x1afa79b3435c000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x43", - "0x1beaaccd377b913535d2f7c3cc0f7796529f9c4ba68a912871efffaf9a33c0f", - "0x26db992a3b18000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x43", - "0x1beaaccd377b913535d2f7c3cc0f7796529f9c4ba68a912871efffaf9a33c0f", - "0x26db992a3b18000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x6bd0e761237ae3e3d90de80a75cdc20e401da0731025972f18af459257991cb", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2775972788ac", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 25699, - "builtin_instance_counter": { - "range_check_builtin": 1460, - "pedersen_builtin": 90 - }, - "n_memory_holes": 1275 - }, - "actual_fee": "0x2775972788ac" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 32, - "transaction_hash": "0x3993e78332999f7c8cb6dd232176dde3b6ddee33063220830eb413096b26eca", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x68", - "0x448553b1fe67233adcbe09c36ec66af54e83489667015af5c3947c5666012ce", - "0x26a2c13feeb0000", - "0x0", - "0x6124fee993bc0000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x68", - "0x448553b1fe67233adcbe09c36ec66af54e83489667015af5c3947c5666012ce", - "0x26a2c13feeb0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x49", - "0x54556be2246278aa9f5c955b0c808fabf70fc85b15dcad97223672f13246532", - "0xea7aa67b2d0000", - "0x0", - "0x53444835ec580000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x49", - "0x54556be2246278aa9f5c955b0c808fabf70fc85b15dcad97223672f13246532", - "0xea7aa67b2d0000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x44", - "0x1beaaccd377b913535d2f7c3cc0f7796529f9c4ba68a912871efffaf9a33c0f", - "0x26bf2d3514e4000", - "0x0", - "0x7ce66c50e2840000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x44", - "0x1beaaccd377b913535d2f7c3cc0f7796529f9c4ba68a912871efffaf9a33c0f", - "0x26bf2d3514e4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xce", - "0xf9ebf942317d925c01b8ab7cd967faf02233a049ff1d5e1abebcea08096ca9", - "0x16c2734f97a4000", - "0x0", - "0x8ac7230489e80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xce", - "0xf9ebf942317d925c01b8ab7cd967faf02233a049ff1d5e1abebcea08096ca9", - "0x16c2734f97a4000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x3993e78332999f7c8cb6dd232176dde3b6ddee33063220830eb413096b26eca", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c42d6b4c", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 28546, - "builtin_instance_counter": { - "range_check_builtin": 1715, - "pedersen_builtin": 92 - }, - "n_memory_holes": 1379 - }, - "actual_fee": "0x2780c42d6b4c" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 33, - "transaction_hash": "0x2a118beccd7c0008c07725b6e541c602c6b64b2f0bdfc31a84a969b1e77427c", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4554482f555344", - "0x566d3e80", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344432f555344", - "0x14dc9380", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4254432f555344", - "0x269004f0400", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344542f555344", - "0x5f5e100", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4441492f555344", - "0x7bfa480", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x24f9f678cf6", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 1162, - "builtin_instance_counter": { - "range_check_builtin": 22, - "pedersen_builtin": 5 - }, - "n_memory_holes": 65 - }, - "actual_fee": "0x24f9f678cf6" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 34, - "transaction_hash": "0xf246f27536e9c0f36bf6fcb8935488533090fe0c705a7f803322091c810006", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x11a", - "0xabe046f37105c9894a67ad0ba0e0d9350a81e4cfeff09b5d073d84b17b76c8", - "0x1c331d3be798000", - "0x0", - "0x6f05b59d3b200000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x11a", - "0xabe046f37105c9894a67ad0ba0e0d9350a81e4cfeff09b5d073d84b17b76c8", - "0x1c331d3be798000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x53", - "0x1c5513d67d6cf1bbe598244ddcfb5282b2261db6e29b9723f7705aee6ee4f33", - "0xd801472258000", - "0x0", - "0x1100130279da80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x53", - "0x1c5513d67d6cf1bbe598244ddcfb5282b2261db6e29b9723f7705aee6ee4f33", - "0xd801472258000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x64", - "0x6e536d71efe3da37ae6e886f432e47de3ecb7e25ab5bb7bd8a8f3cfb45e38b2", - "0x29f767fa68c8000", - "0x0", - "0x6f05b59d3b200000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x64", - "0x6e536d71efe3da37ae6e886f432e47de3ecb7e25ab5bb7bd8a8f3cfb45e38b2", - "0x29f767fa68c8000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0xde", - "0x446d9b2a27066e9d7828f017ed440d1f31c86389026ecc1c1fce6ba02af2ff9", - "0x1a4ff1f45e24000", - "0x0", - "0x8ac7230489e80000", - "0x0" - ] - }, - { - "from_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0xde", - "0x446d9b2a27066e9d7828f017ed440d1f31c86389026ecc1c1fce6ba02af2ff9", - "0x1a4ff1f45e24000", - "0x0", - "0x0", - "0x0" - ] - }, - { - "from_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0xf246f27536e9c0f36bf6fcb8935488533090fe0c705a7f803322091c810006", - "0x0" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2775972788ac", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 25695, - "builtin_instance_counter": { - "range_check_builtin": 1460, - "pedersen_builtin": 90 - }, - "n_memory_holes": 1275 - }, - "actual_fee": "0x2775972788ac" - }, - { - "execution_status": "SUCCEEDED", - "transaction_index": 35, - "transaction_hash": "0x1f4bd290a7517ed1b8e0203bd8ce639b85a5d181a0eda845981cdac94b84302", - "l2_to_l1_messages": [], - "events": [ - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4554482f555344", - "0x566d3e80", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344432f555344", - "0x14dc9380", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4254432f555344", - "0x269004f0400", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x555344542f555344", - "0x5f5e100", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49f0ccfd8fea5e5896593dc29d725189ad4860d4e7f0391bc2c27744d646634", - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e33614", - "0x4d4f434b5f534f55524345", - "0x4d4f434b5f5055424c4953484552", - "0x4441492f555344", - "0x7bfa480", - "0x4d4f434b5f564f4c554d45" - ] - }, - { - "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x7648fd67685a4780107ba95879e4a0ce0f0dd7f34a8d32f2419bde0c56f0b42", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x24f9f678cf6", - "0x0" - ] - } - ], - "execution_resources": { - "n_steps": 1162, - "builtin_instance_counter": { - "pedersen_builtin": 5, - "range_check_builtin": 22 - }, - "n_memory_holes": 65 - }, - "actual_fee": "0x24f9f678cf6" - } - ], - "starknet_version": "0.12.1" - } diff --git a/rpc/tests/block/sepoliaTxs64159.json b/rpc/tests/block/sepoliaTxs64159.json new file mode 100644 index 00000000..c4387b35 --- /dev/null +++ b/rpc/tests/block/sepoliaTxs64159.json @@ -0,0 +1,4628 @@ +{ + "jsonrpc": "2.0", + "result": { + "status": "ACCEPTED_ON_L1", + "block_hash": "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964", + "parent_hash": "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5", + "block_number": 64159, + "new_root": "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0", + "timestamp": 1714901729, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0xdf0413d3c777", + "price_in_wei": "0x185f2d3eb5" + }, + "l1_data_gas_price": { + "price_in_fri": "0xa41c1219f8849", + "price_in_wei": "0x11ef315a9ab" + }, + "l1_da_mode": "BLOB", + "starknet_version": "0.13.1.1", + "transactions": [ + { + "transaction_hash": "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5b", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x4db15c20dfbd745d60d345f17c5e7f126f3e8d8b8db3af2defaf4b182203df", + "0x698845744536a2a4259aab10cfa49d10d9306c9cb719bf028ac5fed5bc6080a" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x246", + "0x53", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5cb15a2f0e0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4933aba6e0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5c916d31e60", + "0x574254432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x56379b7f480", + "0x4254432f455552", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x2c60ee70", + "0x554e492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x80204b0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663750c6", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5ca56ee7200", + "0x4254432f555344", + "0x0", + "0x0", + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x491318b940", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375095", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f54f4c", + "0x4441492f555344", + "0x0", + "0x0", + "0x663750c5", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0", + "0x0", + "0x66375088", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0", + "0x0", + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c94ab5e500", + "0x574254432f555344", + "0x0", + "0x0", + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f4cce6", + "0x574254432f425443", + "0x0", + "0x0", + "0x663750df", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551abfd640", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663750d3", + "0x444546494c4c414d41", + "0x505241474d41", + "0xca1e94", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663750e6", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5846c", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663750e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x663750c5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663750e7", + "0x444546494c4c414d41", + "0x505241474d41", + "0x45c5798", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x6637508a", + "0x444546494c4c414d41", + "0x505241474d41", + "0x27103a980", + "0x4450492f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x663752d3", + "0x4b55434f494e", + "0x505241474d41", + "0x5cafb70b400", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752ce", + "0x4b55434f494e", + "0x505241474d41", + "0x4926595000", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752ca", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x663752ae", + "0x4b55434f494e", + "0x505241474d41", + "0x2c5fb5f0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663752b7", + "0x4b55434f494e", + "0x505241474d41", + "0x8016870", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5cab7a367fe", + "0x4254432f555344", + "0x1e06f4d257ecaebe9df20b800", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x4925334828", + "0x4554482f555344", + "0x3214c57c904b810f49aa800", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e4afd54e6a4ad51000", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e41a3ccee09cc00", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x2c5aef34", + "0x554e492f555344", + "0xc77502da41a59e97c800", + "0x0", + "0x663752d5", + "0x48554f4249", + "0x505241474d41", + "0x8028662", + "0x5354524b2f555344", + "0x29d90a1dcd3e1dae9e00", + "0x0", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x5cb2136f8fd", + "0x4254432f555344", + "0x3317dd415e633a00000000", + "0x0", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x492f54f3a9", + "0x4554482f555344", + "0x1d68b02c3424cc00000000", + "0x0", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41b0ba79a5b0600", + "0x0", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x2c5d3911", + "0x554e492f555344", + "0x246d4e811c7a5e000000", + "0x0", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x8028662", + "0x5354524b2f555344", + "0x2b50a0595bd600000000", + "0x0", + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb15aa9200", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752d3", + "0x4249545354414d50", + "0x505241474d41", + "0x491f6f4b00", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x663752d3", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0x562676b0200", + "0x4254432f455552", + "0x0", + "0x0", + "0x663752d4", + "0x4249545354414d50", + "0x505241474d41", + "0x2c617b10", + "0x554e492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663752d5", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663752d4", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5cb1dc9b3af", + "0x4254432f555344", + "0xeb56f34c978fd0", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x492bb9e912", + "0x4554482f555344", + "0x62656870346344", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fd8c85ba348", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b1be6c9ad87", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5c9c1ccc4a7", + "0x574254432f555344", + "0x796c529c6f0", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5633646a2a0", + "0x4254432f455552", + "0x2afd3d24ae4d", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x2c5ceaf4", + "0x554e492f555344", + "0x149867a0a27b9", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fcec6f2f8cc5", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x45ae58a", + "0x5a454e442f555344", + "0x3f531f57a5e", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x49171f4e8c", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551a34ef44", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x494e444558434f4f50", + "0x505241474d41", + "0x2545b6bdd", + "0x4450492f555344", + "0x502aeca0740", + "0x0", + "0x663752d7", + "0x42494e414e4345", + "0x505241474d41", + "0x2553e2b89", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5c", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x605ff2c95ffae61e96ad5481b3ddf769757aa550db9059df16e55952ab4c2da", + "0x1beb5c085b6e5096c57895f6ce1e9269cdc3d2f7a944ae35ac9effc42af95ee" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x6072a93afb6", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca44743880", + "0x4254432f555344", + "0x118686485c5984910000", + "0x0", + "0x1", + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5cab2b8fb00", + "0x4254432f555344", + "0x1e34df95235227a0000", + "0x0", + "0x1", + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1c7341476", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xed2b58e2a", + "0x4254432f55534454", + "0x2d1821da35b7d73100", + "0x0", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf6e817a13", + "0x4254432f55534454", + "0x1350d69e5c0cc1c0", + "0x192327e7000", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf0effcb0f", + "0x4254432f55534454", + "0x277e234227d7cd00", + "0x1905ddbbc00", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4c265e2090", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x49254afd9f", + "0x4554482f555344", + "0x883e9377eb162bb00", + "0x0", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4923b001f0", + "0x4554482f555344", + "0x5a411357f980b0b000", + "0x0", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4a3e3034b3", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xbe18f17f", + "0x4554482f55534454", + "0xb54a81af01dc00", + "0x1905ddbbc00", + "0x1", + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xc2f9c074", + "0x4554482f55534454", + "0x5cf8bb46d02800", + "0x192327e7000", + "0x1", + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xbb45eb82", + "0x4554482f55534454", + "0xe7e15df9c107bb00", + "0x0", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5db47c3f000", + "0x4254432f555344", + "0x1bc436074f8e01", + "0x1905ddbbc00", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5fb8073c180", + "0x4254432f555344", + "0xf9d290eecba37", + "0x192327e7000", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x25516ce62a0e7", + "0x19407212400", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x5368331ce0fc8", + "0x18f61842000", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229c882a03220", + "0x18f8590a400", + "0x1", + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xf02c9f7a0", + "0x4254432f55534454", + "0xc9b25aa2a2c", + "0x1905ddbbc00", + "0x1", + "0x663752d7", + "0x4f4b58", + "0x505241474d41", + "0xf6cfe13e0", + "0x4254432f55534454", + "0xc47328e90c4", + "0x192327e7000", + "0x1", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0xee8c27440", + "0x4254432f55534454", + "0x24a743d0318", + "0x18fcda9ac00", + "0x1", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0xfe5604100", + "0x4254432f55534454", + "0x19c84605960", + "0x19407212400", + "0x1", + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9615dbeb4c4", + "0x18f61842000", + "0x1", + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x34a194e22ff", + "0x18f8590a400", + "0x1", + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4a144a6600", + "0x4554482f555344", + "0x70066a27bb5a0", + "0x1905ddbbc00", + "0x1", + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4ba4d57600", + "0x4554482f555344", + "0x3eb44b4d6c260", + "0x192327e7000", + "0x1", + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x494dcea180", + "0x4554482f555344", + "0x37c2ffcd5c540", + "0x18f61842000", + "0x1", + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400", + "0x1", + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbdc563f0", + "0x4554482f55534454", + "0x808fe02b9e4", + "0x1905ddbbc00", + "0x1", + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xc24cc0d0", + "0x4554482f55534454", + "0x2e86f16ef7c", + "0x192327e7000", + "0x1", + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbb89cbd0", + "0x4554482f55534454", + "0x4487bc67970", + "0x18f61842000", + "0x1", + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400", + "0x1", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5cb1ba07300", + "0x4254432f555344", + "0xa8ae41b3d818c80000", + "0x0", + "0x1", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xed3ea74a0", + "0x4254432f55534454", + "0x12f33035f69b20", + "0x0", + "0x1", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x49234f1d40", + "0x4554482f555344", + "0x17a3dd3899337d000", + "0x0", + "0x1", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xbb2cb7b0", + "0x4554482f55534454", + "0x42186eabcfd7c", + "0x0" + ] + }, + { + "transaction_hash": "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x32", + "max_fee": "0x4b5b075cca932", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x14c577c4dcbe6857e4d097fb0770289820019d4d67819501e813bd0daf0a540", + "0x4bfe882403bb9adad0fafdf740df449311ce47c7e79bcb94ba09ee366e432df" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x6c6d617ab2d657532de8fe2648428fc912dbc5cfea7ba7440d23e1387e3d8b", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x1eba00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + { + "transaction_hash": "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5d", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x6fc52a609784800f3aa0848121b9d328568e4c518a0a80cc51913716be863ed", + "0x52eda1b2ad692dc861089dff441a760740e0d1ff4688682e0a0980fb07c3acd" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x246", + "0x53", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5cacdd019a0", + "0x4254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x49294c9f60", + "0x4554482f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8faf5a280", + "0x574254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x562fe09f7c0", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x2c627510", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0", + "0x0", + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0", + "0x0", + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0", + "0x0", + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x6637537d", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f5e100", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x66375375", + "0x4b55434f494e", + "0x505241474d41", + "0x5caef84f200", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375379", + "0x4b55434f494e", + "0x505241474d41", + "0x492a1a9dc0", + "0x4554482f555344", + "0x0", + "0x0", + "0x6637536f", + "0x4b55434f494e", + "0x505241474d41", + "0xf424a", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637530d", + "0x4b55434f494e", + "0x505241474d41", + "0x2c5a10a0", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637534b", + "0x4b55434f494e", + "0x505241474d41", + "0x802c800", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5ca78865e45", + "0x4254432f555344", + "0x1e073d4339087b8544de91900", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x49246cf141", + "0x4554482f555344", + "0x322097b0742185696c0dd00", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e6acfb874eaeba7000", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x2c6080ce", + "0x554e492f555344", + "0xc7a83b0e7d53c1bc6000", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x804478b", + "0x5354524b2f555344", + "0x29e22bcf5ef7ba6be500", + "0x0", + "0x6637537b", + "0x4f4b58", + "0x505241474d41", + "0x5caabceea48", + "0x4254432f555344", + "0x3310afa265fea000000000", + "0x0", + "0x6637537b", + "0x4f4b58", + "0x505241474d41", + "0x492645e7de", + "0x4554482f555344", + "0x1d661b252653ad00000000", + "0x0", + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41c49f02452e080", + "0x0", + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0x2c5ebfa5", + "0x554e492f555344", + "0x24671f409590fa000000", + "0x0", + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0x803bed8", + "0x5354524b2f555344", + "0x2b4f26a557053c000000", + "0x0", + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb3f63b900", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0x56291242900", + "0x4254432f455552", + "0x0", + "0x0", + "0x66375377", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5cabc867876", + "0x4254432f555344", + "0xeb4b7968bdfcd8", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x49220309e7", + "0x4554482f555344", + "0x6275e47ad2d734", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4ff00e2ba109", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b1ac7862f12", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5c9aabc5ad8", + "0x574254432f555344", + "0x7745201c165", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x56344bae440", + "0x4254432f455552", + "0x2ae33791bd5e", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x2c5fbd85", + "0x554e492f555344", + "0x149905a590614", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x8040cf5", + "0x5354524b2f555344", + "0x1fd439accefa4", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x45af912", + "0x5a454e442f555344", + "0x3f710285042", + "0x0", + "0x6637537a", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4917199e4c", + "0x4554482f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551ab282ec", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0", + "0x0", + "0x6637537c", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254b3cdaf", + "0x4450492f555344", + "0x4ff69c4fbde", + "0x0", + "0x6637537d", + "0x42494e414e4345", + "0x505241474d41", + "0x25560c033", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x33", + "max_fee": "0x1bad55a98e1c1", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x3fd4d5bc46ca2a9b30073178c06fc5b4298e1ac6cc568dc40afeb808b3ad9f6", + "0x44901ac2ce0e794578e2df07e4d9c40fa247de2bd5002cb0d13afd88dcc11af" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265706f73736573734275696c64696e67", + "0x4", + "0x5", + "0x1b48", + "0x1", + "0xe52" + ] + }, + { + "transaction_hash": "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9a6", + "max_fee": "0x7bee46410b33b", + "sender_address": "0x788722c9ffad95d40738a65d733135c03c9b169505d34fb4dc32b5fe8bcc113", + "signature": [ + "0x4c02fc283807264be825c8c0e58215703564d9f81ceb63ff6074cde42605536", + "0xab864400abe211c9590ea3873666db371a8e07439b29b4f99aeccdff5cc408" + ], + "calldata": [ + "0x2", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x5", + "0x5265736f6c766552616e646f6d4576656e74", + "0x3", + "0x0", + "0x1", + "0xead", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265636569766544656c6976657279", + "0x4", + "0x9", + "0x14cb0", + "0x1", + "0xead" + ] + }, + { + "transaction_hash": "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x34", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x57fb1e1d6de3c6610001f798a415af1ee1ede9acdd410fe8a2320056f275c2a", + "0x75a3762f19db243125fdf04ce1aa051c66b5d8cb2752af099da977f43ef795f" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x738061707d1ba5a73ca4419bd49f470d3eb5860cef23dc1d91212646e57d161", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x4300000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + { + "transaction_hash": "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x76", + "max_fee": "0x18bfe6fa45de5", + "sender_address": "0x682e5c40cbf3c1c008d615d3d02ecccf859b37f888ef1d4b694d5b8da38f808", + "signature": [ + "0x75726195a9d84eb19825d3e8119ab1929f6e586654c8e27cb03e27528ee0ec5", + "0x4bcb815945933bd90c1b53f8c1df6de34f4bca14325ef796d80792bbddd4e3c" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x3aa8a8337ac33d85a6677ca2212a58dbabeb6888decb48a8dd152521adb0a5e", + "0x6f05b59d3b20000", + "0x0" + ] + }, + { + "transaction_hash": "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5e", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x3e52c022d30c2f70d677901da82141c034f763a59ce6650c61d32855475344f", + "0x316d21bc3061f59c26642339e01d25ce0e6e6f254747e4bd1d2f1b7aa1df43d" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x238", + "0x51", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca674afba0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x491f2aa0e0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f715d040", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x562b6f5dca0", + "0x4254432f455552", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x2c5f67d0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0", + "0x0", + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0", + "0x0", + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0", + "0x0", + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753b5", + "0x4b55434f494e", + "0x505241474d41", + "0x5ca67065180", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b5", + "0x4b55434f494e", + "0x505241474d41", + "0x491f9d11c0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753a8", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637534b", + "0x4b55434f494e", + "0x505241474d41", + "0x802c800", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5ca2b497301", + "0x4254432f555344", + "0x1e0598dbf5b7a0ce2c162ac00", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x491b564495", + "0x4554482f555344", + "0x321ce01d2debf04b547ad00", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x7e636d4c86e6b857000", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e42e2fa2f239dc0", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5ea9660", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x2c5c9cd6", + "0x554e492f555344", + "0xc78c66f13a84a6d8f600", + "0x0", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5ca631984e9", + "0x4254432f555344", + "0x330d354cdd3ce400000000", + "0x0", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x491c337e21", + "0x4554482f555344", + "0x1d61d10dbbdd5f00000000", + "0x0", + "0x663753b4", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41c37c01c709980", + "0x0", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0x2c5bb27e", + "0x554e492f555344", + "0x24601581819082000000", + "0x0", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x80397c9", + "0x5354524b2f555344", + "0x2b41b84ca9c5da000000", + "0x0", + "0x663753b5", + "0x4249545354414d50", + "0x505241474d41", + "0x5cafdd30e00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x663753b7", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x663753b5", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753b7", + "0x4249545354414d50", + "0x505241474d41", + "0x562499d9d00", + "0x4254432f455552", + "0x0", + "0x0", + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5ca6dad9da0", + "0x4254432f555344", + "0xeb5b0c136256b8", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4918a7b54d", + "0x4554482f555344", + "0x6269b77b9cc298", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4ff0079dcaa7", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b08d76ab1d1", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5c985a2f223", + "0x574254432f555344", + "0x7756c918be7", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x562d9ae1b40", + "0x4254432f455552", + "0x2adddb21da5c", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x2c5c1423", + "0x554e492f555344", + "0x14974a35cdbac", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fd149a8c3774", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4584d90", + "0x5a454e442f555344", + "0x3f75543491b", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x491719a810", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753b9", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551f3408e0", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753ba", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254bee0f3", + "0x4450492f555344", + "0x4ff65da76b1", + "0x0", + "0x663753bd", + "0x42494e414e4345", + "0x505241474d41", + "0x25535d2a1", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5f", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x3d50997904c49fe06a6e3fffc73a7a03d5f00dc69ab7649255f425c927faaaa", + "0x4ae8019d94da76d3af01ed39d55ce9c069905de4324fc56f5c2e11f679a4baf" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca273f6a00", + "0x4254432f555344", + "0x1e32082a190864c0000", + "0x0", + "0x1", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x606a16b8bd3", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5c9bb0d9b26", + "0x4254432f555344", + "0x1184e665e4ffbaa7cc00", + "0x0", + "0x1", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1459a3c18", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xf0d7efb7b", + "0x4254432f55534454", + "0x285fe1bc1b6f25c0", + "0x1905ddbbc00", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xed13b041c", + "0x4254432f55534454", + "0x2d0e55b55b365dfc00", + "0x0", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xf6d2251db", + "0x4254432f55534454", + "0x134f1f137bd26bc0", + "0x192327e7000", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x4a2f863561", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x49149ad136", + "0x4554482f555344", + "0x5a2e76a01e557e6e00", + "0x0", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x4c1d366f5c", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x491a1df35e", + "0x4554482f555344", + "0x8829c25db594a1600", + "0x0", + "0x1", + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xbdea2ab5", + "0x4554482f55534454", + "0xb51de5a2857400", + "0x1905ddbbc00", + "0x1", + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xc2da0254", + "0x4554482f55534454", + "0x5ce9987031e800", + "0x192327e7000", + "0x1", + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xbb15e496", + "0x4554482f55534454", + "0xe7dda7fa30df2080", + "0x0", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5dac8362100", + "0x4254432f555344", + "0x1bc1cf3e36edf0", + "0x1905ddbbc00", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5fb3db1e980", + "0x4254432f555344", + "0xf9a60bf1a7948", + "0x192327e7000", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2552015cdbadf", + "0x19407212400", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400", + "0x1", + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0xf02c9f7a0", + "0x4254432f55534454", + "0xc97e79f4ecc", + "0x1905ddbbc00", + "0x1", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc453e6f40c0", + "0x192327e7000", + "0x1", + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00", + "0x1", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x198bcf7966a", + "0x19407212400", + "0x1", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9606e3c8b60", + "0x18f61842000", + "0x1", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400", + "0x1", + "0x663753bc", + "0x4f4b58", + "0x505241474d41", + "0x4a0535ecc0", + "0x4554482f555344", + "0x6fed10b96f758", + "0x1905ddbbc00", + "0x1", + "0x663753bc", + "0x4f4b58", + "0x505241474d41", + "0x4b91c2a600", + "0x4554482f555344", + "0x3eaa9abf8a95f", + "0x192327e7000", + "0x1", + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0x493fbd8e80", + "0x4554482f555344", + "0x37bf83124e79f", + "0x18f61842000", + "0x1", + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400", + "0x1", + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0xbd84b170", + "0x4554482f55534454", + "0x805d8800b20", + "0x1905ddbbc00", + "0x1", + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0xc235b660", + "0x4554482f55534454", + "0x2e81e949068", + "0x192327e7000", + "0x1", + "0x663753be", + "0x4f4b58", + "0x505241474d41", + "0xbb6776c0", + "0x4554482f55534454", + "0x4477353a3e0", + "0x18f61842000", + "0x1", + "0x663753b4", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400", + "0x1", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5ca7daca880", + "0x4254432f555344", + "0xa891a2123920900000", + "0x0", + "0x1", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xed2084720", + "0x4254432f55534454", + "0x12f067c1ee213b", + "0x0", + "0x1", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4918483d00", + "0x4554482f555344", + "0x17a3401551876d000", + "0x0", + "0x1", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xbb111960", + "0x4554482f55534454", + "0x4226da64cfda7", + "0x0" + ] + }, + { + "transaction_hash": "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x35", + "max_fee": "0x1bad55a98e1c1", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x6bd997de8e01fb712c4c53a57883ce6246eec6ffb60519e021c89d0830bf19", + "0x7e9d72cdaacdceacbb584cfc792947fb235023555ff228bc8b656d6c2434002" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265706f73736573734275696c64696e67", + "0x4", + "0x5", + "0x9cd", + "0x1", + "0xe52" + ] + }, + { + "transaction_hash": "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x5", + "sender_address": "0x1bef1d205c047ee5d24ed873f1fa8c6c6cc37d0d3808266e2fe9a64b6ff9474", + "signature": [ + "0x61d74b8b1a72be739b8e62e579975e05f6185ab11f5d24ad23873e923c079ab", + "0x5d69947a53907d0113a5e9713afbfd03d286771995fb4b92f059b614a7df6ac" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x5", + "0x47b774d6ee3573805f590bc556f500022d6d8f2b01a741239ff93ca22e6dddb", + "0x7e3c89140da097d5e30b51d617ea9ed4e8bbb0a9172e8a9359910d43dba9daa", + "0x1", + "0x1", + "0x3" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x1aa6", + "max_price_per_unit": "0x14e861dbd4065" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b60", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0xbb14f68cc2b09ef26c6519378ce709b12b2f4848a58476b3d4a83a9ea53e2b", + "0x3fa506dd6617ffa68628473ef4aa1d5d3c5bac2603294b450b2bacd93de5fb2" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x215", + "0x4c", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5cacdd019a0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x4927645760", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f4c2b880", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x56319c14e00", + "0x4254432f455552", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x2c627510", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0", + "0x0", + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0", + "0x0", + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0", + "0x0", + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c899bd1", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753f3", + "0x4b55434f494e", + "0x505241474d41", + "0x5cadf6d1280", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f5", + "0x4b55434f494e", + "0x505241474d41", + "0x4927e60a80", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753ed", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753ec", + "0x4b55434f494e", + "0x505241474d41", + "0x803d970", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x5ca78865e45", + "0x4254432f555344", + "0x1e0713252483d0bb17b81bb00", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x4923fa840a", + "0x4554482f555344", + "0x322e2a71a8fa4214c083200", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e42e2fa2f239dc0", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x2c600ba2", + "0x554e492f555344", + "0xc7984bc76ed7e5188400", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x8046e9a", + "0x5354524b2f555344", + "0x29dcb94040e873c2be00", + "0x0", + "0x663753f6", + "0x4f4b58", + "0x505241474d41", + "0x5cad455984a", + "0x4254432f555344", + "0x330e62d5920cfe00000000", + "0x0", + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x4925610d71", + "0x4554482f555344", + "0x1d6650b66c35b200000000", + "0x0", + "0x663753f2", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41bc187e931cc00", + "0x0", + "0x663753f4", + "0x4f4b58", + "0x505241474d41", + "0x2c61cccc", + "0x554e492f555344", + "0x24650515e37f30000000", + "0x0", + "0x663753f4", + "0x4f4b58", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x2b3748b2407dd2000000", + "0x0", + "0x663753f3", + "0x4249545354414d50", + "0x505241474d41", + "0x5cafdd30e00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x663753f5", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753f3", + "0x4249545354414d50", + "0x505241474d41", + "0x56261752100", + "0x4254432f455552", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0x424e9bc", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5cad6de032b", + "0x4254432f555344", + "0xeb69d7e377f2b0", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x492179ba0c", + "0x4554482f555344", + "0x62717719716b88", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fe1f98f8b33", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3afc7f8ccdae", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5c9872f9ff1", + "0x574254432f555344", + "0x7756e90cbef", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x563555476e0", + "0x4254432f455552", + "0x2ae1b339642a", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x2c5e9896", + "0x554e492f555344", + "0x1498755a1f8f5", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fd318cd32464", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x4584d90", + "0x5a454e442f555344", + "0x3f6e8a3b60b", + "0x0", + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4916f9f600", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753f7", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254d1535e", + "0x4450492f555344", + "0x4ff9749858f", + "0x0", + "0x663753fa", + "0x42494e414e4345", + "0x505241474d41", + "0x2557f1f20", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b61", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x31d41de7f6ecf88bd1b4c4e06fd6f8465bc537f5e0d41991448558c2fcdabc7", + "0x29514feef0d8b315207f99773fa60bf2f4559e4acdcc20fbfc576be0c364962" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x6070411dec2", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca23abe300", + "0x4254432f555344", + "0x1186230e753b64860000", + "0x0", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca869d7a00", + "0x4254432f555344", + "0x1e33f98b5b24f2c0000", + "0x0", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1a9aab622", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xed246d6c0", + "0x4254432f55534454", + "0x2d0a72d7e8e9434000", + "0x0", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf6e1ee611", + "0x4254432f55534454", + "0x13505b3a82bae340", + "0x192327e7000", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf0e7f25a9", + "0x4254432f55534454", + "0x277cd1dee1875b00", + "0x1905ddbbc00", + "0x1", + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x4c252edece", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x49209135c0", + "0x4554482f555344", + "0x8835c613814f4c000", + "0x0", + "0x1", + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x491da58780", + "0x4554482f555344", + "0x5a399efc591c5d8000", + "0x0", + "0x1", + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x4a360bab9a", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xc2ee91cb", + "0x4554482f55534454", + "0x5cf36640fe4600", + "0x192327e7000", + "0x1", + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xbdfaff27", + "0x4554482f55534454", + "0xb52df27d0d7c00", + "0x1905ddbbc00", + "0x1", + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xbb2d53f0", + "0x4554482f55534454", + "0xe7fab3519a367400", + "0x0", + "0x1", + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5dadab05a80", + "0x4254432f555344", + "0x1bc1e98adebe70", + "0x1905ddbbc00", + "0x1", + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5fb149158ff", + "0x4254432f555344", + "0xf9a05b12626b4", + "0x192327e7000", + "0x1", + "0x663753f3", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00", + "0x1", + "0x663753f0", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2552015cdbadf", + "0x19407212400", + "0x1", + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000", + "0x1", + "0x663753f3", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400", + "0x1", + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xf01a80ce0", + "0x4254432f55534454", + "0xc994403025c", + "0x1905ddbbc00", + "0x1", + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc4532975094", + "0x192327e7000", + "0x1", + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00", + "0x1", + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x19767306a5a", + "0x19407212400", + "0x1", + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9606e3c8b60", + "0x18f61842000", + "0x1", + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400", + "0x1", + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4a0d8e27c0", + "0x4554482f555344", + "0x6ffb85a7780e3", + "0x1905ddbbc00", + "0x1", + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4b91c2a600", + "0x4554482f555344", + "0x3eaa8ba263a7f", + "0x192327e7000", + "0x1", + "0x663753fa", + "0x4f4b58", + "0x505241474d41", + "0x493fbd8e80", + "0x4554482f555344", + "0x37bf83124e79f", + "0x18f61842000", + "0x1", + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400", + "0x1", + "0x663753fb", + "0x4f4b58", + "0x505241474d41", + "0xbd941ac0", + "0x4554482f55534454", + "0x8069fbe97b0", + "0x1905ddbbc00", + "0x1", + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xc2421270", + "0x4554482f55534454", + "0x2e84fe10b5f", + "0x192327e7000", + "0x1", + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0xbb722520", + "0x4554482f55534454", + "0x447e27f8720", + "0x18f61842000", + "0x1", + "0x663753fb", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400", + "0x1", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5caaa60c000", + "0x4254432f555344", + "0xa89278340a1db80000", + "0x0", + "0x1", + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0xed32290c0", + "0x4254432f55534454", + "0x12f116f27aafc7", + "0x0", + "0x1", + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0x491b8f78c0", + "0x4554482f555344", + "0x17a3d48e0b9e87000", + "0x0", + "0x1", + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0xbb2871f0", + "0x4554482f55534454", + "0x422ef453ced0c", + "0x0" + ] + }, + { + "transaction_hash": "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x36", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x310c8db8723e82a5fa8a67be11ec0e278d5c7b07c740c8056d57b828ca01b71", + "0x21a882f6e43760d7bd37537d9dc32d77b30089e4b8d91879417f9e9602e981e" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x3e93ff1b03257b5f1c64d855faa0c05c455009646d29ffdb3a1d9539eefe5cc", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x20aef00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + { + "transaction_hash": "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x37", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x201c65a2165307bc5b701cbc47c72a0acb57e2e8d35f08e49af745fb1324baf", + "0x309af65acd47084a3d50102d57fde61bae96971928954a1e112b0391667f45f" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0xa6ae2db8bdba1315c709191512215b41d5616adc09d1b8ad9ee28dadd5c39f", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x212a500000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + { + "transaction_hash": "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x38", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x2d350d6649616cba65f1c1822ac1c63a05f0f8fd6898a198cfd12fe332b5203", + "0x3f3cc80bcb01d1b02e32c58ab2202417398fa14d6b0ec2fd6d21f589eadc332" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x787bab7274e19042fdaf5adc8c42d564fe74232cf82cdcc971ca78fd240a577", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x20eca00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + { + "transaction_hash": "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x39", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x38b2ee98be328d5ac9fdec64bb4653f157bd48616e4aab9ebb0b65b2a628296", + "0x73d9091938d27d703be698e1a609e89147190b5f7fe986cb6b1b2b4a4dcc117" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x1455f27ec8855f53e4e41e8e0de0429aa788e17b3506281ed984c62d9c71f27", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x204b200000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + { + "transaction_hash": "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b62", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x50b1559e426ec214c16e539afdeecf06b0f5ce92b4079cc81a5eb0329f5ba8f", + "0x3c7dce0695b70fdecd47deac06f2cecabbc4d7ae9e37074883a7ad708d68dc0" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x23f", + "0x52", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca56f61320", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4927bfe4e0", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f267ffa0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5627ea24e60", + "0x4254432f455552", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x2c61b1c0", + "0x554e492f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375334", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5ca987f1d00", + "0x4254432f555344", + "0x0", + "0x0", + "0x6637531c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49155c8ec0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752e3", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f56270", + "0x4441492f555344", + "0x0", + "0x0", + "0x6637531c", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf416a", + "0x555344432f555344", + "0x0", + "0x0", + "0x663752dc", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf41bb", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375335", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c8c19eae00", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375335", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f3fc60", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637530b", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551801eec0", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66375298", + "0x444546494c4c414d41", + "0x505241474d41", + "0xca7bf0", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637532b", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c899bd1", + "0x554e492f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375433", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x66375430", + "0x4b55434f494e", + "0x505241474d41", + "0x5ca6ec5f600", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375430", + "0x4b55434f494e", + "0x505241474d41", + "0x4925282300", + "0x4554482f555344", + "0x0", + "0x0", + "0x6637541f", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753ec", + "0x4b55434f494e", + "0x505241474d41", + "0x803d970", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5c9f62f9142", + "0x4254432f555344", + "0x1e047088dae1651a3e77ee400", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x492409c5cd", + "0x4554482f555344", + "0x32348c22440a49e0cddd800", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e4e2787f52456be000", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e4292f4ac4f77c0", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x8046e9a", + "0x5354524b2f555344", + "0x29d34f2f7e89628eb800", + "0x0", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5ca42eacd8c", + "0x4254432f555344", + "0x330a0731e423ca00000000", + "0x0", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x4926646b65", + "0x4554482f555344", + "0x1d67be2c5a036f00000000", + "0x0", + "0x66375433", + "0x4f4b58", + "0x505241474d41", + "0xf415f", + "0x555344432f555344", + "0x41c80d50af7a000", + "0x0", + "0x6637542e", + "0x4f4b58", + "0x505241474d41", + "0x2c604638", + "0x554e492f555344", + "0x2461129d5e39c0000000", + "0x0", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x8040cf5", + "0x5354524b2f555344", + "0x2b2fd209d931a0000000", + "0x0", + "0x6637542f", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb45599a00", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0x562794ca500", + "0x4254432f455552", + "0x0", + "0x0", + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0", + "0x0", + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0x424e9bc", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5ca45827a30", + "0x4254432f555344", + "0xeb56584a892858", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x49228c59c2", + "0x4554482f555344", + "0x62706f56fcf3a0", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fe1a08b75f2", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3af543c9131a", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5c9888e8877", + "0x574254432f555344", + "0x75db15a09c3", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x563093e9ec0", + "0x4254432f455552", + "0x2ac8338d1b4f", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x2c5d6020", + "0x554e492f555344", + "0x1495bd926ffd3", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x804d03f", + "0x5354524b2f555344", + "0x1fcc1a9855ced", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x4570192", + "0x5a454e442f555344", + "0x3f4b7d786aa", + "0x0", + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4916f9f790", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x552806cb74", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0", + "0x0", + "0x66375433", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254ded54e", + "0x4450492f555344", + "0x4ff9749858f", + "0x0", + "0x66375435", + "0x42494e414e4345", + "0x505241474d41", + "0x255aacb36", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b63", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x415b0722a91e5df5a5940b15a31348cf88b36c03503c092280197789ec15cb3", + "0x6afb18ab77404451de102eae94ec7f64ff02dbdae7a84be30723a822c6fa3f7" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x606a55937fa", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca0d3e6700", + "0x4254432f555344", + "0x1e31808b137e1620000", + "0x0", + "0x1", + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5e148016179", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5c9b28eb680", + "0x4254432f555344", + "0x1184ccaeee74a10d0000", + "0x0", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf6d41b3fc", + "0x4254432f55534454", + "0x134f465bc8774300", + "0x192327e7000", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xed13a8ed9", + "0x4254432f55534454", + "0x2d03bb2fdd1a0f7e00", + "0x0", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf0d9a6cb8", + "0x4254432f55534454", + "0x277a7a05ae532800", + "0x1905ddbbc00", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4a3761d4c5", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x491cc0a5c0", + "0x4554482f555344", + "0x5a38848b84f0b8c000", + "0x0", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4c27441db1", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4920a07800", + "0x4554482f555344", + "0x8835e27f767580000", + "0x0", + "0x1", + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xbdfe6b16", + "0x4554482f55534454", + "0xb53135d8071800", + "0x1905ddbbc00", + "0x1", + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xbb2ae2f0", + "0x4554482f55534454", + "0xe7f7acb86659b400", + "0x0", + "0x1", + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xc2f3e193", + "0x4554482f55534454", + "0x5cf5eea5ea5600", + "0x192327e7000", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5da62e23000", + "0x4254432f555344", + "0x1bbfc449a2c900", + "0x1905ddbbc00", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5fb40144380", + "0x4254432f555344", + "0xf9a7cdcdc57f0", + "0x192327e7000", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00", + "0x1", + "0x6637542f", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2551b5df6baaf", + "0x19407212400", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xf01a80ce0", + "0x4254432f55534454", + "0xc994403025c", + "0x1905ddbbc00", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc43d72e7634", + "0x192327e7000", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x19767306a5a", + "0x19407212400", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xed95ea280", + "0x4254432f55534454", + "0x9606302693f", + "0x18f61842000", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400", + "0x1", + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4a1a8c9240", + "0x4554482f555344", + "0x7151f7acb43e0", + "0x1905ddbbc00", + "0x1", + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4ba82bf400", + "0x4554482f555344", + "0x3ebf71dc70fc0", + "0x192327e7000", + "0x1", + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x494dbf5f40", + "0x4554482f555344", + "0x37cc35b8f1a1c", + "0x18f61842000", + "0x1", + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400", + "0x1", + "0x66375439", + "0x4f4b58", + "0x505241474d41", + "0xbdae3270", + "0x4554482f55534454", + "0x8087c016a44", + "0x1905ddbbc00", + "0x1", + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xc25ee940", + "0x4554482f55534454", + "0x2e8c052574f", + "0x192327e7000", + "0x1", + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xbb722520", + "0x4554482f55534454", + "0x447e27f8720", + "0x18f61842000", + "0x1", + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400", + "0x1", + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0x5ca68d01500", + "0x4254432f555344", + "0xa882c83eb74ed80000", + "0x0", + "0x1", + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0xed198e380", + "0x4254432f55534454", + "0x12ec8c102e2cf0", + "0x0", + "0x1", + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0x4920542cc0", + "0x4554482f555344", + "0x17a5c48ac1b602000", + "0x0", + "0x1", + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0xbb28c010", + "0x4554482f55534454", + "0x42344be59e7d0", + "0x0" + ] + }, + { + "transaction_hash": "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x3a", + "max_fee": "0x1bad55a98e1c1", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x7f1d7eb58b1467c75dad461953ba6d931c7b46b51ee2055996ebaa595583985", + "0x34fb6291f60e2a7ec088a92075bb977d89eb779e8f51fa638799d27a999d9fe" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265706f73736573734275696c64696e67", + "0x4", + "0x5", + "0xa25", + "0x1", + "0xe52" + ] + } + ] + }, + "id": 1 +} \ No newline at end of file diff --git a/rpc/tests/blockWithReceipts/mainnetReceipts588763.json b/rpc/tests/blockWithReceipts/mainnetReceipts588763.json new file mode 100644 index 00000000..49d44c30 --- /dev/null +++ b/rpc/tests/blockWithReceipts/mainnetReceipts588763.json @@ -0,0 +1,9663 @@ +{ + "jsonrpc": "2.0", + "result": { + "status": "ACCEPTED_ON_L1", + "block_hash": "0x63536a645f2e85d8f83090725c252695cef32cf404393bf62b6f4dd44fcd48f", + "parent_hash": "0x2914e0a4c342c3895f4779a0045582f6d6c18e71dd8fd5494bda47d4c1c4a32", + "block_number": 588763, + "new_root": "0x325544dd4360fedc785f95422f6221bf77b73e0fea49ae9a248b202a6e6844f", + "timestamp": 1708951351, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0x2dff8bc5c3ca", + "price_in_wei": "0x73424cf6f" + }, + "l1_data_gas_price": { + "price_in_fri": "0x1", + "price_in_wei": "0x1" + }, + "l1_da_mode": "CALLDATA", + "starknet_version": "0.13.0", + "transactions": [ + { + "transaction": { + "transaction_hash": "0x643f1117fddae564f81b842700774434f8c37c10b9dc07fa709f23b7d05344d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9", + "max_fee": "0x145fb1bbcc677", + "sender_address": "0x4f6d9da8fac86bf54bea79179f3eed1baf67dc019d92aae8fc5d9ff1ece5813", + "signature": [ + "0x5f088d342b20b576bd01c4278a11d43e91271a1f7ef46fc39bfafd1cf24b85e", + "0x5c0da10fd0ff8ab6d878015b0e987f661b30d109116726a8597666094e0f902" + ], + "calldata": [ + "0x2", + "0x28757d11c97078dd182023b1cc7b9e7659716c631adf94d24f1fa7dc5943072", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x2625c7662d20c6eb39dd4170bdb0cdfc3859ebbac3bd53c80bd058bc6b1360e", + "0xb2564c00", + "0x0", + "0x2625c7662d20c6eb39dd4170bdb0cdfc3859ebbac3bd53c80bd058bc6b1360e", + "0xc73f681176fc7b3f9693986fd7b14581e8d540519e27400e88b8713932be01", + "0x6", + "0x4f6d9da8fac86bf54bea79179f3eed1baf67dc019d92aae8fc5d9ff1ece5813", + "0x7a65c6fbf44e043cf9bfb47392e83381c1b82c78132fc450e78d3239479ddbd", + "0x0", + "0x55534443", + "0xb2564c00", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x643f1117fddae564f81b842700774434f8c37c10b9dc07fa709f23b7d05344d", + "actual_fee": { + "amount": "0xd952127dd9a5", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x28757d11c97078dd182023b1cc7b9e7659716c631adf94d24f1fa7dc5943072", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff", + "0x4f6d9da8fac86bf54bea79179f3eed1baf67dc019d92aae8fc5d9ff1ece5813", + "0x2625c7662d20c6eb39dd4170bdb0cdfc3859ebbac3bd53c80bd058bc6b1360e" + ], + "data": [ + "0xb2564c00", + "0x0" + ] + }, + { + "from_address": "0x28757d11c97078dd182023b1cc7b9e7659716c631adf94d24f1fa7dc5943072", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff", + "0x4f6d9da8fac86bf54bea79179f3eed1baf67dc019d92aae8fc5d9ff1ece5813", + "0x2625c7662d20c6eb39dd4170bdb0cdfc3859ebbac3bd53c80bd058bc6b1360e" + ], + "data": [ + "0x0", + "0x0" + ] + }, + { + "from_address": "0x28757d11c97078dd182023b1cc7b9e7659716c631adf94d24f1fa7dc5943072", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x4f6d9da8fac86bf54bea79179f3eed1baf67dc019d92aae8fc5d9ff1ece5813", + "0x3a3d05604d7de47d49e13e1374bd5d98be74043a6942b0f0562b80436a370d9" + ], + "data": [ + "0xb2564c00", + "0x0" + ] + }, + { + "from_address": "0x2625c7662d20c6eb39dd4170bdb0cdfc3859ebbac3bd53c80bd058bc6b1360e", + "keys": [ + "0x305f2f80f1112c18f50aef4339d4d258096641c001a5758fc168850cc6c3ddb", + "0x4f6d9da8fac86bf54bea79179f3eed1baf67dc019d92aae8fc5d9ff1ece5813", + "0x7a65c6fbf44e043cf9bfb47392e83381c1b82c78132fc450e78d3239479ddbd", + "0x0", + "0x55534443" + ], + "data": [ + "0x8be", + "0xb2564c00", + "0x8fbdb" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4f6d9da8fac86bf54bea79179f3eed1baf67dc019d92aae8fc5d9ff1ece5813", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xd952127dd9a5", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 16449, + "pedersen_builtin_applications": 40, + "range_check_builtin_applications": 304, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x62e1d552818a02e927e862d7f5df6c188c555e67b67f2594c0430034bbf2ae9", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x25", + "max_fee": "0x1aa0436e958e4", + "sender_address": "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a", + "signature": [ + "0x1", + "0x412995420d057569d5047d904a2a551afeca34443c4d7de0b1933b7706e6efc", + "0x2e8caeecda68c41373811cb1c8e4e7facddc4775ac8bb1a3a2ba3111797d68e" + ], + "calldata": [ + "0x2", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x2516b53", + "0x0", + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", + "0xe", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x2516b53", + "0x0", + "0x2ce625a3700acb", + "0x0", + "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a", + "0x1", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xf4240", + "0x2", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x62e1d552818a02e927e862d7f5df6c188c555e67b67f2594c0430034bbf2ae9", + "actual_fee": { + "amount": "0x15a5e2de9d41b", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a", + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x2516b53", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a", + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a", + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x2516b53", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2516b53", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x2516b53", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x2d1f053767d4ea", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x14f4459c1698431042", + "0x0", + "0x112c3dbbe0b", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0xe316f0d9d2a3affa97de1d99bb2aac0538e2666d0d8545545ead241ef0ccab" + ], + "data": [ + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x0", + "0x0", + "0x2516b53", + "0x0", + "0x2d1f053767d4ea", + "0x0", + "0x0", + "0x0", + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0xf4b0cf2251884df86cef28a0690321bea3e3fd7d9c6911790f50bbc2b0ebc3", + "0x24f6988c6a5", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a", + "0x2d1cb5cddf0e45", + "0x0" + ] + }, + { + "from_address": "0xf6f4cf62e3c010e0ac2451cc7807b5eec19a40b0faacd00cca3914280fdf5a", + "keys": [ + "0xe316f0d9d2a3affa97de1d99bb2aac0538e2666d0d8545545ead241ef0ccab" + ], + "data": [ + "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x2516b53", + "0x0", + "0x2d1cb5cddf0e45", + "0x0", + "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5dd561f7cf70159bed81dd6f92bebf1cb208b425121030642f815c8a067508a", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x15a5e2de9d41b", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 52095, + "pedersen_builtin_applications": 59, + "range_check_builtin_applications": 1715, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x638bfe88fc1cfd4fc3a24d6ce3627ef4404333855ec4fcce3215fbcb9caacca", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x36", + "max_fee": "0x1f3d7162522ed", + "sender_address": "0x556d211dd54bcec9bf30b15241195147884b5906150c5317721fea91f9a09bb", + "signature": [ + "0x1", + "0x34d8b56d741544bb66b3f0d2d1a778dcbc96b512e91a3451f11dd290710d5d7", + "0x60f17562f1da19c20119b4b2d4a86eafe37219514a16b767b5b5f5cda997341" + ], + "calldata": [ + "0x2", + "0x22b05f9396d2c48183f6deaf138a57522bcc8b35b67dee919f76403d1783136", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x2cc32ecbf", + "0x0", + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0xb69b4361a8bcfea4e074bd844f59471180e9e07bd42a66ff4906186a9f2628", + "0x7", + "0x1", + "0x2cc32ecbf", + "0x0", + "0x13cb2e15e82c3", + "0x0", + "0x103e4e", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x638bfe88fc1cfd4fc3a24d6ce3627ef4404333855ec4fcce3215fbcb9caacca", + "actual_fee": { + "amount": "0x14ddfbe120f97", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x22b05f9396d2c48183f6deaf138a57522bcc8b35b67dee919f76403d1783136", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x556d211dd54bcec9bf30b15241195147884b5906150c5317721fea91f9a09bb", + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x2cc32ecbf", + "0x0" + ] + }, + { + "from_address": "0x22b05f9396d2c48183f6deaf138a57522bcc8b35b67dee919f76403d1783136", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x556d211dd54bcec9bf30b15241195147884b5906150c5317721fea91f9a09bb", + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x22b05f9396d2c48183f6deaf138a57522bcc8b35b67dee919f76403d1783136", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x556d211dd54bcec9bf30b15241195147884b5906150c5317721fea91f9a09bb", + "0x0", + "0x2cc32ecbf", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x556d211dd54bcec9bf30b15241195147884b5906150c5317721fea91f9a09bb", + "0x14328b842db16", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x556d211dd54bcec9bf30b15241195147884b5906150c5317721fea91f9a09bb", + "0x109335", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x556d211dd54bcec9bf30b15241195147884b5906150c5317721fea91f9a09bb", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x14ddfbe120f97", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 25745, + "pedersen_builtin_applications": 37, + "range_check_builtin_applications": 760, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x35096cde2a90633cc0ec0d8978ae66bbdf3c7457e733d11c079b0c76a1e4763", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x1", + "sender_address": "0x609b7908181d476ed5935f1cf13e7c28ce17ae9ae779cde3486da43ef8ed66d", + "signature": [ + "0x1", + "0x1239697a1a74910ce3a53ef7f23c494fa3213770d8124eebe5c637858b24380", + "0x301718aab6bbcb47e399f65e0fc3aabfe262ddeb35803ac321caab7ceed9c8c" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0xf9c15f1034ceeb66be34334376b52a28ee71f061ed6a1c8aa9cfe68443def3", + "0x60085b8c2339bfcca", + "0x0" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0xc0e", + "max_price_per_unit": "0x3ebcaf4a0a4a" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x35096cde2a90633cc0ec0d8978ae66bbdf3c7457e733d11c079b0c76a1e4763", + "actual_fee": { + "amount": "0x1f8b904ad01537a", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x609b7908181d476ed5935f1cf13e7c28ce17ae9ae779cde3486da43ef8ed66d", + "0xf9c15f1034ceeb66be34334376b52a28ee71f061ed6a1c8aa9cfe68443def3", + "0x60085b8c2339bfcca", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x609b7908181d476ed5935f1cf13e7c28ce17ae9ae779cde3486da43ef8ed66d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1f8b904ad01537a", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 10920, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 267, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x700ae950ebb0a967b0f1732ceecae2ca9b31231d08a6770b96f712da4054fd5", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x105", + "max_fee": "0x270869f546f42", + "sender_address": "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "signature": [ + "0x47c28cb9ea9bdaabfd6e2dbe18b51172921dd94d71e28370c6defe46e1bcee6", + "0x3b09191a66ca01e07e6362e13f4e1f2da66479b50d1e55ffec4dff74b064581" + ], + "calldata": [ + "0x2", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2d169985d2", + "0x0", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2e875d1c86df033547c5c7839d8b6e3641de29ee1f708bbce99743b34272ada", + "0xa", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x2d169985d2", + "0x0", + "0x111b6beebe9b98", + "0x0", + "0xe04e12", + "0x0", + "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "0x65dc950c" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x700ae950ebb0a967b0f1732ceecae2ca9b31231d08a6770b96f712da4054fd5", + "actual_fee": { + "amount": "0x138a829a71aa9", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2d169985d2", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x2d169985d2", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x0", + "0x2d169985d2", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "0x1174a696a11a5a", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "0xe4e3e2", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x14f434277001a1f5e8", + "0x0", + "0x112c2f6da29", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744" + ], + "data": [ + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x1174a696a11a5a", + "0x0", + "0xe4e3e2", + "0x0", + "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a" + ] + }, + { + "from_address": "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x700ae950ebb0a967b0f1732ceecae2ca9b31231d08a6770b96f712da4054fd5" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x4", + "0x1174a696a11a5a", + "0x0", + "0xe4e3e2", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1fced130ee2a800f28776a10a141d1792811aaea5447c58cb70c1d4d815fe7a", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x138a829a71aa9", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 32866, + "pedersen_builtin_applications": 43, + "range_check_builtin_applications": 858, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x6e2aa7c6a746366333cd759f12ebace29fd542bf180252768f5bdc616b84eec", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1bb", + "max_fee": "0x27069ce4a4437", + "sender_address": "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "signature": [ + "0x24a09ce5acad47cdbb3ffb81deba1a9fb2cfd39aa07c6d9dbcd2ee924f285a4", + "0x2aa614cfd7aac7d784296624dc8ab2a3d0d07e5ce3279d544ae2ff62853c190", + "0x175df09a86d981610165ff5abcfa707199b4a411eb9e141c846bd72e19faf7d", + "0x63b1977bcc24d7f8935e951c3b380827c8e10fd324b452ca82d0c473eaf2bb5" + ], + "calldata": [ + "0x2", + "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x1df6214b41270fa", + "0x0", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x2e875d1c86df033547c5c7839d8b6e3641de29ee1f708bbce99743b34272ada", + "0xa", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x1df6214b41270fa", + "0x0", + "0x4bcbd271000a57c5", + "0x0", + "0xbe5ad380174f8", + "0x0", + "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "0x65dc8bd9" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x6e2aa7c6a746366333cd759f12ebace29fd542bf180252768f5bdc616b84eec", + "actual_fee": { + "amount": "0x13899c15d7bcb", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff", + "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2" + ], + "data": [ + "0x1df6214b41270fa", + "0x0" + ] + }, + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff", + "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2" + ], + "data": [ + "0x0", + "0x0" + ] + }, + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71" + ], + "data": [ + "0x1df6214b41270fa", + "0x0" + ] + }, + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "0x0" + ], + "data": [ + "0x1df6214b41270fa", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "0x4c2deccdc44d80d6", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "0xbf4e3535f40ee", + "0x0" + ] + }, + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x15a41a25e89da8949dcc5", + "0x0", + "0x365894c45a764b7e42", + "0x0" + ] + }, + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0x2b497518d83b236665380348d05287d4ff2e3bfde80c1487f31c8ddd34c9892" + ], + "data": [ + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x4c2deccdc44d80d6", + "0x0", + "0xbf4e3535f40ee", + "0x0", + "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518" + ] + }, + { + "from_address": "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x6e2aa7c6a746366333cd759f12ebace29fd542bf180252768f5bdc616b84eec" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x4", + "0x4c2deccdc44d80d6", + "0x0", + "0xbf4e3535f40ee", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x648ab05532318a10e86737e688b3a226b70218dab923920b12e4f003596f518", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x13899c15d7bcb", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 32409, + "pedersen_builtin_applications": 43, + "range_check_builtin_applications": 800, + "ec_op_builtin_applications": 6 + } + } + }, + { + "transaction": { + "transaction_hash": "0x40021cba5c6963ef168918c8b460b414c49fe1cbbf6031701ccd87c8c23006e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x5d", + "max_fee": "0x9ddcaecfdab3", + "sender_address": "0x4e425b9f7b055e51cdaa4079e13ba8bf60d586c3302c7f3a6adfa8e88548293", + "signature": [ + "0x31b6c80739f4b05f20f0555ac332b88f1f6aa11be5ab7133101112ce399170c", + "0x5e442e734725b3ad4def4b78da5d82fcb571b62cb9f6a6be230d6e570c423da", + "0x1de3da26e21a33f89501feadc1c2bd895de2508c9887886ce09279c28a933e1", + "0x1d276f4b3f69210242edeb4f050163f902a9823c9938f06435b064947ae3256" + ], + "calldata": [ + "0x2", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x173f81c529191726c6e7287e24626fe24760ac44dae2a1f7e02080230f8458b", + "0x101925daa37633f", + "0x0", + "0x173f81c529191726c6e7287e24626fe24760ac44dae2a1f7e02080230f8458b", + "0x68bcbdba7cc8cac2832d23e2c32e9eec39a9f1d03521eff5dff800a62725fa", + "0x5", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x64a24243f2aabae8d2148fa878276e6e6e452e3941b417f3c33b1649ea83e11", + "0x101925daa37633f", + "0x0", + "0x195e0f711af9dda086978bf29c26a16333611bb6" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x40021cba5c6963ef168918c8b460b414c49fe1cbbf6031701ccd87c8c23006e", + "actual_fee": { + "amount": "0x4f4bfd3363de", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4e425b9f7b055e51cdaa4079e13ba8bf60d586c3302c7f3a6adfa8e88548293", + "0x173f81c529191726c6e7287e24626fe24760ac44dae2a1f7e02080230f8458b", + "0x101925daa37633f", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4e425b9f7b055e51cdaa4079e13ba8bf60d586c3302c7f3a6adfa8e88548293", + "0x173f81c529191726c6e7287e24626fe24760ac44dae2a1f7e02080230f8458b", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4e425b9f7b055e51cdaa4079e13ba8bf60d586c3302c7f3a6adfa8e88548293", + "0x64a24243f2aabae8d2148fa878276e6e6e452e3941b417f3c33b1649ea83e11", + "0x101925daa37633f", + "0x0" + ] + }, + { + "from_address": "0x4e425b9f7b055e51cdaa4079e13ba8bf60d586c3302c7f3a6adfa8e88548293", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x40021cba5c6963ef168918c8b460b414c49fe1cbbf6031701ccd87c8c23006e" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4e425b9f7b055e51cdaa4079e13ba8bf60d586c3302c7f3a6adfa8e88548293", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4f4bfd3363de", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 12739, + "pedersen_builtin_applications": 26, + "range_check_builtin_applications": 267, + "ec_op_builtin_applications": 6 + } + } + }, + { + "transaction": { + "transaction_hash": "0x3673e70689d5d4541c3f871169eaf211b974ab486def4b3daac94aa7fbfe86b", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17", + "max_fee": "0x1cf497f2877da", + "sender_address": "0x2617a773a071caf60afd9d884d947cbe29fbadd297377e305e04e56bf9cb3f3", + "signature": [ + "0x312bef8cabe39764726b133e4cabcd50201da7613922329d86e2c8692ba1f04", + "0x351f14087e4624e2837329439521628fa325573b5afafe46ff7b3e0a33bc7e" + ], + "calldata": [ + "0x1", + "0x76dbabc4293db346b0a56b29b6ea9fe18e93742c73f12348c8747ecfc1050aa", + "0xb69b4361a8bcfea4e074bd844f59471180e9e07bd42a66ff4906186a9f2628", + "0x6", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x0", + "0x1e1991dd5dc5ff", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x3673e70689d5d4541c3f871169eaf211b974ab486def4b3daac94aa7fbfe86b", + "actual_fee": { + "amount": "0xe7ecc91e63ae", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x76dbabc4293db346b0a56b29b6ea9fe18e93742c73f12348c8747ecfc1050aa", + "keys": [ + "0x14149d3b441e5555421e9c5a5f3a4d7f2934a7356c864321e323084a1fe2608" + ], + "data": [ + "0x2617a773a071caf60afd9d884d947cbe29fbadd297377e305e04e56bf9cb3f3", + "0x7aba50fdb4e024c1ba63e2c60565d0fd32566ff4b18aa5818fc80c30e749024", + "0x21ea7e110a13bf", + "0x0", + "0x1e1991dd5dc5ff", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x76dbabc4293db346b0a56b29b6ea9fe18e93742c73f12348c8747ecfc1050aa", + "0x2617a773a071caf60afd9d884d947cbe29fbadd297377e305e04e56bf9cb3f3", + "0x21ea7e110a13bf", + "0x0" + ] + }, + { + "from_address": "0x7aba50fdb4e024c1ba63e2c60565d0fd32566ff4b18aa5818fc80c30e749024", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2617a773a071caf60afd9d884d947cbe29fbadd297377e305e04e56bf9cb3f3", + "0x0", + "0x1e1991dd5dc5ff", + "0x0" + ] + }, + { + "from_address": "0x2617a773a071caf60afd9d884d947cbe29fbadd297377e305e04e56bf9cb3f3", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x3673e70689d5d4541c3f871169eaf211b974ab486def4b3daac94aa7fbfe86b" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2617a773a071caf60afd9d884d947cbe29fbadd297377e305e04e56bf9cb3f3", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xe7ecc91e63ae", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 120312, + "pedersen_builtin_applications": 1104, + "range_check_builtin_applications": 1588, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0xb298d78a5e465e2bac04ffdced51c2daa49cbe705e777973d9ba440e12863f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x86", + "max_fee": "0x484ddf70e5d7e", + "sender_address": "0x5b17d1a5c83dcb4d1db6f2c6d3b1ec1427eb0bee068ce287d7837fe0fa8b5b2", + "signature": [ + "0x126f0d8f7527bbb70c19a2e558b04ff60315bc818b7f85c947627a37e5c87e", + "0x116f1e2996b484954358d916b41feda7cc0552088120af0e28d08233cde63ee" + ], + "calldata": [ + "0x2", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x15511cc3694f64379908437d6d64458dc76d02482052bfb8a5b33a72c054c77", + "0xe", + "0x676d4", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x20c49ba5e353f80000000000000000", + "0x3e8", + "0x0", + "0x19c00a8", + "0x1", + "0x19b83a8", + "0x1", + "0x36b567e9619ba", + "0x0", + "0x0", + "0x1", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x2178770003efad3e990ae8d3f30162f8d8e664e69af6543cf8ed6755da17c90", + "0x1", + "0x676d4" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0xb298d78a5e465e2bac04ffdced51c2daa49cbe705e777973d9ba440e12863f", + "actual_fee": { + "amount": "0x242d3d5c39d06", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "keys": [ + "0x96982abd597114bdaa4a60612f87fabfcc7206aa12d61c50e7ba1e6c291100" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x20c49ba5e353f80000000000000000", + "0x3e8", + "0x0", + "0x676d4", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x19c00a8", + "0x1", + "0x19b83a8", + "0x1", + "0xb41f37a321a029", + "0x1", + "0x165eb", + "0x1" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x5b17d1a5c83dcb4d1db6f2c6d3b1ec1427eb0bee068ce287d7837fe0fa8b5b2", + "0xb41f37a321a029", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x5b17d1a5c83dcb4d1db6f2c6d3b1ec1427eb0bee068ce287d7837fe0fa8b5b2", + "0x165eb", + "0x0" + ] + }, + { + "from_address": "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "keys": [ + "0x5dacf59794364ad1555bb3c9b2346afa81e57e5c19bb6bae0d22721c96c4e5" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x20c49ba5e353f80000000000000000", + "0x3e8", + "0x0", + "0x676d4", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x19c00a8", + "0x1", + "0x19b83a8", + "0x1", + "0x13cdbcd765a368", + "0x1", + "0x0", + "0x1" + ] + }, + { + "from_address": "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "keys": [ + "0x3a7adca3546c213ce791fabf3b04090c163e419c808c9830fb343a4a395946e" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x20c49ba5e353f80000000000000000", + "0x3e8", + "0x0", + "0x676d4", + "0x19c00a8", + "0x1", + "0x19b83a8", + "0x1", + "0x36b567e9619ba", + "0x1", + "0x9aa38595f2a6f646", + "0x1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x5b17d1a5c83dcb4d1db6f2c6d3b1ec1427eb0bee068ce287d7837fe0fa8b5b2", + "0x9aa38595f2a6f646", + "0x0" + ] + }, + { + "from_address": "0x7b696af58c967c1b14c9dde0ace001720635a660a8e90c565ea459345318b30", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5b17d1a5c83dcb4d1db6f2c6d3b1ec1427eb0bee068ce287d7837fe0fa8b5b2", + "0x0", + "0x676d4", + "0x0" + ] + }, + { + "from_address": "0x5b17d1a5c83dcb4d1db6f2c6d3b1ec1427eb0bee068ce287d7837fe0fa8b5b2", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0xb298d78a5e465e2bac04ffdced51c2daa49cbe705e777973d9ba440e12863f" + ], + "data": [ + "0x2", + "0x2", + "0x9b57a4cd95c8966f", + "0x165eb", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5b17d1a5c83dcb4d1db6f2c6d3b1ec1427eb0bee068ce287d7837fe0fa8b5b2", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x242d3d5c39d06", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 65897, + "pedersen_builtin_applications": 168, + "range_check_builtin_applications": 2330, + "bitwise_builtin_applications": 54, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x18ae8906f808be222115be6036192a0333221bb57834a86785cf33288306eb9", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1a", + "max_fee": "0x9ce7c1d2c562", + "sender_address": "0x4dc73afbc92f23aa890fe391475007aa552102ea88fcf3707ef2045f275fce8", + "signature": [ + "0x766d0489270dc435230fea204944a8537ab38c8165d5e8f2e43dc5c8f4615ca", + "0x27a3e8dc98cfb019c221f257a3e72c47db428f2138465dc22c25c5e32752015" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7c3f0fa442c65315061d184be21009735bb33fc44c2a4a0ac4eee334a7fcb8c", + "0x2c7c32290b27d4", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x18ae8906f808be222115be6036192a0333221bb57834a86785cf33288306eb9", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4dc73afbc92f23aa890fe391475007aa552102ea88fcf3707ef2045f275fce8", + "0x7c3f0fa442c65315061d184be21009735bb33fc44c2a4a0ac4eee334a7fcb8c", + "0x2c7c32290b27d4", + "0x0" + ] + }, + { + "from_address": "0x4dc73afbc92f23aa890fe391475007aa552102ea88fcf3707ef2045f275fce8", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x18ae8906f808be222115be6036192a0333221bb57834a86785cf33288306eb9" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4dc73afbc92f23aa890fe391475007aa552102ea88fcf3707ef2045f275fce8", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x2bd47a0c97453fd1642daca7c342122e0c88bcd0c34fc88857c2e44c3163dfb", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x26", + "max_fee": "0x2bb0661f6c19e", + "sender_address": "0xa9910cf547a1f1e07c96ddfd865d3838dbb7adb4546fff16d944c0e36368c2", + "signature": [ + "0x1", + "0x42866e9a935ac177b6358b0450af380e95512472ea7606190dbbc591c8ddb7f", + "0x683b07bceed1d871ec0b4a530987901ccd65231345cbcd12679c7345354a474" + ], + "calldata": [ + "0x1", + "0x38925b0bcf4dce081042ca26a96300d9e181b910328db54a6c89e5451503f5", + "0x39b9c84d6a72745116ecdbd7f122af6d51a7183b6e764d621583713bcceb8cd", + "0x5", + "0x2ed8f2415d626661678b075d24dee9f2853e1bfbd45660ad78d97a0930c6699", + "0x4f5c4a", + "0x4f8364", + "0x112b0e3c72664", + "0x1" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x2bd47a0c97453fd1642daca7c342122e0c88bcd0c34fc88857c2e44c3163dfb", + "actual_fee": { + "amount": "0x1d20b7573fb2e", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x38925b0bcf4dce081042ca26a96300d9e181b910328db54a6c89e5451503f5", + "0xa9910cf547a1f1e07c96ddfd865d3838dbb7adb4546fff16d944c0e36368c2", + "0x44ea53586ea3df58", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x38925b0bcf4dce081042ca26a96300d9e181b910328db54a6c89e5451503f5", + "0xa9910cf547a1f1e07c96ddfd865d3838dbb7adb4546fff16d944c0e36368c2", + "0xa9d412", + "0x0" + ] + }, + { + "from_address": "0x38925b0bcf4dce081042ca26a96300d9e181b910328db54a6c89e5451503f5", + "keys": [ + "0x3dfe6670b0f4e60f951b8a326e7467613b2470d81881ba2deb540262824f1e", + "0xa9910cf547a1f1e07c96ddfd865d3838dbb7adb4546fff16d944c0e36368c2", + "0x2ed8f2415d626661678b075d24dee9f2853e1bfbd45660ad78d97a0930c6699", + "0x4f5c4a", + "0x4f8364", + "0x0" + ], + "data": [ + "0x112b0e3c72664", + "0x1", + "0x44ea53586ea3df58", + "0x0", + "0x1", + "0xa9d412", + "0x0", + "0x1", + "0x0", + "0x0", + "0x165", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0xa9910cf547a1f1e07c96ddfd865d3838dbb7adb4546fff16d944c0e36368c2", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1d20b7573fb2e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 73476, + "pedersen_builtin_applications": 45, + "range_check_builtin_applications": 5224, + "bitwise_builtin_applications": 128, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0xfb1b6e7fe9254f2daa6b0743bdb19581fccdc9627f3e754571f49ca111a12e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x13", + "max_fee": "0x9d3e338d15a7", + "sender_address": "0x370a75cf07469ff83287cf4cdf1f06db334196e118a308dd3067ff72ae65db1", + "signature": [ + "0x49900bd5221a162b7213e5bcd6af3fd6cc5e3edb4014d6f5e0e449c3f422cfb", + "0x1cd40bbbb538859e524be018a1ca674103ae4507fc815fa05e69492add7465c" + ], + "calldata": [ + "0x2", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x19252b1deef483477c4d30cfcc3e5ed9c82fafea44669c182a45a01b4fdb97a", + "0x1e8da789118000", + "0x0", + "0x22993789c33e54e0d296fc266a9c9a2e9dcabe2e48941f5fa1bd5692ac4a8c4", + "0x54cd8cfffad75abfde6525af316085ef4b5d27975ed55042d341c61d19c7a4", + "0x1", + "0x3def36" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0xfb1b6e7fe9254f2daa6b0743bdb19581fccdc9627f3e754571f49ca111a12e", + "actual_fee": { + "amount": "0x4ef58b79aaaa", + "unit": "WEI" + }, + "execution_status": "REVERTED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x370a75cf07469ff83287cf4cdf1f06db334196e118a308dd3067ff72ae65db1", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ef58b79aaaa", + "0x0" + ] + } + ], + "revert_reason": "Insufficient fee token balance. Fee: Fee(86816513960618), balance: low/high StarkFelt(\"0x00000000000000000000000000000000000000000000000000003e6adbfd7fda\")/StarkFelt(\"0x0000000000000000000000000000000000000000000000000000000000000000\").", + "execution_resources": { + "steps": 8279, + "pedersen_builtin_applications": 16, + "range_check_builtin_applications": 108, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0xd378d8ceb8d56549f4c36a548cc0cbb4f6137ab7f3725c8a4e6c94a1caea50", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9d", + "max_fee": "0x261cb7e0155b1", + "sender_address": "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "signature": [ + "0x1", + "0x6035d83bf87a29f8e54faba748c843843d9999e1268f1e00a3277e91d50a0b9", + "0x60ec5fd3aea1c1ece387ddedc12d0d4d92e8aeda8eb2e5f3b8f19c8d5b744b6" + ], + "calldata": [ + "0x3", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x1746604264c203", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x1312d00", + "0x0", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xc", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x1746604264c203", + "0x0", + "0x1312d00", + "0x0", + "0x16cf355fc92488", + "0x0", + "0x12b1280", + "0x0", + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x65dc9536" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0xd378d8ceb8d56549f4c36a548cc0cbb4f6137ab7f3725c8a4e6c94a1caea50", + "actual_fee": { + "amount": "0x158745422ba9f", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x1746604264c203", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x1312d00", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x6461fa4aca", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x1745fbe06a7739", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x1312d00", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x3c1d927af2", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x14f44b6d6be20c6d21", + "0x0", + "0x112c4280729", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16" + ], + "data": [ + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x1745fbe06a7739", + "0x0", + "0x1312d00", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7e09d1a5564c63970496858b954f95fc116e9824d082234cb98332980830e26", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x158745422ba9f", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 38414, + "pedersen_builtin_applications": 46, + "range_check_builtin_applications": 1121, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x6e5f56db2c932edc76840f1c763730bb8e8e3f8360030bb70948137760afdfa", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x47", + "max_fee": "0x1076281e9ffb5", + "sender_address": "0x8a5cc272f0bab5d22e28874a66119f3ecb0df718e6ad73e4252e0f94b85b1b", + "signature": [ + "0x7c38383bcaf510d7b928f6081c5087b940522a7cc2b1e9f874882f3ba61191b", + "0x263de483bdadc28a3356950fbb20114081e97df18d28aba558c212e20679afc" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x60fcf831782a8339d7cc4994b3ea9ea6ca229f744a6d1c67f165ba1776cfda7", + "0x3b61f6f5bb64128000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x6e5f56db2c932edc76840f1c763730bb8e8e3f8360030bb70948137760afdfa", + "actual_fee": { + "amount": "0x83f94a603f8e", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x8a5cc272f0bab5d22e28874a66119f3ecb0df718e6ad73e4252e0f94b85b1b", + "0x60fcf831782a8339d7cc4994b3ea9ea6ca229f744a6d1c67f165ba1776cfda7", + "0x3b61f6f5bb64128000", + "0x0" + ] + }, + { + "from_address": "0x8a5cc272f0bab5d22e28874a66119f3ecb0df718e6ad73e4252e0f94b85b1b", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x6e5f56db2c932edc76840f1c763730bb8e8e3f8360030bb70948137760afdfa" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x8a5cc272f0bab5d22e28874a66119f3ecb0df718e6ad73e4252e0f94b85b1b", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x83f94a603f8e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8619, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x6061bede02f2d83917d391037bc2f7935a3d6a7d179aadee8943af2d99dd4e5", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x2c", + "max_fee": "0x767051367fff", + "sender_address": "0x6567b7f9d60c3825106079f9c35582cd46588a75abf8471185db30571656288", + "signature": [ + "0x1", + "0x2a133be49e83bb7a964f133fd6dd8eccee449c6b1a4e24a3e7434fd76565819", + "0x759af52b1183b46658642361e5cc78d1d729eb21775d2695e865963ea867a27" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x79aa46286a54221c7810d4f6582bee245c27eec68fb8ccd0567020037a2f3fa", + "0x231dda316982dd", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x6061bede02f2d83917d391037bc2f7935a3d6a7d179aadee8943af2d99dd4e5", + "actual_fee": { + "amount": "0x4f0b27e818f7", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6567b7f9d60c3825106079f9c35582cd46588a75abf8471185db30571656288", + "0x79aa46286a54221c7810d4f6582bee245c27eec68fb8ccd0567020037a2f3fa", + "0x231dda316982dd", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6567b7f9d60c3825106079f9c35582cd46588a75abf8471185db30571656288", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4f0b27e818f7", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 10804, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 201, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x29f6e1fe4f4058843e0b882e43bcfb8a88236946aa9fa9985f5d3c0420c893c", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x79", + "sender_address": "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "signature": [ + "0x363eb32326f436b769ddfa05986a0840f20a76df28aa9babc7358f32f915e38", + "0x1676396de53cd6a54e834fef8df4e6b4faeff37eed41cec23d8ad5918f48fb8" + ], + "calldata": [ + "0x3", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0xcc953a1dd2c2b", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0xa7d8c0", + "0x0", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xc", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0xcc953a1dd2c2b", + "0x0", + "0xa7d8c0", + "0x0", + "0xcb8f5c62cb4e8", + "0x0", + "0xa701e8", + "0x0", + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "0x65dc8be1" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x529b", + "max_price_per_unit": "0x5bff178b2e4d" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x29f6e1fe4f4058843e0b882e43bcfb8a88236946aa9fa9985f5d3c0420c893c", + "actual_fee": { + "amount": "0x9e802f80d5466d4", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0xcc953a1dd2c2b", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0xa7d8c0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "0x5ef8800d242c5d5e218605d6a10e81449529d4144185f95bf4b8fb669424516", + "0xcc953a1dd2c2b", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x1", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "0x5ef8800d242c5d5e218605d6a10e81449529d4144185f95bf4b8fb669424516", + "0xa7d8bf", + "0x0" + ] + }, + { + "from_address": "0x5ef8800d242c5d5e218605d6a10e81449529d4144185f95bf4b8fb669424516", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x0", + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0" + ], + "data": [ + "0x2e35d7776b", + "0x0" + ] + }, + { + "from_address": "0x5ef8800d242c5d5e218605d6a10e81449529d4144185f95bf4b8fb669424516", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0xa9af879fe36f03b38", + "0x0", + "0x8b373ed92e", + "0x0" + ] + }, + { + "from_address": "0x5ef8800d242c5d5e218605d6a10e81449529d4144185f95bf4b8fb669424516", + "keys": [ + "0x4da1c5aad76bc7515d0b2a3e1701f34bb32eef406856809bce5ba13f3151de" + ], + "data": [ + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0xcc953a1dd2c2b", + "0x0", + "0xa7d8bf", + "0x0" + ] + }, + { + "from_address": "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x29f6e1fe4f4058843e0b882e43bcfb8a88236946aa9fa9985f5d3c0420c893c" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0xcc953a1dd2c2b", + "0x0", + "0xa7d8bf", + "0x0", + "0x2e35d7776b", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x248d00e23fb48c0675cb1431b6da1fd4e7cce1071531518e26837f5b0740fb0", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x9e802f80d5466d4", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 34613, + "pedersen_builtin_applications": 44, + "range_check_builtin_applications": 879, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x73b1ac7e92a1339abb28421f5da055bddef69c7eb76108f523c44e3122fb64a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x7b", + "max_fee": "0x234fb9f718649", + "sender_address": "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "signature": [ + "0x3d0ca4abd7d904bf76bba765c2712f6bd290b7491649064ce7a2f58ed9486de", + "0x4a434b1bf63fb983f3bf06c804e7cb8e288e596daf9577b6b45df7bfa08f413" + ], + "calldata": [ + "0x2", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0xf96adf8657d79", + "0x0", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", + "0x7", + "0x379d766cdccff09e5a58f7c4784f02e662b1bf978df76093c54612edb2eb11b", + "0x0", + "0x6124fee993bc0000", + "0x0", + "0x0", + "0x668cb7382f7e63d33c2dd28", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x73b1ac7e92a1339abb28421f5da055bddef69c7eb76108f523c44e3122fb64a", + "actual_fee": { + "amount": "0x11ad4413c330d", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0xf96adf8657d79", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "0x6124fee993bc0000", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x2782fd63db3e", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0xf6f2afb01a23b", + "0x0" + ] + }, + { + "from_address": "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "keys": [ + "0xe316f0d9d2a3affa97de1d99bb2aac0538e2666d0d8545545ead241ef0ccab" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x2710", + "0xc8", + "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "0x6124fee993bc0000", + "0x0", + "0x1", + "0xf6f2afb01a23b", + "0x0", + "0x0", + "0x658797ec4deabcf12a7b20e", + "0x0", + "0x488e2ac2cb430a75f29", + "0xc6907" + ] + }, + { + "from_address": "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x73b1ac7e92a1339abb28421f5da055bddef69c7eb76108f523c44e3122fb64a" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x6", + "0x6124fee993bc0000", + "0x0", + "0x1", + "0xf6f2afb01a23b", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5e2485e8c477f157dc76429907e01749ed0b7cf55c69d17ad69d5e31a38bee5", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x11ad4413c330d", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 41394, + "pedersen_builtin_applications": 40, + "range_check_builtin_applications": 1948, + "bitwise_builtin_applications": 23, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x198a11fed1cd201eeebc18dc278655d822b5bea0074b4f3c8f0182117508403", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x6", + "max_fee": "0x3992be32e6ae8", + "sender_address": "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "signature": [ + "0x5105c15f4becc0144c70e5622a0ca5180b308eaa0fa532cbec2d07053def360", + "0x67b40fa353df882536147b75e3d7c479bb1b7016c26e2a50a3a7eac1b9b1356", + "0x62862fc0bc81123c3de22b5b6ee18e6595077616dd2a128e83ea8a25fcae46a", + "0x5db1c5b92292c38acc18c2df7ab354dd6927133a1410e96831b40dda0514b19" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x53444835ec580000", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0xaa2e12", + "0x0", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xe", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x0", + "0x1e", + "0x53444835ec580000", + "0x0", + "0xaa2e12", + "0x0", + "0x51c496c8689a0000", + "0x0", + "0xa71de1", + "0x0", + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x65dc8e24" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x198a11fed1cd201eeebc18dc278655d822b5bea0074b4f3c8f0182117508403", + "actual_fee": { + "amount": "0x20b1c890f3e82", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x53444835ec580000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0xaa2e12", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "0x53444835ec580000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "0xaa2e12", + "0x0" + ] + }, + { + "from_address": "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x7709c062f2f", + "0x0" + ] + }, + { + "from_address": "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x1077fec12a9294812759", + "0x0", + "0x21a89f4071", + "0x0" + ] + }, + { + "from_address": "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32" + ], + "data": [ + "0x53444835ec580000", + "0x0", + "0xaa2e12", + "0x0" + ] + }, + { + "from_address": "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x198a11fed1cd201eeebc18dc278655d822b5bea0074b4f3c8f0182117508403" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0x53444835ec580000", + "0x0", + "0xaa2e12", + "0x0", + "0x7709c062f2f", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5f5399afaf6adfb2e381c43499bef38c42f21de39c82845844b2525b5eca14e", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x20b1c890f3e82", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 48234, + "pedersen_builtin_applications": 55, + "range_check_builtin_applications": 1181, + "ec_op_builtin_applications": 6 + } + } + }, + { + "transaction": { + "transaction_hash": "0x383717d389067ed971239912a7fb9c56a8d7388f0c6327412810541fc321597", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xf24f", + "max_fee": "0x110d9316ec000", + "sender_address": "0x28ebd4daafaec7e29dad521f083fb7054d05d6571c9c5f13f55d9bad5333291", + "signature": [ + "0xf3cd52efed4760ff62386cd1cdd6314f5723851eed4adacb3c42d752c03181", + "0x17c607d9769563e5e211dc64ea431671edcc09e79e7614e2aaf5d343e82d4d1" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x101230f60d6b9c02d474e7d515af7fd24784cc78e9bc0cb1acc13373bdef779", + "0xb5e620f48000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x383717d389067ed971239912a7fb9c56a8d7388f0c6327412810541fc321597", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x28ebd4daafaec7e29dad521f083fb7054d05d6571c9c5f13f55d9bad5333291", + "0x101230f60d6b9c02d474e7d515af7fd24784cc78e9bc0cb1acc13373bdef779", + "0xb5e620f48000", + "0x0" + ] + }, + { + "from_address": "0x28ebd4daafaec7e29dad521f083fb7054d05d6571c9c5f13f55d9bad5333291", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x383717d389067ed971239912a7fb9c56a8d7388f0c6327412810541fc321597" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x28ebd4daafaec7e29dad521f083fb7054d05d6571c9c5f13f55d9bad5333291", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x1b3c8cbc84716ea543135caa21bb02ac4b418d628dbb99842c47bb832155099", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x46", + "sender_address": "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "signature": [ + "0x575fe3dfe92894093456a59a989cda8529cb21b0473bbb77dbcb47f028213bf", + "0x66e9a381e158b813d91c018e34b4e37bbe92f837dd8f0f405c711159078e875" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0xaf35029c214e80000", + "0x0", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0xc73f681176fc7b3f9693986fd7b14581e8d540519e27400e88b8713932be01", + "0x2", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0xaf35029c214e80000", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0x271680756697a04d1447ad4c21d53bdf15966bdc5b78bd52d4fc2153aa76bda", + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x3a9b", + "max_price_per_unit": "0x5bff178b6a33" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x1b3c8cbc84716ea543135caa21bb02ac4b418d628dbb99842c47bb832155099", + "actual_fee": { + "amount": "0xa25765cc787f6b0", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0xaf35029c214e80000", + "0x0" + ] + }, + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0x30c296ae369716818de77cb5b71ce9cda7cc2c0e8456f474e0abb1ae8d017da" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x33b2f26d1353566a66e6c12", + "0x33b3f896ad2877eeda52496" + ] + }, + { + "from_address": "0x6d8fa671ef84f791b7f601fa79fea8f6ceb70b5fa84189e3159d532162efc21", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x439d7ec4abbb69aaa8fa5acd9a682f118823f49f2542bc7673a9792ddff9fc2", + "0x33de4eed9cb1d", + "0x0" + ] + }, + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0xa2fb82b5656725dad81c7112b2c4ef0119096677c3c0fd82632d0a74f07666" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x91a5c5b9570c812351ca", + "0x8db3b9a3bec2b537c9985" + ] + }, + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0x9149d2123147c5f43d258257fef0b7b969db78269369ebcf5ebb9eef8592f2" + ], + "data": [ + "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0xaf35029c214e80000" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0xaf35029c214e80000", + "0x0" + ] + }, + { + "from_address": "0x6d8fa671ef84f791b7f601fa79fea8f6ceb70b5fa84189e3159d532162efc21", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "0xaf35029c214e80000", + "0x0" + ] + }, + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0x2324062bde6ebb76ffd17d55fee62fee62a4877588eb02524b19c091983b365" + ], + "data": [ + "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d" + ] + }, + { + "from_address": "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x1b3c8cbc84716ea543135caa21bb02ac4b418d628dbb99842c47bb832155099" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x21e08a229ec42c78e3d4cb07a8fd494f0bd19828d7bd4f70307a63ec2a93d2d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xa25765cc787f6b0", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 40645, + "pedersen_builtin_applications": 51, + "range_check_builtin_applications": 1698, + "bitwise_builtin_applications": 3, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x77b56c36e5f903efd6c735a587390a1114a2466a6511db1737a4bb19944fc93", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x89", + "max_fee": "0x3469c453c2ff6", + "sender_address": "0x3121820711902cb9433481f1fa2fdf8404f7a0ce896bfbfcb268af52c06a894", + "signature": [ + "0x1", + "0xb9b1c260000c502bb22f363092d88afc5591135f04019bf17b4d74ca6619e4", + "0x3f52e4397fa0da734bcd9d783b73215643c633b1c79c0debeebd9049b6c5c82" + ], + "calldata": [ + "0x5", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x1ec7d16e909029", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x17d7840", + "0x0", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x38c3244e92da3bec5e017783c62779e3fd5d13827570dc093ab2a55f16d41b9", + "0xa", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x20c49ba5e353f80000000000000000", + "0x3e8", + "0x0", + "0x12b6488", + "0x1", + "0x12ae788", + "0x1", + "0x31eaf08acb3a", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x292f3f4df7749c2ae1fdc3379303c2e6caa9bbc3033ee67709fde5b77f65836", + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x292f3f4df7749c2ae1fdc3379303c2e6caa9bbc3033ee67709fde5b77f65836", + "0x1", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x77b56c36e5f903efd6c735a587390a1114a2466a6511db1737a4bb19944fc93", + "actual_fee": { + "amount": "0x22f28754138f1", + "unit": "WEI" + }, + "execution_status": "REVERTED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3121820711902cb9433481f1fa2fdf8404f7a0ce896bfbfcb268af52c06a894", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x22f28754138f1", + "0x0" + ] + } + ], + "revert_reason": "Insufficient fee token balance. Fee: Fee(614800765827313), balance: low/high StarkFelt(\"0x0000000000000000000000000000000000000000000000000000eec0a85b7d22\")/StarkFelt(\"0x0000000000000000000000000000000000000000000000000000000000000000\").", + "execution_resources": { + "steps": 44897, + "pedersen_builtin_applications": 16, + "range_check_builtin_applications": 171, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x357986f7462d3ab9a2ed1cdbe168cac1931d5d1176c6f28dc13bcabe2a6b733", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1a", + "max_fee": "0x75add1549f4a", + "sender_address": "0x6ceb4532b0c8f1c800697714056a5a126a576c5fd73a1ff971b6b8d103cd903", + "signature": [ + "0x7066135dc33439fbfae4c3a461e24e465db0905ee0d3e535ec3881e16e29d10", + "0x113fc06354d624342ebb15a891d4b9adea159edad2737a3641b5b7a93b5a966" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7305905210e98ac3cccf1047b9ecc877696be04ea0b8ed1477136b8a2f12a02", + "0x5e95fcac4efda", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x357986f7462d3ab9a2ed1cdbe168cac1931d5d1176c6f28dc13bcabe2a6b733", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6ceb4532b0c8f1c800697714056a5a126a576c5fd73a1ff971b6b8d103cd903", + "0x7305905210e98ac3cccf1047b9ecc877696be04ea0b8ed1477136b8a2f12a02", + "0x5e95fcac4efda", + "0x0" + ] + }, + { + "from_address": "0x6ceb4532b0c8f1c800697714056a5a126a576c5fd73a1ff971b6b8d103cd903", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x357986f7462d3ab9a2ed1cdbe168cac1931d5d1176c6f28dc13bcabe2a6b733" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6ceb4532b0c8f1c800697714056a5a126a576c5fd73a1ff971b6b8d103cd903", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8619, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x73c8bc41ef974f14336e9e391b84a65b29312842ca11e121123762b35d2e3fe", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17", + "max_fee": "0x75add1549f4a", + "sender_address": "0x2202d7e047441f41180437e092b582cecac08f1e6c055a996b39051d4b5a74", + "signature": [ + "0x10dea32a5675093c72c596ce347a60f8f1745ae06a1b898cc6b28981463a3f3", + "0x60114537b61cf96cfe1ad94d0f7f77d0a7a218bdd1e6306ced65adaf5753fe3" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7305905210e98ac3cccf1047b9ecc877696be04ea0b8ed1477136b8a2f12a02", + "0x66decb9e6a7f6", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x73c8bc41ef974f14336e9e391b84a65b29312842ca11e121123762b35d2e3fe", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2202d7e047441f41180437e092b582cecac08f1e6c055a996b39051d4b5a74", + "0x7305905210e98ac3cccf1047b9ecc877696be04ea0b8ed1477136b8a2f12a02", + "0x66decb9e6a7f6", + "0x0" + ] + }, + { + "from_address": "0x2202d7e047441f41180437e092b582cecac08f1e6c055a996b39051d4b5a74", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x73c8bc41ef974f14336e9e391b84a65b29312842ca11e121123762b35d2e3fe" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2202d7e047441f41180437e092b582cecac08f1e6c055a996b39051d4b5a74", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x73c0f6df904a7f9eecd3ec8d674146fc792728e8d3189c665a0e02e3e88e7b", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x105", + "max_fee": "0x39f604cd23d3b", + "sender_address": "0x2eced80e85a77d078a236782a34d6b33af8e9ed4a1fcb4c3724fc1fded959d9", + "signature": [ + "0x1", + "0xcf3e354a3f6ed2652907785c811fa9903dca2158864aae15b1c038df5e37e", + "0x4dec5c183ce4aa6f355334bff6cbcbb6c4e68800f062262e5b6b497dc0a1e86" + ], + "calldata": [ + "0x2", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x15511cc3694f64379908437d6d64458dc76d02482052bfb8a5b33a72c054c77", + "0xe", + "0x6a3ad", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x68db8bac710cb4000000000000000", + "0xc8", + "0x0", + "0x12b2ab8", + "0x1", + "0x12b11b8", + "0x1", + "0xcd5a081eee6a", + "0x0", + "0x0", + "0x1", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x2178770003efad3e990ae8d3f30162f8d8e664e69af6543cf8ed6755da17c90", + "0x1", + "0x6a3ad" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x73c0f6df904a7f9eecd3ec8d674146fc792728e8d3189c665a0e02e3e88e7b", + "actual_fee": { + "amount": "0x26a4e9b80725b", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "keys": [ + "0x96982abd597114bdaa4a60612f87fabfcc7206aa12d61c50e7ba1e6c291100" + ], + "data": [ + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x68db8bac710cb4000000000000000", + "0xc8", + "0x0", + "0x6a3ad", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x12b2ab8", + "0x1", + "0x12b11b8", + "0x1", + "0x0", + "0x1", + "0x0", + "0x1" + ] + }, + { + "from_address": "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "keys": [ + "0x5dacf59794364ad1555bb3c9b2346afa81e57e5c19bb6bae0d22721c96c4e5" + ], + "data": [ + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x68db8bac710cb4000000000000000", + "0xc8", + "0x0", + "0x6a3ad", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x12b2ab8", + "0x1", + "0x12b11b8", + "0x1", + "0x97b0193fb2", + "0x1", + "0x7d0", + "0x1" + ] + }, + { + "from_address": "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "keys": [ + "0x3a7adca3546c213ce791fabf3b04090c163e419c808c9830fb343a4a395946e" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x68db8bac710cb4000000000000000", + "0xc8", + "0x0", + "0x6a3ad", + "0x12b2ab8", + "0x1", + "0x12b11b8", + "0x1", + "0xcd5a081eee6a", + "0x1", + "0x1724b72a2ece1c", + "0x1", + "0x131252f", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x2eced80e85a77d078a236782a34d6b33af8e9ed4a1fcb4c3724fc1fded959d9", + "0x1724b72a2ece1c", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x2eced80e85a77d078a236782a34d6b33af8e9ed4a1fcb4c3724fc1fded959d9", + "0x131252f", + "0x0" + ] + }, + { + "from_address": "0x7b696af58c967c1b14c9dde0ace001720635a660a8e90c565ea459345318b30", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2eced80e85a77d078a236782a34d6b33af8e9ed4a1fcb4c3724fc1fded959d9", + "0x0", + "0x6a3ad", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2eced80e85a77d078a236782a34d6b33af8e9ed4a1fcb4c3724fc1fded959d9", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x26a4e9b80725b", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 63797, + "pedersen_builtin_applications": 197, + "range_check_builtin_applications": 2438, + "bitwise_builtin_applications": 54, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x67a495e30fd2e2ad18268dc84a0fed4cd9ac1419ec3ae69cb09585eb928b730", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x11", + "max_fee": "0x7619df7cc6cb", + "sender_address": "0x7cd9f3419e1e803eb43d3fa49c986ae8f0d2f5661f8319ab8e8ab6935a30d9d", + "signature": [ + "0x399383d1d9135afd6171d4446c0cace4441ad0c449b115c200fe600fea07d90", + "0x369de48cac588b080b2f3d8fd0f6ad06ea2bebabcc7843b2df16a8f11ccd3a3" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7a3b3483adc1faef30a4be754d687a84bd535492c742207dbfa8bc9bfce2a76", + "0x148a644b3d20f2", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x67a495e30fd2e2ad18268dc84a0fed4cd9ac1419ec3ae69cb09585eb928b730", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7cd9f3419e1e803eb43d3fa49c986ae8f0d2f5661f8319ab8e8ab6935a30d9d", + "0x7a3b3483adc1faef30a4be754d687a84bd535492c742207dbfa8bc9bfce2a76", + "0x148a644b3d20f2", + "0x0" + ] + }, + { + "from_address": "0x7cd9f3419e1e803eb43d3fa49c986ae8f0d2f5661f8319ab8e8ab6935a30d9d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x67a495e30fd2e2ad18268dc84a0fed4cd9ac1419ec3ae69cb09585eb928b730" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7cd9f3419e1e803eb43d3fa49c986ae8f0d2f5661f8319ab8e8ab6935a30d9d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8619, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x924dc80371aaed39bc7a6d07bb1bd21a05ad1489718efdb2b5f0cdf100517e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1e66", + "max_fee": "0x27ca57357c000", + "sender_address": "0x20cdf29e127c29e4782f47c0465fbdd6866e25289c0514b89651d11e315ed48", + "signature": [ + "0x655fdd477239a861d36b05a6fa2c1525f7cb42d52b5a38210c48fb070132585", + "0x20e60c53660e7b528bcebe2814155a1e3f4168d1a5aa05db57887178e215f9" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x0", + "0x3", + "0x3", + "0x6190a6edde00fa70308be367246d324fd6804ec32ff6e75d93276146377f1b6", + "0x2f2e16f29e000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x924dc80371aaed39bc7a6d07bb1bd21a05ad1489718efdb2b5f0cdf100517e", + "actual_fee": { + "amount": "0x4e97e59b2207", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x20cdf29e127c29e4782f47c0465fbdd6866e25289c0514b89651d11e315ed48", + "0x6190a6edde00fa70308be367246d324fd6804ec32ff6e75d93276146377f1b6", + "0x2f2e16f29e000", + "0x0" + ] + }, + { + "from_address": "0x20cdf29e127c29e4782f47c0465fbdd6866e25289c0514b89651d11e315ed48", + "keys": [ + "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" + ], + "data": [ + "0x924dc80371aaed39bc7a6d07bb1bd21a05ad1489718efdb2b5f0cdf100517e", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x20cdf29e127c29e4782f47c0465fbdd6866e25289c0514b89651d11e315ed48", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4e97e59b2207", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 7634, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 170, + "ecdsa_builtin_applications": 1 + } + } + }, + { + "transaction": { + "transaction_hash": "0x11ef69d75f1e53ea722337561b4a8aa3586a91a7fa00a62f11c5eed7ff3b60e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x33", + "max_fee": "0x2359a1a58da47", + "sender_address": "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "signature": [ + "0x7bfe9449eaa5be881b3ef9d4f63575762468a8691b00b31a7d3f28744bf6abc", + "0x17328b8ece7d670bd43c9683232bd775424cdbcdc8ae80706a7d4b2004d8814" + ], + "calldata": [ + "0x2", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x989680", + "0x0", + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x1171593aa5bdadda4d6b0efde6cc94ee7649c3163d5efeb19da6c16d63a2a63", + "0x12", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x989680", + "0x0", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xb95726ef85338", + "0x0", + "0xb869ea94b903e", + "0x0", + "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "0x0", + "0x3e90652c3fe1f5f42578ffefca7fb00c88d4d18b5fb2bbeeee1a0d0d7d7d82d", + "0x1", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x64", + "0x1", + "0x1" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x11ef69d75f1e53ea722337561b4a8aa3586a91a7fa00a62f11c5eed7ff3b60e", + "actual_fee": { + "amount": "0x11b391b3f8b1f", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x989680", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x989680", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x989680", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x989680", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x10884171baf1914edc28d7afb619b40a4051cfae78a094a55d230f19e944a28", + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0xb95fc81a6abac", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x360fb3a51bd291e5db0892b6249918a5689bc61760adcb350fe39cd725e1d22", + "0x97dbc6bd93", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "0xb9564a5dfee19", + "0x0" + ] + }, + { + "from_address": "0x4270219d365d6b017231b52e92b3fb5d7c8378b05e9abc97724537a80e93b0f", + "keys": [ + "0xe316f0d9d2a3affa97de1d99bb2aac0538e2666d0d8545545ead241ef0ccab" + ], + "data": [ + "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x989680", + "0x0", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xb9564a5dfee19", + "0x0", + "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6" + ] + }, + { + "from_address": "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x11ef69d75f1e53ea722337561b4a8aa3586a91a7fa00a62f11c5eed7ff3b60e" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x336091aa0ab9065bd91f76f79f8c9229b4b57e48ec46d5e4c9ca310fbca7ad6", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x11b391b3f8b1f", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 44130, + "pedersen_builtin_applications": 60, + "range_check_builtin_applications": 1231, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x6ac9de214fe4b7a9344bc99591f0fa2b68c438465fc0b3773c93d767f17719d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1a", + "max_fee": "0x9ddcaeec9fb8", + "sender_address": "0x2ed2e28287d311eec1afda06d6bac632dabc8bfc4b671662f58eb58034f4abe", + "signature": [ + "0x65d13bf484c38f8f116ba352fa226a916c4f270ed142b8a2032a0e17f2a3b00", + "0x5ae06c45ea4afd72fc8d83f73ebdd4ee6103a4f4a9e32260f584d0f2fab22f1" + ], + "calldata": [ + "0x2", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x173f81c529191726c6e7287e24626fe24760ac44dae2a1f7e02080230f8458b", + "0x4f0d2aa6e5d33b", + "0x0", + "0x173f81c529191726c6e7287e24626fe24760ac44dae2a1f7e02080230f8458b", + "0x68bcbdba7cc8cac2832d23e2c32e9eec39a9f1d03521eff5dff800a62725fa", + "0x5", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x7b393627bd514d2aa4c83e9f0c468939df15ea3c29980cd8e7be3ec847795f0", + "0x4f0d2aa6e5d33b", + "0x0", + "0x574f52abf0f2b95efe6f8d3f90440fdfcf86e1db" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x6ac9de214fe4b7a9344bc99591f0fa2b68c438465fc0b3773c93d767f17719d", + "actual_fee": { + "amount": "0x4f4bfd3363de", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x2ed2e28287d311eec1afda06d6bac632dabc8bfc4b671662f58eb58034f4abe", + "0x173f81c529191726c6e7287e24626fe24760ac44dae2a1f7e02080230f8458b", + "0x4f0d2aa6e5d33b", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x2ed2e28287d311eec1afda06d6bac632dabc8bfc4b671662f58eb58034f4abe", + "0x173f81c529191726c6e7287e24626fe24760ac44dae2a1f7e02080230f8458b", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2ed2e28287d311eec1afda06d6bac632dabc8bfc4b671662f58eb58034f4abe", + "0x7b393627bd514d2aa4c83e9f0c468939df15ea3c29980cd8e7be3ec847795f0", + "0x4f0d2aa6e5d33b", + "0x0" + ] + }, + { + "from_address": "0x2ed2e28287d311eec1afda06d6bac632dabc8bfc4b671662f58eb58034f4abe", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x6ac9de214fe4b7a9344bc99591f0fa2b68c438465fc0b3773c93d767f17719d" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2ed2e28287d311eec1afda06d6bac632dabc8bfc4b671662f58eb58034f4abe", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4f4bfd3363de", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 12617, + "pedersen_builtin_applications": 26, + "range_check_builtin_applications": 255, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x54acab94383f32cd7b0bd36ff1fe0ed5e4b5836eaab4c14764d2a4a598b1613", + "type": "INVOKE", + "version": "0x3", + "nonce": "0xe1", + "sender_address": "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "signature": [ + "0x617f6918963e5c51ee727cc095cfb157b0167e940278709eac635928a792621", + "0x7af26f0f78b2c26545e9654b7fc38f0537a70e25fb30ebb80b501477733f731" + ], + "calldata": [ + "0x2", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2029b88cbc", + "0x0", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2e875d1c86df033547c5c7839d8b6e3641de29ee1f708bbce99743b34272ada", + "0xa", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x2029b88cbc", + "0x0", + "0xc53dd608b85a4", + "0x0", + "0xa1a30b", + "0x0", + "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "0x65dc950c" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x4c1b", + "max_price_per_unit": "0x5bff178bdd54" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x54acab94383f32cd7b0bd36ff1fe0ed5e4b5836eaab4c14764d2a4a598b1613", + "actual_fee": { + "amount": "0x92062f0760fb52e", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2029b88cbc", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x2029b88cbc", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x0", + "0x2029b88cbc", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "0xc73a32f3d0b72", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "0xa34665", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x14f43ef9c8b2cf61af", + "0x0", + "0x112c384c0c4", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744" + ], + "data": [ + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0xc73a32f3d0b72", + "0x0", + "0xa34665", + "0x0", + "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca" + ] + }, + { + "from_address": "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x54acab94383f32cd7b0bd36ff1fe0ed5e4b5836eaab4c14764d2a4a598b1613" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x4", + "0xc73a32f3d0b72", + "0x0", + "0xa34665", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3f00d09fb5f87865837be5bf894b9c2dea0306041f1da41e97b4a9db8e3b1ca", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x92062f0760fb52e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 32872, + "pedersen_builtin_applications": 43, + "range_check_builtin_applications": 858, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x5ed171b5c6ad5847443c1dca17ce528bcd30e199285f3d26937625d56249a7c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xf250", + "max_fee": "0x110d9316ec000", + "sender_address": "0x28ebd4daafaec7e29dad521f083fb7054d05d6571c9c5f13f55d9bad5333291", + "signature": [ + "0x5e85eac834fdb1e83c923c9ebe0a8791992929de55faa45ef911e9047538fd4", + "0x30256d171df915ea79728c99a8c1ecf79445af07343e12cd28bd510c81cadfd" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x11f4bbfa1054eb9e0e66ac4fc411dbc831e21497170ed9441dcb5cd4fe0a4c8", + "0xb5e620f48000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5ed171b5c6ad5847443c1dca17ce528bcd30e199285f3d26937625d56249a7c", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x28ebd4daafaec7e29dad521f083fb7054d05d6571c9c5f13f55d9bad5333291", + "0x11f4bbfa1054eb9e0e66ac4fc411dbc831e21497170ed9441dcb5cd4fe0a4c8", + "0xb5e620f48000", + "0x0" + ] + }, + { + "from_address": "0x28ebd4daafaec7e29dad521f083fb7054d05d6571c9c5f13f55d9bad5333291", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x5ed171b5c6ad5847443c1dca17ce528bcd30e199285f3d26937625d56249a7c" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x28ebd4daafaec7e29dad521f083fb7054d05d6571c9c5f13f55d9bad5333291", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x463f2a92e9e8d51b20f2d9267612117b3743aa1c43a6d99b654585a219285fd", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x35", + "max_fee": "0x1c7447261a41d", + "sender_address": "0x2cc1a2bb96ae7b9db817c0e5f6eb00225089c7e43a592f1f514e07075b3d711", + "signature": [ + "0x1", + "0x270c024ee3fb6949cbd6ed24e511b02caf867884063102253541b46dfeee78d", + "0x2380a6d5b99092463458efe7fe6ff5048dbcdeda82ad3db08d7d6813245c725" + ], + "calldata": [ + "0x1", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0x275dc81fcd5c700205ff6dc320e9d54ed3f0ace21177d591d6d5d259ee1d7c2", + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x463f2a92e9e8d51b20f2d9267612117b3743aa1c43a6d99b654585a219285fd", + "actual_fee": { + "amount": "0x12f915f35619c", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0x30c296ae369716818de77cb5b71ce9cda7cc2c0e8456f474e0abb1ae8d017da" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x33b2f26d1353566a66e6c12", + "0x33b3f896ad2877eeda52496" + ] + }, + { + "from_address": "0x6d8fa671ef84f791b7f601fa79fea8f6ceb70b5fa84189e3159d532162efc21", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2cc1a2bb96ae7b9db817c0e5f6eb00225089c7e43a592f1f514e07075b3d711", + "0x0", + "0x605d431e3fe93a743", + "0x0" + ] + }, + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0xa2fb82b5656725dad81c7112b2c4ef0119096677c3c0fd82632d0a74f07666" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x91a620f9d60ee895bf07", + "0x8db3e6078e47767748eab" + ] + }, + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0x2eed7e29b3502a726faf503ac4316b7101f3da813654e8df02c13449e03da8" + ], + "data": [ + "0x2cc1a2bb96ae7b9db817c0e5f6eb00225089c7e43a592f1f514e07075b3d711", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x605d431e3fe93a743" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0x2cc1a2bb96ae7b9db817c0e5f6eb00225089c7e43a592f1f514e07075b3d711", + "0x605d431e3fe93a743", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2cc1a2bb96ae7b9db817c0e5f6eb00225089c7e43a592f1f514e07075b3d711", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x12f915f35619c", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 30775, + "pedersen_builtin_applications": 39, + "range_check_builtin_applications": 936, + "bitwise_builtin_applications": 3, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x4c89b898decb59aa85f6b65bb823773f30324a6767847d1e85ddd031779e861", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x3f", + "max_fee": "0xc64c614a1889", + "sender_address": "0x6fefdc35aed99ce20d1b796e035f41ddf7a3b98d79becc11d0745c6f973761f", + "signature": [ + "0x1", + "0x617096981778a3d54eb6c5ea5499f3fd2afe2756f3709a55146be6b8f1590af", + "0x2c53032a9da57049458a6730972e4781fc522cb1f449566e7a07d0752e86bd" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x5fa7b30af1d96bf64aa0d2f6096dfdb6d16d406cb65056ae8051dbbf2cd9c45", + "0x219c3a7b1966300000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x4c89b898decb59aa85f6b65bb823773f30324a6767847d1e85ddd031779e861", + "actual_fee": { + "amount": "0x844887f52953", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6fefdc35aed99ce20d1b796e035f41ddf7a3b98d79becc11d0745c6f973761f", + "0x5fa7b30af1d96bf64aa0d2f6096dfdb6d16d406cb65056ae8051dbbf2cd9c45", + "0x219c3a7b1966300000", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6fefdc35aed99ce20d1b796e035f41ddf7a3b98d79becc11d0745c6f973761f", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x844887f52953", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 10804, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 201, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x5a96ce75864ea1d4b1ebf4af2fa20f950054a8ca10a0ee778545e09ca6fee47", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x2c", + "max_fee": "0x7619df7cc6cb", + "sender_address": "0x31ecd5b61bfb240dfe3db4fce80a049ac492c2146ff69d35822e63699b99aed", + "signature": [ + "0x6781aff50d28eed5a50e15238674d4aadadbf8b3f823940e69097e349689bfa", + "0x32ccd494f09e1da20aceb9b817f019946d7fb279d419be4d75fe3e271dec7be" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x0", + "0x3", + "0x3", + "0x514f4756889b21a0ad179ed264ad0d03408c78018a9f5ae4e57499fe763ec6f", + "0x8ecd2e0a83b26", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5a96ce75864ea1d4b1ebf4af2fa20f950054a8ca10a0ee778545e09ca6fee47", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x31ecd5b61bfb240dfe3db4fce80a049ac492c2146ff69d35822e63699b99aed", + "0x514f4756889b21a0ad179ed264ad0d03408c78018a9f5ae4e57499fe763ec6f", + "0x8ecd2e0a83b26", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x31ecd5b61bfb240dfe3db4fce80a049ac492c2146ff69d35822e63699b99aed", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8707, + "pedersen_builtin_applications": 21, + "range_check_builtin_applications": 178, + "ecdsa_builtin_applications": 1 + } + } + }, + { + "transaction": { + "transaction_hash": "0x6b925a3ad4af6b31d028991ff743067863a2586b0015fb2ab838947a7be652c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x55", + "max_fee": "0x9ce7c18e3ae2", + "sender_address": "0x385cb00b90ae8cf2f25eb53d531f6a844720270a383b547d1c895a3804de667", + "signature": [ + "0x300c041fa21758a7d589f9d261fee146688746972d82f96c62d535922335b3b", + "0x4145a4d26add70544ee43e227ae8f1cbd9edf112e7e0260c8d2b51643f3b26c" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x6fb79d9d5827c4b7d0befe9dea28280e0698d2fa6d5bf8e649763b6f0fc386a", + "0x2b53d4d0ad67dc", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x6b925a3ad4af6b31d028991ff743067863a2586b0015fb2ab838947a7be652c", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x385cb00b90ae8cf2f25eb53d531f6a844720270a383b547d1c895a3804de667", + "0x6fb79d9d5827c4b7d0befe9dea28280e0698d2fa6d5bf8e649763b6f0fc386a", + "0x2b53d4d0ad67dc", + "0x0" + ] + }, + { + "from_address": "0x385cb00b90ae8cf2f25eb53d531f6a844720270a383b547d1c895a3804de667", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x6b925a3ad4af6b31d028991ff743067863a2586b0015fb2ab838947a7be652c" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x385cb00b90ae8cf2f25eb53d531f6a844720270a383b547d1c895a3804de667", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x1aecaae30fc8c0c6158be086c900e53021301870a690044ce6f0d07e54b7f3e", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x10", + "sender_address": "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "signature": [ + "0x2c2c9e9205e5c44ccc8968a81f9175fb7f94afc341fd0dbc8d5b2a7712b8374", + "0x3330753bb1db2fac7cf710e401e68984e9edca1c3921c9444766a4fde3c815b" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0xddef8d98a9dd856c", + "0x0", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x22d5ec71b061e4", + "0x0", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xc", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xddef8d98a9dd856c", + "0x0", + "0x22d5ec71b061e4", + "0x0", + "0xdcd379b0386040ea", + "0x0", + "0x22a955807b053d", + "0x0", + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "0x65dc8be5" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x4785", + "max_price_per_unit": "0x5bff178b54ba" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x1aecaae30fc8c0c6158be086c900e53021301870a690044ce6f0d07e54b7f3e", + "actual_fee": { + "amount": "0x8940e530bb965ec", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0xddef8d98a9dd856c", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x22d5ec71b061e4", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "0xddef8d98a9dd856c", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x8b951fa9da", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "0x22d560dc90b80a", + "0x0" + ] + }, + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x0", + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e" + ], + "data": [ + "0x57499fb726dda93", + "0x0" + ] + }, + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x15a42804e177333276231", + "0x0", + "0x3658b799bb52dc364c", + "0x0" + ] + }, + { + "from_address": "0x68400056dccee818caa7e8a2c305f9a60d255145bac22d6c5c9bf9e2e046b71", + "keys": [ + "0x4da1c5aad76bc7515d0b2a3e1701f34bb32eef406856809bce5ba13f3151de" + ], + "data": [ + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0xddef8d98a9dd856c", + "0x0", + "0x22d560dc90b80a", + "0x0" + ] + }, + { + "from_address": "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x1aecaae30fc8c0c6158be086c900e53021301870a690044ce6f0d07e54b7f3e" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0xddef8d98a9dd856c", + "0x0", + "0x22d560dc90b80a", + "0x0", + "0x57499fb726dda93", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c8d8470e413e3b0e62c02e4485d16938ed597b42dbaba4aaf169608d893b1e", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x8940e530bb965ec", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 34605, + "pedersen_builtin_applications": 44, + "range_check_builtin_applications": 879, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x526a20a7ca16cf805cfa7f00c4d22639283692ad2764124a065bc3750de471d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x21", + "max_fee": "0x282d838e30473", + "sender_address": "0x5e0e8ea47d8ea09b2cd41ea1b7308aae387ccbfd030fb4143f3e8cc9119356d", + "signature": [ + "0x1", + "0xd9f42ea3bf9c7ed79aa3cd79ed02c4c7f459e16b8d3422072784d795e47656", + "0x2669df12310ddfc7c7658a000a81f693139cee957216d3021c08b29ff9d6573" + ], + "calldata": [ + "0x1", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0x275dc81fcd5c700205ff6dc320e9d54ed3f0ace21177d591d6d5d259ee1d7c2", + "0x1", + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x526a20a7ca16cf805cfa7f00c4d22639283692ad2764124a065bc3750de471d", + "actual_fee": { + "amount": "0x1aca5c25b1bef", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0x30c296ae369716818de77cb5b71ce9cda7cc2c0e8456f474e0abb1ae8d017da" + ], + "data": [ + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0x3510909d2a45d7d2fdd16ee", + "0x35a7bf6b2e49f064df2ed36" + ] + }, + { + "from_address": "0x811d8da5dc8a2206ea7fd0b28627c2d77280a515126e62baa4d78e22714c4a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x439d7ec4abbb69aaa8fa5acd9a682f118823f49f2542bc7673a9792ddff9fc2", + "0x56dfd", + "0x0" + ] + }, + { + "from_address": "0x811d8da5dc8a2206ea7fd0b28627c2d77280a515126e62baa4d78e22714c4a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5e0e8ea47d8ea09b2cd41ea1b7308aae387ccbfd030fb4143f3e8cc9119356d", + "0x0", + "0x1f7b2f20", + "0x0" + ] + }, + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0xa2fb82b5656725dad81c7112b2c4ef0119096677c3c0fd82632d0a74f07666" + ], + "data": [ + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0x4ef6b68187b99fa68cb469", + "0x56b26ad4cc32500553757a" + ] + }, + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0x2eed7e29b3502a726faf503ac4316b7101f3da813654e8df02c13449e03da8" + ], + "data": [ + "0x5e0e8ea47d8ea09b2cd41ea1b7308aae387ccbfd030fb4143f3e8cc9119356d", + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0x1f7b2f20" + ] + }, + { + "from_address": "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0x5e0e8ea47d8ea09b2cd41ea1b7308aae387ccbfd030fb4143f3e8cc9119356d", + "0x1f7b2f20", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5e0e8ea47d8ea09b2cd41ea1b7308aae387ccbfd030fb4143f3e8cc9119356d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1aca5c25b1bef", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 38027, + "pedersen_builtin_applications": 44, + "range_check_builtin_applications": 1574, + "bitwise_builtin_applications": 5, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x1e655c5a8ecc63cc2ef5ce3be604ade3ed071a455cbc33a3886a5f6135620d8", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x8", + "max_fee": "0x7619df7cc6cb", + "sender_address": "0x50ec83557b5f986c7f8067f4cf55a33f504db61e58117eac843296d68c19fc0", + "signature": [ + "0x3a10aaf59b7d233d8a33dc08281e9e9aee37e1fb607005b6204cc38aebf223", + "0x213c76d002ed019722dad7398eba223bc9e95852ff066add5005ac38edbd762" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0xdfe642010bc42935687f3066ca0aa9dcc8335c2a8a6c9f09652eb45e51143", + "0x1dd3096a4e244", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x1e655c5a8ecc63cc2ef5ce3be604ade3ed071a455cbc33a3886a5f6135620d8", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x50ec83557b5f986c7f8067f4cf55a33f504db61e58117eac843296d68c19fc0", + "0xdfe642010bc42935687f3066ca0aa9dcc8335c2a8a6c9f09652eb45e51143", + "0x1dd3096a4e244", + "0x0" + ] + }, + { + "from_address": "0x50ec83557b5f986c7f8067f4cf55a33f504db61e58117eac843296d68c19fc0", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x1e655c5a8ecc63cc2ef5ce3be604ade3ed071a455cbc33a3886a5f6135620d8" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x50ec83557b5f986c7f8067f4cf55a33f504db61e58117eac843296d68c19fc0", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8619, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x1404f19f7075ed92d76cdd6721c8f4ac3bdb4c30086108f8cc470d342d7b567", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9b", + "max_fee": "0x235186f98316e", + "sender_address": "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "signature": [ + "0x1", + "0x78a93a2ea930cc32298e7f64c4583ad8a90f72b8d8a1bd267eabf44e9799dce", + "0x13e5f97bc1c9bc266c1653c5812ffae8952035aebb4a538676290a6812f6f83" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x5f1016b5076d0000", + "0x0", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0xee4c59483ee04", + "0x0", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xe", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x0", + "0x1e", + "0x5f1016b5076d0000", + "0x0", + "0xee4c59483ee04", + "0x0", + "0x5d5a0a02aa9ec000", + "0x0", + "0xea02453e3dbe9", + "0x0", + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x65dc8e29" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x1404f19f7075ed92d76cdd6721c8f4ac3bdb4c30086108f8cc470d342d7b567", + "actual_fee": { + "amount": "0x1b6d57e686ee5", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x5f1016b5076d0000", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0xee4c59483ee04", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "0x5f1016b5076d0000", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "0xee4c59483ee04", + "0x0" + ] + }, + { + "from_address": "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x25a0a47c6d4b485", + "0x0" + ] + }, + { + "from_address": "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x1d500670cd850cdc6759", + "0x0", + "0x497aabe15dbb08083", + "0x0" + ] + }, + { + "from_address": "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32" + ], + "data": [ + "0x5f1016b5076d0000", + "0x0", + "0xee4c59483ee04", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7ac5c211308eadd2d9c03ae182012455b82e868e521b195b4acae755e9b4a01", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1b6d57e686ee5", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 48119, + "pedersen_builtin_applications": 55, + "range_check_builtin_applications": 1173, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x13ad75dec89aade9bb6b4f8ba9651172c8daf88815565be0a53bed3abd248f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x21", + "max_fee": "0x10762812f56b1", + "sender_address": "0x795e3e087ba0663a8a6c2a8956620dfc21e37ea0f642ae2141422e419d06d41", + "signature": [ + "0xa7183e7370f6dcd20946ee5682d91aab7b69e463ca48af034c4ced0563fe9f", + "0x2d2b9c0369226081158fe631a786b2817e811bd48bf6759a7ec90abca3faba2" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x3702babee38aa6998efbedad0058c75aefbb7af57845f2a8a7186f16f98370a", + "0xebec21ee1da40000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x13ad75dec89aade9bb6b4f8ba9651172c8daf88815565be0a53bed3abd248f", + "actual_fee": { + "amount": "0x83f94a603f8e", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x795e3e087ba0663a8a6c2a8956620dfc21e37ea0f642ae2141422e419d06d41", + "0x3702babee38aa6998efbedad0058c75aefbb7af57845f2a8a7186f16f98370a", + "0xebec21ee1da40000", + "0x0" + ] + }, + { + "from_address": "0x795e3e087ba0663a8a6c2a8956620dfc21e37ea0f642ae2141422e419d06d41", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x13ad75dec89aade9bb6b4f8ba9651172c8daf88815565be0a53bed3abd248f" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x795e3e087ba0663a8a6c2a8956620dfc21e37ea0f642ae2141422e419d06d41", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x83f94a603f8e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8619, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0xa42cb71b5cb1d8623ddd043f65e785ba535502396a18f3affba0f61ded09a7", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1a", + "max_fee": "0x2ebc6c560a8ea", + "sender_address": "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "signature": [ + "0x308b44c3a5d2c2f99f74c37c0ca52f3c1692610455a631f4a5739de8a19090d", + "0x4c323419fe0d711814fd0b571a9bb163f6f74376dd999c01a8e10d0340e648f" + ], + "calldata": [ + "0x2", + "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x1d7fcd23a2fa5b1", + "0x0", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x147fd8f7d12de6da66feedc6d64a11bd371e5471ee1018f11f9072ede67a0fa", + "0xa", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x1d7fcd23a2fa5b1", + "0x0", + "0x4b1a3845ce8f959a", + "0x0", + "0xbb46490d8ba36", + "0x0", + "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "0x65df2a32" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0xa42cb71b5cb1d8623ddd043f65e785ba535502396a18f3affba0f61ded09a7", + "actual_fee": { + "amount": "0x1d39edd815b76", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x1d7fcd23a2fa5b1", + "0x0" + ] + }, + { + "from_address": "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "0x1d7fcd23a2fa5b1", + "0x0" + ] + }, + { + "from_address": "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "0x0", + "0x1d7fcd23a2fa5b1", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "0x4c4dab1fd80e76ed", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "0xc0016791569e6", + "0x0" + ] + }, + { + "from_address": "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x11a283fac5a36a0b1fe2", + "0x2c60118021b9838c2" + ] + }, + { + "from_address": "0x4ad445ffb6294d1394b3f6a5610642d37c702eaaa47346b680c6af2f102192e", + "keys": [ + "0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744" + ], + "data": [ + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x4c4dab1fd80e76ed", + "0x0", + "0xc0016791569e6", + "0x0", + "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537" + ] + }, + { + "from_address": "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0xa42cb71b5cb1d8623ddd043f65e785ba535502396a18f3affba0f61ded09a7" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x4", + "0x4c4dab1fd80e76ed", + "0x0", + "0xc0016791569e6", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6744e2c103a4623ee180d59795d8ca609d2d0b1146580f3299a9fac4c3f537", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1d39edd815b76", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 32271, + "pedersen_builtin_applications": 49, + "range_check_builtin_applications": 1245, + "bitwise_builtin_applications": 3, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0xd03584b5c13f7a5fe68c1970db98c351d4963fe1be85b7116ca0e767daa87f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x33", + "max_fee": "0x8dd294b3d950", + "sender_address": "0x45ca7b3653fcc44fb8994b7b0f8fdbb7088447a25d75adaeeb7b829cc8c1fa6", + "signature": [ + "0x6db93498c070f715436528141369a6df2041607bbbf447f8dd6c797b0a99ffd", + "0x74bbf600443d434438c5b6fa989ba78c8b0749c124e9346c4bd6807ca249288" + ], + "calldata": [ + "0x1", + "0x45ca7b3653fcc44fb8994b7b0f8fdbb7088447a25d75adaeeb7b829cc8c1fa6", + "0x1a72f7461070ff7ae7ed3b555c54a8e3844511b83abda9efb846a9f88a8c20c", + "0x0", + "0x2", + "0x2", + "0x816dd0297efc55dc1e7559020a3a825e81ef734b558f03c83325d4da7e6253", + "0x2ceccef7f994940b3962a6c67e0ba4fcd37df7d131417c604f91e03caecc1cd" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0xd03584b5c13f7a5fe68c1970db98c351d4963fe1be85b7116ca0e767daa87f", + "actual_fee": { + "amount": "0x5e8c632290e0", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x45ca7b3653fcc44fb8994b7b0f8fdbb7088447a25d75adaeeb7b829cc8c1fa6", + "keys": [ + "0x38f6a5b87c23cee6e7294bcc3302e95019f70f81586ff3cac38581f5ca96381", + "0xca0a0472e1eaa47426141bf315c3982bc31ccbaefd9611be9372149fd82058" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x45ca7b3653fcc44fb8994b7b0f8fdbb7088447a25d75adaeeb7b829cc8c1fa6", + "keys": [ + "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3" + ], + "data": [ + "0x816dd0297efc55dc1e7559020a3a825e81ef734b558f03c83325d4da7e6253" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x45ca7b3653fcc44fb8994b7b0f8fdbb7088447a25d75adaeeb7b829cc8c1fa6", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x5e8c632290e0", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 10907, + "pedersen_builtin_applications": 17, + "range_check_builtin_applications": 227, + "ecdsa_builtin_applications": 1 + } + } + }, + { + "transaction": { + "transaction_hash": "0x7dc9fc85282e55831e449325d649429fce02b83b2b7b4337482b928e8116525", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x53", + "sender_address": "0x12c3666b3f45d3ab63cae565f4204664bd1db88260456127863fad3874005cd", + "signature": [ + "0x4f7e79f97344071327b2f570d309bc5ece3da899c4f986c3f0c55259f956b78", + "0x1fcd3482543bb288a2aef7d58f694c51f1e0f45fa455fb4a27e8255d3e549f0" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x595ce3f1eeb0f147c32654bc12b44b1ee5543d646182d0a113630bcab58b160", + "0x1bc16d674ec80000", + "0x0" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0xae7", + "max_price_per_unit": "0x145ddf179d831" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x7dc9fc85282e55831e449325d649429fce02b83b2b7b4337482b928e8116525", + "actual_fee": { + "amount": "0x1f57d0cd9198f46", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x12c3666b3f45d3ab63cae565f4204664bd1db88260456127863fad3874005cd", + "0x595ce3f1eeb0f147c32654bc12b44b1ee5543d646182d0a113630bcab58b160", + "0x1bc16d674ec80000", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x12c3666b3f45d3ab63cae565f4204664bd1db88260456127863fad3874005cd", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1f57d0cd9198f46", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 7343, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 166, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x4370a0aeede1b6299a6dd1380ae50d79a76a3c9a093eab7889ecdcb230897c", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x2", + "sender_address": "0x4a6e7ceb6cd88878fc565ee1614eff883c5018f5b465b08cf7513a325b5d020", + "signature": [ + "0x44f2b4d0317ce93169a80498670c600806dd8c6f522b44c29ea727413a2b27c", + "0x1f7d846a601caed7c9c8f0091533ecdcf0739a9abb604ea9158da05c799cd42" + ], + "calldata": [ + "0x1", + "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "0x271680756697a04d1447ad4c21d53bdf15966bdc5b78bd52d4fc2153aa76bda", + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x14f8", + "max_price_per_unit": "0x5bff178b7a07" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x4370a0aeede1b6299a6dd1380ae50d79a76a3c9a093eab7889ecdcb230897c", + "actual_fee": { + "amount": "0x284dfa28b91def2", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4c0a5193d58f74fbace4b74dcf65481e734ed1714121bdc571da345540efa05", + "keys": [ + "0x2324062bde6ebb76ffd17d55fee62fee62a4877588eb02524b19c091983b365" + ], + "data": [ + "0x4a6e7ceb6cd88878fc565ee1614eff883c5018f5b465b08cf7513a325b5d020", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d" + ] + }, + { + "from_address": "0x4a6e7ceb6cd88878fc565ee1614eff883c5018f5b465b08cf7513a325b5d020", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x4370a0aeede1b6299a6dd1380ae50d79a76a3c9a093eab7889ecdcb230897c" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4a6e7ceb6cd88878fc565ee1614eff883c5018f5b465b08cf7513a325b5d020", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x284dfa28b91def2", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8825, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 193, + "bitwise_builtin_applications": 3, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x25f4f5b7826d6d79e85b7b215858a2221186ab2bd19dccd21287d161c5eb797", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x7", + "max_fee": "0x7619df7cc6cb", + "sender_address": "0x791ccb418fb9d0add8128b50ca834d051449fcde8b7804f15dde123f5df3c1d", + "signature": [ + "0x153aedfd8f5424d8661b27e6a033421eac97d914cb3101a5a8aabbd9fe90e94", + "0x481a5b421135e61a878bf3b353a4d7e77886b9625e628c572108ede41705211" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0xdfe642010bc42935687f3066ca0aa9dcc8335c2a8a6c9f09652eb45e51143", + "0x3044ce371fdb8", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x25f4f5b7826d6d79e85b7b215858a2221186ab2bd19dccd21287d161c5eb797", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x791ccb418fb9d0add8128b50ca834d051449fcde8b7804f15dde123f5df3c1d", + "0xdfe642010bc42935687f3066ca0aa9dcc8335c2a8a6c9f09652eb45e51143", + "0x3044ce371fdb8", + "0x0" + ] + }, + { + "from_address": "0x791ccb418fb9d0add8128b50ca834d051449fcde8b7804f15dde123f5df3c1d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x25f4f5b7826d6d79e85b7b215858a2221186ab2bd19dccd21287d161c5eb797" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x791ccb418fb9d0add8128b50ca834d051449fcde8b7804f15dde123f5df3c1d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x103842bb4caf20089b3036f45cf951659296b2bf360996633630947c8091df3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1e67", + "max_fee": "0x27ca57357c000", + "sender_address": "0x20cdf29e127c29e4782f47c0465fbdd6866e25289c0514b89651d11e315ed48", + "signature": [ + "0x7acc4c4a7f7e54360936b90ca814150489796c9c98e8416c396bf27b7e7acaa", + "0x2e98abf1559885356caad89c7b1b1565e00919c874b6c1f63b6d6d37dd5457d" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x0", + "0x3", + "0x3", + "0x78583f24d8377bb02ce078a88c06782b0d88f03ed6756653dffffdd329374a1", + "0x2f2e16f29e000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x103842bb4caf20089b3036f45cf951659296b2bf360996633630947c8091df3", + "actual_fee": { + "amount": "0x4e97e59b2207", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x20cdf29e127c29e4782f47c0465fbdd6866e25289c0514b89651d11e315ed48", + "0x78583f24d8377bb02ce078a88c06782b0d88f03ed6756653dffffdd329374a1", + "0x2f2e16f29e000", + "0x0" + ] + }, + { + "from_address": "0x20cdf29e127c29e4782f47c0465fbdd6866e25289c0514b89651d11e315ed48", + "keys": [ + "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" + ], + "data": [ + "0x103842bb4caf20089b3036f45cf951659296b2bf360996633630947c8091df3", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x20cdf29e127c29e4782f47c0465fbdd6866e25289c0514b89651d11e315ed48", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4e97e59b2207", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 7634, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 170, + "ecdsa_builtin_applications": 1 + } + } + }, + { + "transaction": { + "transaction_hash": "0x670a45be75958e7d8bb8209e8410553cd9d709a44cd2a0e275a81cb6b7425e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x2212", + "max_fee": "0x2386f26fc0e043", + "sender_address": "0x33f6edecf11548f26e5920ed4b910399e927590b3da925dfc6a90a1ddfe7bda", + "signature": [ + "0x7b1a5b51098334f437c1373b171e81b33d19e8c7bee78c2dbdea117c9dfed59", + "0x45ffae3727977fcddfedf6c5a72f24dc3c42e368a37be2ce3a1cf52eeda511" + ], + "calldata": [ + "0x1", + "0x26b7b1b13407ae76d80647409a26addeeaf2ef2702d6642af377cbf134ffb99", + "0x2e4e74f71e55361d676ea8b450e10328937dd4e6be141a192f65069066b4d16", + "0x5", + "0xe8754700", + "0x11adf9c3d7633a00", + "0x3a20fcda5368b4000000000000000", + "0x0", + "0xb66c9790" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x670a45be75958e7d8bb8209e8410553cd9d709a44cd2a0e275a81cb6b7425e", + "actual_fee": { + "amount": "0x13e9823fe1326", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x26b7b1b13407ae76d80647409a26addeeaf2ef2702d6642af377cbf134ffb99", + "keys": [ + "0x28f846d1b696a65208be38a0fc7a66447d7b560c9eaf6ae6528dff13ded62c9", + "0x39fc9e4902f8ce8a87acb9893a4e2", + "0x0" + ], + "data": [] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x1dffda3b65102d41e645461ffb1abbff20769bad777631a26b7fbeca1b7c2fd", + "0x26b7b1b13407ae76d80647409a26addeeaf2ef2702d6642af377cbf134ffb99", + "0x1f4e4aa16000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1dffda3b65102d41e645461ffb1abbff20769bad777631a26b7fbeca1b7c2fd", + "0x26b7b1b13407ae76d80647409a26addeeaf2ef2702d6642af377cbf134ffb99", + "0xe8754700", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x26b7b1b13407ae76d80647409a26addeeaf2ef2702d6642af377cbf134ffb99", + "0x1b6f560def289b32e2a7b0920909615531a4d9d5636ca509045843559dc23d5", + "0xe8754700", + "0x0" + ] + }, + { + "from_address": "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "keys": [ + "0x157717768aca88da4ac4279765f09f4d0151823d573537fbbeb950cdbd9a870" + ], + "data": [ + "0x1b6f560def289b32e2a7b0920909615531a4d9d5636ca509045843559dc23d5", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x20c49ba5e353f80000000000000000", + "0x3e8", + "0x0", + "0xe8754700", + "0x0", + "0x1", + "0x3a20fcda5368b4000000000000000", + "0x0", + "0x0", + "0x11b034c871fe60f5", + "0x1", + "0xe8754700", + "0x0", + "0x39fd687c2bb402baeaae5371b9a27", + "0x0", + "0x12b2771", + "0x1", + "0x126297d22d2ac8d1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x1b6f560def289b32e2a7b0920909615531a4d9d5636ca509045843559dc23d5", + "0x11b034c871fe60f5", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x1b6f560def289b32e2a7b0920909615531a4d9d5636ca509045843559dc23d5", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0xe8754700", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x1b6f560def289b32e2a7b0920909615531a4d9d5636ca509045843559dc23d5", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1b6f560def289b32e2a7b0920909615531a4d9d5636ca509045843559dc23d5", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0xe8754700", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1b6f560def289b32e2a7b0920909615531a4d9d5636ca509045843559dc23d5", + "0x1dffda3b65102d41e645461ffb1abbff20769bad777631a26b7fbeca1b7c2fd", + "0x11b034c871fe60f5", + "0x0" + ] + }, + { + "from_address": "0x26b7b1b13407ae76d80647409a26addeeaf2ef2702d6642af377cbf134ffb99", + "keys": [ + "0x28f846d1b696a65208be38a0fc7a66447d7b560c9eaf6ae6528dff13ded62c9", + "0x39fd687c2bb402baeaae5371b9a27", + "0x0" + ], + "data": [] + }, + { + "from_address": "0x33f6edecf11548f26e5920ed4b910399e927590b3da925dfc6a90a1ddfe7bda", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x670a45be75958e7d8bb8209e8410553cd9d709a44cd2a0e275a81cb6b7425e" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x33f6edecf11548f26e5920ed4b910399e927590b3da925dfc6a90a1ddfe7bda", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x13e9823fe1326", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 75127, + "pedersen_builtin_applications": 89, + "range_check_builtin_applications": 3153, + "bitwise_builtin_applications": 28, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x3d6f7e325ddca8c286181baf783ba05a4b31f19624db2c7d8e305b2c8527df4", + "type": "INVOKE", + "version": "0x3", + "nonce": "0xc9", + "sender_address": "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "signature": [ + "0x750de4e1802ecb59a37c35688cfd4517d4534594aa3d8ad06f445ff2cba62ce", + "0x4d39a3f2b4dbf31602397fb51a17c654c7db9d8f0c54ac8f73814f1a28c023b" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x632f7593e8b90544", + "0x0", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0xe35fa931a0000", + "0x0", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", + "0xe", + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xbb8", + "0xc67fc", + "0xc69dc", + "0x632f7593e8b90544", + "0x0", + "0xe35fa931a0000", + "0x0", + "0x6133a14e64117928", + "0x0", + "0xded381f850000", + "0x0" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0xa14f", + "max_price_per_unit": "0x5bff178bd947" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x3d6f7e325ddca8c286181baf783ba05a4b31f19624db2c7d8e305b2c8527df4", + "actual_fee": { + "amount": "0x13557b25bdcd3584", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x632f7593e8b90544", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0xe35fa931a0000", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x632f7593e8b90544", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0xe35fa931a0000", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x632f7593cbe90a02", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0xfffffffffffffebbdd5357716ed049ee", + "0xffffffffffffffffffffffffffffffff" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0xe35fa931a0000", + "0x0" + ] + }, + { + "from_address": "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xbb8", + "0x3c", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0xc67fc", + "0xc69dc", + "0xc4ec58bcff31f204", + "0x632f7593cbe90a02", + "0x0", + "0xe35fa931a0000", + "0x0", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0x1ccffb42", + "0x0" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0x1bfb8", + "0x0" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x3159b5cf425448a640d4666273b957d14e6c7a6a5a6a758af3c58d7ab7841fb" + ], + "data": [ + "0x1bfb8", + "0x0", + "0xc4ec58bcff31f204", + "0x632f7593cbe90a02", + "0x0", + "0xe35fa931a0000", + "0x0" + ] + }, + { + "from_address": "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x3d6f7e325ddca8c286181baf783ba05a4b31f19624db2c7d8e305b2c8527df4" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x7", + "0x1bfb8", + "0x0", + "0xc4ec58bcff31f204", + "0x632f7593cbe90a02", + "0x0", + "0xe35fa931a0000", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4a3ac163d92b5e78a4e2f8c17d2434854ca880da910a1efaf37623dfdc22230", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x13557b25bdcd3584", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 76282, + "pedersen_builtin_applications": 106, + "range_check_builtin_applications": 2737, + "bitwise_builtin_applications": 16, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 4 + } + } + }, + { + "transaction": { + "transaction_hash": "0x5f26a59908d51d24c185a5c0bb2c1494726e74d75f8a8d308a70806ac72d630", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x6d", + "sender_address": "0x2372907fe54f6f5066ce2b629499ae22e70c814cec1cf0f472b94656373e86", + "signature": [ + "0x1", + "0x14093d64a53de69ee870800f7e84baa1b635f7847aa350d5333344fe26e66ce", + "0x7a59c29905cfbd0c06852c1fd8e533187f17f291cb8b741392dc238900dfe94" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x53328b10123e269c", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0xaaa624", + "0x0", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xc", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x53328b10123e269c", + "0x0", + "0xaaa624", + "0x0", + "0x518892858284967a", + "0x0", + "0xa73c6a", + "0x0", + "0x2372907fe54f6f5066ce2b629499ae22e70c814cec1cf0f472b94656373e86", + "0x65dc9531" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x3952", + "max_price_per_unit": "0x3eb9900dade4" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5f26a59908d51d24c185a5c0bb2c1494726e74d75f8a8d308a70806ac72d630", + "actual_fee": { + "amount": "0xa4ca1f9cdf0b0b4", + "unit": "FRI" + }, + "execution_status": "REVERTED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2372907fe54f6f5066ce2b629499ae22e70c814cec1cf0f472b94656373e86", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xa4ca1f9cdf0b0b4", + "0x0" + ] + } + ], + "revert_reason": "Insufficient max L1 gas: max amount: 14674, actual used: 15556.", + "execution_resources": { + "steps": 21267, + "pedersen_builtin_applications": 16, + "range_check_builtin_applications": 219, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x21ac35c1629b8e0ffc58fc5f1b7adb2febd9901929fe9f2d89551f6c548f404", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x73", + "max_fee": "0x10754191718a4", + "sender_address": "0x2e21d1b41825af299fd1f675908c754337670832b4b54a3b715d65ed585d949", + "signature": [ + "0xca3c85dadfc960bc59574b9cde629f77d06f2f16dc38281a93469e2a748ce8", + "0x7406f8244bcfd5f28cd0ddced0e927b8a50b24feaa306c451b0e94282027751", + "0x344d398592d600887ce5e7a68724de27148c32dde0a1c7555c6c5f58fbb174e", + "0x33d30c028fbff01ec2357499e83d2556024571835ce77177faac53ae7783570" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4a52be6bce8d6fc30f8bfc4a00db156beedc1ac71a6f77fdd186badbc253596", + "0x56bc75e2d63100000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x21ac35c1629b8e0ffc58fc5f1b7adb2febd9901929fe9f2d89551f6c548f404", + "actual_fee": { + "amount": "0x83f94a603f8e", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2e21d1b41825af299fd1f675908c754337670832b4b54a3b715d65ed585d949", + "0x4a52be6bce8d6fc30f8bfc4a00db156beedc1ac71a6f77fdd186badbc253596", + "0x56bc75e2d63100000", + "0x0" + ] + }, + { + "from_address": "0x2e21d1b41825af299fd1f675908c754337670832b4b54a3b715d65ed585d949", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x21ac35c1629b8e0ffc58fc5f1b7adb2febd9901929fe9f2d89551f6c548f404" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2e21d1b41825af299fd1f675908c754337670832b4b54a3b715d65ed585d949", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x83f94a603f8e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8655, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 177, + "ec_op_builtin_applications": 6 + } + } + }, + { + "transaction": { + "transaction_hash": "0x3e0f303ea16a4e6265b79188ce0c7d643a5988c0f96317e5a709524c18adb5a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x57", + "max_fee": "0x76bbf4b9020c", + "sender_address": "0x30e2dd70913c7f1d5b031b458f9b39a9a625abb17fca2cbeae9ac69bada8789", + "signature": [ + "0x1", + "0x2a9af112c61a98d23975bef5771b076b79c72617925bb182d4df2c10155e4b4", + "0x61d43468b8bf2c79526844fb45cb7ac003daccae719409732beb04c7f614957" + ], + "calldata": [ + "0x2", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x19252b1deef483477c4d30cfcc3e5ed9c82fafea44669c182a45a01b4fdb97a", + "0x4d3d53b8032d34", + "0x0", + "0x22993789c33e54e0d296fc266a9c9a2e9dcabe2e48941f5fa1bd5692ac4a8c4", + "0x54cd8cfffad75abfde6525af316085ef4b5d27975ed55042d341c61d19c7a4", + "0x1", + "0x3def46" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x3e0f303ea16a4e6265b79188ce0c7d643a5988c0f96317e5a709524c18adb5a", + "actual_fee": { + "amount": "0x4f3660c4f591", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x30e2dd70913c7f1d5b031b458f9b39a9a625abb17fca2cbeae9ac69bada8789", + "0x19252b1deef483477c4d30cfcc3e5ed9c82fafea44669c182a45a01b4fdb97a", + "0x4d3d53b8032d34", + "0x0" + ] + }, + { + "from_address": "0x22993789c33e54e0d296fc266a9c9a2e9dcabe2e48941f5fa1bd5692ac4a8c4", + "keys": [ + "0x1ad49916011822b909698ee3289f84bc0e9411aa2acff1ac4f3a45ac5d1bc49" + ], + "data": [ + "0x3def46" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x30e2dd70913c7f1d5b031b458f9b39a9a625abb17fca2cbeae9ac69bada8789", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4f3660c4f591", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 12130, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 243, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x1ede37ce9aa7cc86b3d1160e2654133a4a02d815ee708c88a5b2b42c20b0a4b", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xfd", + "max_fee": "0x235186f42ec50", + "sender_address": "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "signature": [ + "0x653b1935ce7a047c08f9a29bc1370376eaa262adf59d102adff23fa363e555b", + "0x26165d9f6202869e9e04eb894068d77ef228a8b3b41cd801d753527e181e0a1" + ], + "calldata": [ + "0x2", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x1782b9fbe60bc6", + "0x0", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", + "0x7", + "0x71273c5c5780b4be42d9e6567b1b1a6934f43ab8abaf975c0c3da219fc4d040", + "0x1", + "0x1312d00", + "0x0", + "0x0", + "0x39a46af4ed87a2e98e6b3", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x1ede37ce9aa7cc86b3d1160e2654133a4a02d815ee708c88a5b2b42c20b0a4b", + "actual_fee": { + "amount": "0x11ae9ddaaa15a", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x1782b9fbe60bc6", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "0x1312d00", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x3bebc18c67cf", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x1746ce3a59a3f7", + "0x0" + ] + }, + { + "from_address": "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "keys": [ + "0xe316f0d9d2a3affa97de1d99bb2aac0538e2666d0d8545545ead241ef0ccab" + ], + "data": [ + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x1f4", + "0xa", + "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "0x1746ce3a59a3f7", + "0x0", + "0x0", + "0x1312d00", + "0x0", + "0x1", + "0x39f2de87df69acdc4f338", + "0x0", + "0x4aef7af92bd6557", + "0xa8bfa" + ] + }, + { + "from_address": "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x1ede37ce9aa7cc86b3d1160e2654133a4a02d815ee708c88a5b2b42c20b0a4b" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x6", + "0x1746ce3a59a3f7", + "0x0", + "0x0", + "0x1312d00", + "0x0", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x44c48be3e08631abeac2a0e6a3d26d7a92eafe246dbf74696c3d86b8cbf4dc1", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x11ae9ddaaa15a", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 41818, + "pedersen_builtin_applications": 40, + "range_check_builtin_applications": 1959, + "bitwise_builtin_applications": 11, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x2222036ea476b959939433186c833ec66ea7ade4637f4acce04ab0bda29817e", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x29", + "sender_address": "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621", + "signature": [ + "0x4835d217c8f7e1eeb293a577e17d17ae1588fab1aa2b14cc6cb96d55cca0e0a", + "0x23fe0d378d119571f8760868528ac57f1918a7914ba88a7e866860510c97d6d" + ], + "calldata": [ + "0x2", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x10678f5ad55a81", + "0x0", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x2c0f7bf2d6cf5304c29171bf493feb222fef84bdaf17805a6574b0c2e8bcc87", + "0x9", + "0x10678f5ad55a81", + "0x0", + "0xd55f1f", + "0x0", + "0x2", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621", + "0x65df2a39" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x457b", + "max_price_per_unit": "0x5bff178b2606" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x2222036ea476b959939433186c833ec66ea7ade4637f4acce04ab0bda29817e", + "actual_fee": { + "amount": "0xb6f2d1baa1a5f9e", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x10678f5ad55a81", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621", + "0x23c72abdf49dffc85ae3ede714f2168ad384cc67d08524732acea90df325", + "0x10678f5ad55a81", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x23c72abdf49dffc85ae3ede714f2168ad384cc67d08524732acea90df325", + "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621", + "0xd6703d", + "0x0" + ] + }, + { + "from_address": "0x23c72abdf49dffc85ae3ede714f2168ad384cc67d08524732acea90df325", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0xd6dd6a18810825563", + "0xb01178f4b0" + ] + }, + { + "from_address": "0x23c72abdf49dffc85ae3ede714f2168ad384cc67d08524732acea90df325", + "keys": [ + "0xe316f0d9d2a3affa97de1d99bb2aac0538e2666d0d8545545ead241ef0ccab" + ], + "data": [ + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x10678f5ad55a81", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0xd6703d", + "0x0", + "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621" + ] + }, + { + "from_address": "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x2222036ea476b959939433186c833ec66ea7ade4637f4acce04ab0bda29817e" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x5", + "0x2", + "0x10678f5ad55a81", + "0x0", + "0xd6703d", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x764267b562e5309c767ce65baab8e751727940a125a82523b86ae63caa09621", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xb6f2d1baa1a5f9e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 29226, + "pedersen_builtin_applications": 56, + "range_check_builtin_applications": 1203, + "bitwise_builtin_applications": 3, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x4c9c66133d8b4c14971ab018acd78a77ce074ec6d554600d56a4660f1f2a54f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x61", + "max_fee": "0x39698bff56df3", + "sender_address": "0x1e44e33c2f57c0fa9e4932bc9ecda94b94a6dea010e33488cfd0d2effc5e9d4", + "signature": [ + "0x1", + "0x185abb54dc6062ddbefb31b9a00ea0729176ecd8918e2cf3b4f05fbb507a409", + "0x71427d4233e6a14fafc2b301897c851562fd8867d5bc03e95e0e709fde7edc3" + ], + "calldata": [ + "0x5", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x8ac7230489e80000", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x1227265", + "0x0", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x38c3244e92da3bec5e017783c62779e3fd5d13827570dc093ab2a55f16d41b9", + "0xa", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0xc49ba5e353f7d00000000000000000", + "0x175e", + "0x0", + "0x19d7d5c", + "0x1", + "0x19a919c", + "0x1", + "0xfc3ec0a0dc26", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x292f3f4df7749c2ae1fdc3379303c2e6caa9bbc3033ee67709fde5b77f65836", + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x292f3f4df7749c2ae1fdc3379303c2e6caa9bbc3033ee67709fde5b77f65836", + "0x1", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x4c9c66133d8b4c14971ab018acd78a77ce074ec6d554600d56a4660f1f2a54f", + "actual_fee": { + "amount": "0x264743d97e82b", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1e44e33c2f57c0fa9e4932bc9ecda94b94a6dea010e33488cfd0d2effc5e9d4", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x8ac7230489e80000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1e44e33c2f57c0fa9e4932bc9ecda94b94a6dea010e33488cfd0d2effc5e9d4", + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x1227265", + "0x0" + ] + }, + { + "from_address": "0x7b696af58c967c1b14c9dde0ace001720635a660a8e90c565ea459345318b30", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x1e44e33c2f57c0fa9e4932bc9ecda94b94a6dea010e33488cfd0d2effc5e9d4", + "0x6a41e", + "0x0" + ] + }, + { + "from_address": "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "keys": [ + "0x3a7adca3546c213ce791fabf3b04090c163e419c808c9830fb343a4a395946e" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0xc49ba5e353f7d00000000000000000", + "0x175e", + "0x0", + "0x6a41e", + "0x19d7d5c", + "0x1", + "0x19a919c", + "0x1", + "0x10c88cdba6e6e", + "0x0", + "0x8ac722f3917192fe", + "0x0", + "0x1227265", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x8ac722f3917192fe", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x8ac722f3917192fe", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x1227265", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x5dd3d2f4429af886cd1a3b08289dbcea99a294197e9eb43b0e0325b4b", + "0x1227265", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2e0af29598b407c8716b17f6d2795eca1b471413fa03fb145a5e33722184067", + "0x1e44e33c2f57c0fa9e4932bc9ecda94b94a6dea010e33488cfd0d2effc5e9d4", + "0x10f8766d02", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1e44e33c2f57c0fa9e4932bc9ecda94b94a6dea010e33488cfd0d2effc5e9d4", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x264743d97e82b", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 84533, + "pedersen_builtin_applications": 176, + "range_check_builtin_applications": 3743, + "bitwise_builtin_applications": 108, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x7723587464f9037330875d02f3c6baf6a86a295187ed1d150b3d98e55abd22c", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x18", + "sender_address": "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "signature": [ + "0x40f555a9d8a8adf31ac9ec74313c74a3ff6af810c3db89b35615601e7213eea", + "0x3bcc90853d2ccde6b670bf0bc80fd3bb8fe8b232cb1b0d913cc81e023905948" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x7ce66c50e2840000", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0xff5c27", + "0x0", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x3f35dbce7a07ce455b128890d383c554afbc1b07cf7390a13e2d602a38c1a0a", + "0xc", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x7ce66c50e2840000", + "0x0", + "0xff5c27", + "0x0", + "0x7cc672dd17898000", + "0x0", + "0xff1ac7", + "0x0", + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0x65df2a2f" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x4777", + "max_price_per_unit": "0x5bff178bd27d" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x7723587464f9037330875d02f3c6baf6a86a295187ed1d150b3d98e55abd22c", + "actual_fee": { + "amount": "0xbac7280d8882bb0", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x7ce66c50e2840000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0xff5c27", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "0x7ce66c50e2840000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "0xff5c27", + "0x0" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0xb006f0fc148", + "0x0" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x96eee79696e2509a9e6", + "0x13495c7b06" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16" + ], + "data": [ + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x7ce66c50e2840000", + "0x0", + "0xff5c27", + "0x0" + ] + }, + { + "from_address": "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x7723587464f9037330875d02f3c6baf6a86a295187ed1d150b3d98e55abd22c" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0x7ce66c50e2840000", + "0x0", + "0xff5c27", + "0x0", + "0xb006f0fc148", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3afa6a23557f86e9ba5b6499c42bc4dd8d4b0ac613a41dbe21beaed1b99e6c2", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xbac7280d8882bb0", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 35195, + "pedersen_builtin_applications": 58, + "range_check_builtin_applications": 1355, + "bitwise_builtin_applications": 4, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x217bd73671d15bcfb7ca0c5604c2508cf743c5af7d3a597a53ea7188f2876ea", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x7a", + "max_fee": "0x1076281ad47d0", + "sender_address": "0x1d65e3b877c21ebc6a7da5b75fb423aacb18fcaf9d931514b28da4c25707e2b", + "signature": [ + "0x65febf5b231a9b4ef7852512122939cf99f8faaf039218778f02e6f82cda19c", + "0x396b3bc79591c0e16c8a03919715209705c2eb455277d6eb1391321b1e8f9b1" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x691d02da412776eae67b3a7911306b9793f8bfe6ddecbe0a562ed6907faf74c", + "0x2e141ea081ca080000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x217bd73671d15bcfb7ca0c5604c2508cf743c5af7d3a597a53ea7188f2876ea", + "actual_fee": { + "amount": "0x83f94a603f8e", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1d65e3b877c21ebc6a7da5b75fb423aacb18fcaf9d931514b28da4c25707e2b", + "0x691d02da412776eae67b3a7911306b9793f8bfe6ddecbe0a562ed6907faf74c", + "0x2e141ea081ca080000", + "0x0" + ] + }, + { + "from_address": "0x1d65e3b877c21ebc6a7da5b75fb423aacb18fcaf9d931514b28da4c25707e2b", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x217bd73671d15bcfb7ca0c5604c2508cf743c5af7d3a597a53ea7188f2876ea" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1d65e3b877c21ebc6a7da5b75fb423aacb18fcaf9d931514b28da4c25707e2b", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x83f94a603f8e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x7f710a0dbd83614f6fe1cb7d24a11adeb0b2d860316f572c7a7152d35c69ad3", + "type": "INVOKE", + "version": "0x3", + "nonce": "0xb3", + "sender_address": "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "signature": [ + "0x3c1842650ecb883ed8db26e9d88d15a4c2a983e033e3b54795e919215d3acec", + "0x4cdf4e8dbc2a5988671b98ff5fea869e9cca71af71e8a8df51624a9935e5677" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x5adfc6758d02630e", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0xb9cb1d", + "0x0", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x3f35dbce7a07ce455b128890d383c554afbc1b07cf7390a13e2d602a38c1a0a", + "0xc", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x5adfc6758d02630e", + "0x0", + "0xb9cb1d", + "0x0", + "0x590e7fee146ddbf4", + "0x0", + "0xb613d9", + "0x0", + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x65df2a30" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x4dec", + "max_price_per_unit": "0x5bff178bcb33" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x7f710a0dbd83614f6fe1cb7d24a11adeb0b2d860316f572c7a7152d35c69ad3", + "actual_fee": { + "amount": "0x958446343508f94", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x5adfc6758d02630e", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0xb9cb1d", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "0x5adfc6758d02630e", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x1", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "0xb9cb1c", + "0x0" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x8012a55719b", + "0x0" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x96f49592fe3b20c0cf4", + "0x134a164622" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16" + ], + "data": [ + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x5adfc6758d02630e", + "0x0", + "0xb9cb1c", + "0x0" + ] + }, + { + "from_address": "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x7f710a0dbd83614f6fe1cb7d24a11adeb0b2d860316f572c7a7152d35c69ad3" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0x5adfc6758d02630e", + "0x0", + "0xb9cb1c", + "0x0", + "0x8012a55719b", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x5da224f7ffaa98dc1910afbcea601c908df4fbf95325bf4ced58f0366272810", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x958446343508f94", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 32800, + "pedersen_builtin_applications": 58, + "range_check_builtin_applications": 1105, + "bitwise_builtin_applications": 4, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x3ded50731640cccfe8f76ab6d9c091f683505054960a8b5004376ecda6f4b6c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x2b", + "max_fee": "0x767051367fff", + "sender_address": "0x213726f19d081d3e93befd158f289945b021485e20a70445cd1d73af28101d6", + "signature": [ + "0x1", + "0xbdf04d297960e9c33edfb49271b9d05801c2c234d10d6eb2199f7949bd4d44", + "0x16f9637a2ae3953d687ac79d4cb93967571e990b4e73e135c2575a7bb0a9235" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0xfb3c35c37ffa97d81cbd623376e74d5de4926b9ceca196fc612acab6adcb19", + "0x2367d81f8492c7", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x3ded50731640cccfe8f76ab6d9c091f683505054960a8b5004376ecda6f4b6c", + "actual_fee": { + "amount": "0x4f0b27e818f7", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x213726f19d081d3e93befd158f289945b021485e20a70445cd1d73af28101d6", + "0xfb3c35c37ffa97d81cbd623376e74d5de4926b9ceca196fc612acab6adcb19", + "0x2367d81f8492c7", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x213726f19d081d3e93befd158f289945b021485e20a70445cd1d73af28101d6", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4f0b27e818f7", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 10804, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 201, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x184f050edc474969a9bdf1cc7165d7cc26a8357bedd36c8a92bdd03bd1d7bfa", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15f", + "max_fee": "0x3993a4bccaa1b", + "sender_address": "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "signature": [ + "0x4eb5a91969dab5897860345bb5b6d568f7b24b1f108fa2bc2e0f5ccbf67a8e1", + "0xfb7598be2ba0a98cc67f4e4caafd84e0d60eb5bd231ae6c7b137b76786fb63", + "0x15d157278d8fd1cd331d751abd8d6ae1fed6be59cead272e8ac5b1a80ff2e84", + "0x716301e93c3dd14c6635fd3b15ea703c9cdf436072a7fb7c02683c1d852ba7b" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x6124fee993bc0000", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0xc68b15", + "0x0", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xe", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x0", + "0x1e", + "0x6124fee993bc0000", + "0x0", + "0xc68b15", + "0x0", + "0x5f655a947a090000", + "0x0", + "0xc2f832", + "0x0", + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x65dc8e24" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x184f050edc474969a9bdf1cc7165d7cc26a8357bedd36c8a92bdd03bd1d7bfa", + "actual_fee": { + "amount": "0x1cd179c255ede", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x6124fee993bc0000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0xc68b15", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "0x6124fee993bc0000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "0xc68b15", + "0x0" + ] + }, + { + "from_address": "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x8ae0b5c8c62", + "0x0" + ] + }, + { + "from_address": "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x1078520572c880d92759", + "0x0", + "0x21a9496e83", + "0x0" + ] + }, + { + "from_address": "0x1c381df6357df3693eff7a541a676a100375859ee1cfaf23e12586ad09dbd04", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32" + ], + "data": [ + "0x6124fee993bc0000", + "0x0", + "0xc68b15", + "0x0" + ] + }, + { + "from_address": "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x184f050edc474969a9bdf1cc7165d7cc26a8357bedd36c8a92bdd03bd1d7bfa" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0x6124fee993bc0000", + "0x0", + "0xc68b15", + "0x0", + "0x8ae0b5c8c62", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x43e083db1638fd89a9f77f0d935a4bed785d4e638ef1cdaade537a495db2d7b", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1cd179c255ede", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 48251, + "pedersen_builtin_applications": 55, + "range_check_builtin_applications": 1087, + "ec_op_builtin_applications": 6 + } + } + }, + { + "transaction": { + "transaction_hash": "0x4eaf6b9c5bd7936db5aa44d7a4d34cc354c68875d6f3ff00acc35c93645cb9a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x29", + "max_fee": "0x68b150f4197b0", + "sender_address": "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "signature": [ + "0x70140466aace62d49896c6d3bbfcea264b8f5c4ca80fe993108c104b66ad9fa", + "0xc71bbec7f9ad09e67ce83d4893f3cfc6fb7187ca711146ca228c2f7fe86b91" + ], + "calldata": [ + "0x3", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x3bc75403f0d735653dce6c92437af5f88d5a4b49c6ef582454a66d3a033d429", + "0x7", + "0x1bfa8", + "0x0", + "0x3231f97a2a593af8", + "0x5f2a9f05647d05a0", + "0x0", + "0xe9655e1ccc65d", + "0x0", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x284134db6f39215e1d0a0a3dbd382fd7d28af6b3e3d5b77bba35c3a1d0da316", + "0x5", + "0x1bfa8", + "0x0", + "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x3e8cfd4725c1e28fa4a6e3e468b4fcf75367166b850ac5f04e33ec843e82c1", + "0x2", + "0x1bfa8", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x4eaf6b9c5bd7936db5aa44d7a4d34cc354c68875d6f3ff00acc35c93645cb9a", + "actual_fee": { + "amount": "0x345f695ed8cfd", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "keys": [ + "0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xbb8", + "0x3c", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0xc652c", + "0xc6cac", + "0x3231f97a2a593af8", + "0x6020b5506fd8ca35", + "0x0", + "0xebc0e5871c09c", + "0x0" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x1e4edcb5dad84e4a0b18ce2522746c3c57eb5b4831897b04d4c2f38d765e92e" + ], + "data": [ + "0x1bfa8", + "0x0", + "0x3231f97a2a593af8", + "0x6020b5506fd8ca35", + "0x0", + "0xebc0e5871c09c", + "0x0" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x290118457a640990dbcdeb696bd7f53f1d7d71d19b7d566efd42da398c908d3" + ], + "data": [ + "0x1bfa8", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "0x6020b5506fd8ca35", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "0xebc2dbeb95fa4", + "0x0" + ] + }, + { + "from_address": "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "keys": [ + "0x33b678d8846a558f55fc9257950e74c1aac32ee4c836c3a620d1066cc8d493f" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xbb8", + "0x3c", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "0xc652c", + "0xc6cac", + "0x6020b5506fd8ca35", + "0xebc2dbeb95fa4" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x33b678d8846a558f55fc9257950e74c1aac32ee4c836c3a620d1066cc8d493f" + ], + "data": [ + "0x1bfa8", + "0x0", + "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "0x6020b5506fd8ca35", + "0x0", + "0xebc2dbeb95fa4", + "0x0" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "0x0", + "0x1bfa8", + "0x0" + ] + }, + { + "from_address": "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x4eaf6b9c5bd7936db5aa44d7a4d34cc354c68875d6f3ff00acc35c93645cb9a" + ], + "data": [ + "0x3", + "0x4", + "0x6020b5506fd8ca35", + "0x0", + "0xebc0e5871c09c", + "0x0", + "0x2", + "0x6020b5506fd8ca35", + "0xebc2dbeb95fa4", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x576db60f6c117b7619d346e444005abdaf9abc02ab6a95a4a5ada6dc444d8e1", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x345f695ed8cfd", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 82030, + "pedersen_builtin_applications": 131, + "range_check_builtin_applications": 2694, + "bitwise_builtin_applications": 22, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 10 + } + } + }, + { + "transaction": { + "transaction_hash": "0x4a6c4ca9093b84ab7970aa34e5c0d576f14a054c65e7ace99012fd595587744", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x36", + "sender_address": "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "signature": [ + "0x141751210c37cf4e0dded68ea20b79cbae067311a8fcb8d82a8bb77bbaeb0f9", + "0x272f0c73f774c04f14b5b36aa0cfab2c3177acbb79b413118aa0f7a01753be5" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x5732645018e5a861", + "0x0", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0xda9486a0ad9b3", + "0x0", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xe", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x0", + "0x1e", + "0x5732645018e5a861", + "0x0", + "0xda9486a0ad9b3", + "0x0", + "0x55a096bb3312ad07", + "0x0", + "0xd6a54ef4d370f", + "0x0", + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x65dc8e24" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x54d2", + "max_price_per_unit": "0x5bff178b3ab7" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x4a6c4ca9093b84ab7970aa34e5c0d576f14a054c65e7ace99012fd595587744", + "actual_fee": { + "amount": "0xa2bee4c6f577f18", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x5732645018e5a861", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0xda9486a0ad9b3", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "0x5732645018e5a861", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32", + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "0xda9486a0ad9b2", + "0x0" + ] + }, + { + "from_address": "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x228396300f1e2b6", + "0x0" + ] + }, + { + "from_address": "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x1d506580e43a14496759", + "0x0", + "0x497b9a2db70346e87", + "0x0" + ] + }, + { + "from_address": "0x6cbc110394329a1beb059b1da3a36e3042280f4c8cab1a1d10618e4822649ce", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16", + "0x7eee624919fae668387d0d34d86d67795e5c919bc994841581144977ef21c32" + ], + "data": [ + "0x5732645018e5a861", + "0x0", + "0xda9486a0ad9b2", + "0x0" + ] + }, + { + "from_address": "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x4a6c4ca9093b84ab7970aa34e5c0d576f14a054c65e7ace99012fd595587744" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0x5732645018e5a861", + "0x0", + "0xda9486a0ad9b2", + "0x0", + "0x228396300f1e2b6", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x67586a5c1052421987b26de927d57da705ba54523b10b526d790f0a3ddd23e8", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xa2bee4c6f577f18", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 47953, + "pedersen_builtin_applications": 55, + "range_check_builtin_applications": 1075, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x215019df97aff6e898479dc6799d80fbda056e6bba7741704379a89d7fb5ae2", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x25", + "sender_address": "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "signature": [ + "0x5a256bc91c12b9ea1f1b713c051e27c8ed5ac6f15ade0fc5fd36f7dbf05d09e", + "0x663625a19d6dec379369879a4abdc8d404e5689ccfa6e481241b6b642261c78" + ], + "calldata": [ + "0x2", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x1f8fdafa5b", + "0x0", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x2e875d1c86df033547c5c7839d8b6e3641de29ee1f708bbce99743b34272ada", + "0xa", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x1f8fdafa5b", + "0x0", + "0xbf99bcf5f65fe", + "0x0", + "0x9d03a0", + "0x0", + "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "0x65dc953b" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x4c1b", + "max_price_per_unit": "0x5bff178baade" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x215019df97aff6e898479dc6799d80fbda056e6bba7741704379a89d7fb5ae2", + "actual_fee": { + "amount": "0x92062f0760fb52e", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x1f8fdafa5b", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x1f8fdafa5b", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x0", + "0x1f8fdafa5b", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "0xc3811bd531753", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "0xa0394c", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x14f432c1b6f57c4a5c", + "0x0", + "0x112c2e48778", + "0x0" + ] + }, + { + "from_address": "0x4d0390b777b424e43839cd1e744799f3de6c176c7e32c1812a41dbd9c19db6a", + "keys": [ + "0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744" + ], + "data": [ + "0x41fd22b238fa21cfcf5dd45a8548974d8263b3a531a60388411c5e230f97023", + "0xc3811bd531753", + "0x0", + "0xa0394c", + "0x0", + "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260" + ] + }, + { + "from_address": "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x215019df97aff6e898479dc6799d80fbda056e6bba7741704379a89d7fb5ae2" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x4", + "0xc3811bd531753", + "0x0", + "0xa0394c", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x8d81f74778e009d57be858570404cfb62c73bb69e217904312e35b940d260", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x92062f0760fb52e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 32877, + "pedersen_builtin_applications": 43, + "range_check_builtin_applications": 858, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x9b3d4c1bbdb926a382b7dd07a0ad0ecb6f1481d91a91ede403023db9afd94f", + "type": "DEPLOY_ACCOUNT", + "version": "0x3", + "nonce": "0x0", + "contract_address_salt": "0x7e804e99010172c123186ec8ae5cf3ad2b76d2192567b1f9470dbf57bc7c56b", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x7e804e99010172c123186ec8ae5cf3ad2b76d2192567b1f9470dbf57bc7c56b", + "0x0" + ], + "signature": [ + "0x128bc91881c11605635c92064aefa211b7339bc5a4f85b9909cf005cf195370", + "0x3bfa89786331f490d5bf5564e1420eae5672c622cd7215b6b36fc4275d6d7ff" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x125f", + "max_price_per_unit": "0x410cfa2573a7" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "DEPLOY_ACCOUNT", + "transaction_hash": "0x9b3d4c1bbdb926a382b7dd07a0ad0ecb6f1481d91a91ede403023db9afd94f", + "actual_fee": { + "amount": "0x2570e165193d8bc", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x3a89c0b226eb39bb3a30cdc65efb574cf5421a13a1536708153d269d6aa96df", + "keys": [ + "0x1d9ca8a89626bead91b5cb4275a622219e9443975b34f3fdbc683e8621231a9", + "0x7e804e99010172c123186ec8ae5cf3ad2b76d2192567b1f9470dbf57bc7c56b" + ], + "data": [ + "0x0" + ] + }, + { + "from_address": "0x3a89c0b226eb39bb3a30cdc65efb574cf5421a13a1536708153d269d6aa96df", + "keys": [ + "0x38f6a5b87c23cee6e7294bcc3302e95019f70f81586ff3cac38581f5ca96381", + "0x7e804e99010172c123186ec8ae5cf3ad2b76d2192567b1f9470dbf57bc7c56b" + ], + "data": [] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3a89c0b226eb39bb3a30cdc65efb574cf5421a13a1536708153d269d6aa96df", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x2570e165193d8bc", + "0x0" + ] + } + ], + "contract_address": "0x3a89c0b226eb39bb3a30cdc65efb574cf5421a13a1536708153d269d6aa96df", + "execution_resources": { + "steps": 5679, + "pedersen_builtin_applications": 23, + "range_check_builtin_applications": 95, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x19abb6dfad084fb9c19791361065a67b74e8869a888ba30288d8c2a0aec1898", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x7619df7cc6cb", + "sender_address": "0x33885410f9808d14611cbc6d5f71d741cc16388b0f41fa1656a8fb8df46a989", + "signature": [ + "0x14a6b54461920c61a97a2b0f131c92b7f816a8b1ec722f558f13d5446d9db1d", + "0x6c1030a82137e6588db9b51911dec14728efea2c51015a4a13a3e8ec378b8e9" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x6a092142dfe900a0161534f6817b1d63b8a167d65684e7abb8db36d544323bb", + "0x1bae0dcd39ba88", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x19abb6dfad084fb9c19791361065a67b74e8869a888ba30288d8c2a0aec1898", + "actual_fee": { + "amount": "0x4ebbea532f32", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x33885410f9808d14611cbc6d5f71d741cc16388b0f41fa1656a8fb8df46a989", + "0x6a092142dfe900a0161534f6817b1d63b8a167d65684e7abb8db36d544323bb", + "0x1bae0dcd39ba88", + "0x0" + ] + }, + { + "from_address": "0x33885410f9808d14611cbc6d5f71d741cc16388b0f41fa1656a8fb8df46a989", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x19abb6dfad084fb9c19791361065a67b74e8869a888ba30288d8c2a0aec1898" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x33885410f9808d14611cbc6d5f71d741cc16388b0f41fa1656a8fb8df46a989", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4ebbea532f32", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x3fd0838d86ad448bb12147cbfe80ad22dc73b8ec216bd5995e5b5f308fa5a65", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x48", + "max_fee": "0x8dd294b3d950", + "sender_address": "0xd57b82e564ff5a2777fbe9fc721788d0d43c1333422c752491252ba782a344", + "signature": [ + "0x2735aa12cc7df8de76e56d4a24e96e346501e699a39b27e7ac3ee299caedd10", + "0x63951d84643ae2ad97a9754a69ca205ae27724be949d1816445d03b5cb3d00f" + ], + "calldata": [ + "0x1", + "0xd57b82e564ff5a2777fbe9fc721788d0d43c1333422c752491252ba782a344", + "0x1a72f7461070ff7ae7ed3b555c54a8e3844511b83abda9efb846a9f88a8c20c", + "0x0", + "0x2", + "0x2", + "0x816dd0297efc55dc1e7559020a3a825e81ef734b558f03c83325d4da7e6253", + "0x2ceccef7f994940b3962a6c67e0ba4fcd37df7d131417c604f91e03caecc1cd" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x3fd0838d86ad448bb12147cbfe80ad22dc73b8ec216bd5995e5b5f308fa5a65", + "actual_fee": { + "amount": "0x5e8c632290e0", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0xd57b82e564ff5a2777fbe9fc721788d0d43c1333422c752491252ba782a344", + "keys": [ + "0x38f6a5b87c23cee6e7294bcc3302e95019f70f81586ff3cac38581f5ca96381", + "0xe0e2a18c381cbb8dca4e1487aaa9a599a533b9b05a1cb869a4eff5ed5d3a23" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0xd57b82e564ff5a2777fbe9fc721788d0d43c1333422c752491252ba782a344", + "keys": [ + "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3" + ], + "data": [ + "0x816dd0297efc55dc1e7559020a3a825e81ef734b558f03c83325d4da7e6253" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0xd57b82e564ff5a2777fbe9fc721788d0d43c1333422c752491252ba782a344", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x5e8c632290e0", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 10907, + "pedersen_builtin_applications": 17, + "range_check_builtin_applications": 227, + "ecdsa_builtin_applications": 1 + } + } + }, + { + "transaction": { + "transaction_hash": "0x3ef279ebb1cd1e43545bce60acdf5a45db5bb80ad69745982b2353b3ef932d4", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x59", + "sender_address": "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "signature": [ + "0x43524a4e97ed8610b3b64c5cf4695a11e6348df6b77a163b9e6d04ff0197202", + "0x1567a62f799056ff0a9326f8fe7ba392639e1444a6ddbf427a4b27cdb06e29d" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x4c53ecdc18a60000", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x9d148c", + "0x0", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x2cfb12ff9e08412ec5009c65ea06e727119ad948d25c8a8cc2c86fec4adee70", + "0xc", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x4c53ecdc18a60000", + "0x0", + "0x9d148c", + "0x0", + "0x4bf239c165534000", + "0x0", + "0x9c4b7c", + "0x0", + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "0x65dc8be8" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x4110", + "max_price_per_unit": "0x5bff178ba984" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x3ef279ebb1cd1e43545bce60acdf5a45db5bb80ad69745982b2353b3ef932d4", + "actual_fee": { + "amount": "0x7ce0c475e689660", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x4c53ecdc18a60000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x9d148c", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "0x7ae43abf704f4981094a4f3457d1abe6b176844f6cdfbb39c0544a635ef56b0", + "0x4c53ecdc18a60000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "0x7ae43abf704f4981094a4f3457d1abe6b176844f6cdfbb39c0544a635ef56b0", + "0x9d148c", + "0x0" + ] + }, + { + "from_address": "0x7ae43abf704f4981094a4f3457d1abe6b176844f6cdfbb39c0544a635ef56b0", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x0", + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81" + ], + "data": [ + "0x6c96a4523e8", + "0x0" + ] + }, + { + "from_address": "0x7ae43abf704f4981094a4f3457d1abe6b176844f6cdfbb39c0544a635ef56b0", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0xa77653cf8e6b511a7961", + "0x0", + "0x158a1c89adc", + "0x0" + ] + }, + { + "from_address": "0x7ae43abf704f4981094a4f3457d1abe6b176844f6cdfbb39c0544a635ef56b0", + "keys": [ + "0x4da1c5aad76bc7515d0b2a3e1701f34bb32eef406856809bce5ba13f3151de" + ], + "data": [ + "0x6720b763aac6608ceba3f9069bebb0f990cd96b26071b3fa2a2109940f90db2", + "0x4c53ecdc18a60000", + "0x0", + "0x9d148c", + "0x0" + ] + }, + { + "from_address": "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x3ef279ebb1cd1e43545bce60acdf5a45db5bb80ad69745982b2353b3ef932d4" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0x4c53ecdc18a60000", + "0x0", + "0x9d148c", + "0x0", + "0x6c96a4523e8", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x748b8ba7aebd6047fffd12990962a42b62a25d6eb33f206d958007f69aad81", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x7ce0c475e689660", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 34605, + "pedersen_builtin_applications": 44, + "range_check_builtin_applications": 879, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x39343cf7a7cc8b90b194b8d1a6f5883fc920c269b6f1aca0726f4fe3e131034", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x44", + "max_fee": "0x3a6826f620b5a", + "sender_address": "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "signature": [ + "0x62aaed34350882a6dc58e4919ccc20c97f55aa21d3bcd27c71c1a37f5407879", + "0x3aff181a68325e7fe4331289535963ffb3adb1beaad9adabbec9680ca35bd9" + ], + "calldata": [ + "0x2", + "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x356b56e8", + "0x0", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x147fd8f7d12de6da66feedc6d64a11bd371e5471ee1018f11f9072ede67a0fa", + "0xa", + "0x3fe2b97c1fd336e750087d68b9b867997fd64a2661ff3ca5a7c771641e8e7ac", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x356b56e8", + "0x0", + "0xaf0", + "0x0", + "0x1a9f4f9cb3ceb", + "0x0", + "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "0x65df2a39" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x39343cf7a7cc8b90b194b8d1a6f5883fc920c269b6f1aca0726f4fe3e131034", + "actual_fee": { + "amount": "0x1d39edd815b76", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x356b56e8", + "0x0" + ] + }, + { + "from_address": "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "0x356b56e8", + "0x0" + ] + }, + { + "from_address": "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "0x0", + "0x356b56e8", + "0x0" + ] + }, + { + "from_address": "0x3fe2b97c1fd336e750087d68b9b867997fd64a2661ff3ca5a7c771641e8e7ac", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "0xb2a", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "0x1b2a6622833b7", + "0x0" + ] + }, + { + "from_address": "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x6bbe2c7", + "0x10621aae1ff99ad3a" + ] + }, + { + "from_address": "0x2a6e0ecda844736c4803a385fb1372eff458c365d2325c7d4e08032c7a908f3", + "keys": [ + "0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744" + ], + "data": [ + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0xb2a", + "0x0", + "0x1b2a6622833b7", + "0x0", + "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9" + ] + }, + { + "from_address": "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x39343cf7a7cc8b90b194b8d1a6f5883fc920c269b6f1aca0726f4fe3e131034" + ], + "data": [ + "0x2", + "0x1", + "0x1", + "0x4", + "0xb2a", + "0x0", + "0x1b2a6622833b7", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2533c9f0b9a73ac1de0a7c26493b165809f066e2ba3cc4284fe9f8cd7c8c7a9", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1d39edd815b76", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 32394, + "pedersen_builtin_applications": 49, + "range_check_builtin_applications": 1245, + "bitwise_builtin_applications": 3, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x60a4a26bdf392822fec6f59666eb153b7c0a5af33ff1366bdf97b7ddad3cc09", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x47", + "max_fee": "0x9cd959d7988e", + "sender_address": "0x2a5127f07308542a46788a764af3c4e3bd2867479391ee9ba84ee2299a43864", + "signature": [ + "0x7d1b3413b4458f69d0aebe81e5098372567cd989797040dbc66f9d6f1a133e4", + "0x4b0b40731b493a99dc57b10f22fedd866761f5e8b08511a70293424b07325" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x0", + "0x3", + "0x3", + "0x3681b52ed15670b0b8e15a10b4136de3f860551d0fc17965817f84e8a84e98f", + "0x226761904a9cc5", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x60a4a26bdf392822fec6f59666eb153b7c0a5af33ff1366bdf97b7ddad3cc09", + "actual_fee": { + "amount": "0x4e97e59b2207", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2a5127f07308542a46788a764af3c4e3bd2867479391ee9ba84ee2299a43864", + "0x3681b52ed15670b0b8e15a10b4136de3f860551d0fc17965817f84e8a84e98f", + "0x226761904a9cc5", + "0x0" + ] + }, + { + "from_address": "0x2a5127f07308542a46788a764af3c4e3bd2867479391ee9ba84ee2299a43864", + "keys": [ + "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" + ], + "data": [ + "0x60a4a26bdf392822fec6f59666eb153b7c0a5af33ff1366bdf97b7ddad3cc09", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x2a5127f07308542a46788a764af3c4e3bd2867479391ee9ba84ee2299a43864", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4e97e59b2207", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 7634, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 170, + "ecdsa_builtin_applications": 1 + } + } + }, + { + "transaction": { + "transaction_hash": "0x205d5683dcbdd755ebdfcca42308d4a0b12e4e03aed355e61be378923921816", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x13", + "max_fee": "0x759834e630fd", + "sender_address": "0x68afc18e2c74fbca2a4d20d9040a21ff6a59bb469dcb14f26b051fa8cc44fa8", + "signature": [ + "0x1", + "0x507d270c6a6ae8978a6a3d35c46a32b7da381e1cd54f178f707133efd2c20d7", + "0x123739f44cdc883ec5779483bc458826bcf6f841aa81234d701e6ee158f2759" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x418bebd3ad722651bedd5ecc24627cd5f128eb1d56b72d0f733e195008c6c84", + "0x333c39f8d25260", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x205d5683dcbdd755ebdfcca42308d4a0b12e4e03aed355e61be378923921816", + "actual_fee": { + "amount": "0x4f0b27e818f7", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x68afc18e2c74fbca2a4d20d9040a21ff6a59bb469dcb14f26b051fa8cc44fa8", + "0x418bebd3ad722651bedd5ecc24627cd5f128eb1d56b72d0f733e195008c6c84", + "0x333c39f8d25260", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x68afc18e2c74fbca2a4d20d9040a21ff6a59bb469dcb14f26b051fa8cc44fa8", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x4f0b27e818f7", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 10811, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 201, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x5e6d5cbd5454bc91a5e69f22b1f2d4e9843bd617f428dc3bbe85ad3a33274c7", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xa2", + "max_fee": "0x45cefef76bda3", + "sender_address": "0x7f5b8f82f34ae9833ffc005ca266bef940cc617c27caee8033cbaf6387c5484", + "signature": [ + "0x1", + "0x62bb6ceaa88d7420625280058ac06c4c34c4ab7188cf8cf49c01aed38661bd3", + "0x2478226971d1c0e3a8f3eaeb9018171f4cf160122dbf23b2f6c26b070024a15" + ], + "calldata": [ + "0x3", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x3bc75403f0d735653dce6c92437af5f88d5a4b49c6ef582454a66d3a033d429", + "0x7", + "0x18066", + "0x0", + "0x154c33a5052983d4d4", + "0x3feaca2f065102728", + "0x0", + "0x0", + "0x0", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x284134db6f39215e1d0a0a3dbd382fd7d28af6b3e3d5b77bba35c3a1d0da316", + "0x5", + "0x18066", + "0x0", + "0x7f5b8f82f34ae9833ffc005ca266bef940cc617c27caee8033cbaf6387c5484", + "0xffffffffffffffffffffffffffffffff", + "0xffffffffffffffffffffffffffffffff", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x3e8cfd4725c1e28fa4a6e3e468b4fcf75367166b850ac5f04e33ec843e82c1", + "0x2", + "0x18066", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5e6d5cbd5454bc91a5e69f22b1f2d4e9843bd617f428dc3bbe85ad3a33274c7", + "actual_fee": { + "amount": "0x2e8b59168420f", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "keys": [ + "0x243e1de00e8a6bc1dfa3e950e6ade24c52e4a25de4dee7fb5affe918ad1e744" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x1f4", + "0xa", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0xc6dba", + "0xc6e1e", + "0x154c33a5052983d4d4", + "0x4090120b4c32cc2b4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x1e4edcb5dad84e4a0b18ce2522746c3c57eb5b4831897b04d4c2f38d765e92e" + ], + "data": [ + "0x18066", + "0x0", + "0x154c33a5052983d4d4", + "0x4090120b4c32cc2b4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x290118457a640990dbcdeb696bd7f53f1d7d71d19b7d566efd42da398c908d3" + ], + "data": [ + "0x18066", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x7f5b8f82f34ae9833ffc005ca266bef940cc617c27caee8033cbaf6387c5484", + "0x40a7aacf3f8fa4f44", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "0x7f5b8f82f34ae9833ffc005ca266bef940cc617c27caee8033cbaf6387c5484", + "0x38517019fbe6", + "0x0" + ] + }, + { + "from_address": "0x1114c7103e12c2b2ecbd3a2472ba9c48ddcbf702b1c242dd570057e26212111", + "keys": [ + "0x33b678d8846a558f55fc9257950e74c1aac32ee4c836c3a620d1066cc8d493f" + ], + "data": [ + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x1f4", + "0xa", + "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "0x7f5b8f82f34ae9833ffc005ca266bef940cc617c27caee8033cbaf6387c5484", + "0xc6dba", + "0xc6e1e", + "0x40a7aacf3f8fa4f44", + "0x38517019fbe6" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x33b678d8846a558f55fc9257950e74c1aac32ee4c836c3a620d1066cc8d493f" + ], + "data": [ + "0x18066", + "0x0", + "0x7f5b8f82f34ae9833ffc005ca266bef940cc617c27caee8033cbaf6387c5484", + "0x40a7aacf3f8fa4f44", + "0x0", + "0x38517019fbe6", + "0x0" + ] + }, + { + "from_address": "0xfff107e2403123c7df78d91728a7ee5cfd557aec0fa2d2bdc5891c286bbfff", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7f5b8f82f34ae9833ffc005ca266bef940cc617c27caee8033cbaf6387c5484", + "0x0", + "0x18066", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7f5b8f82f34ae9833ffc005ca266bef940cc617c27caee8033cbaf6387c5484", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x2e8b59168420f", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 80451, + "pedersen_builtin_applications": 131, + "range_check_builtin_applications": 2650, + "bitwise_builtin_applications": 22, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 10 + } + } + }, + { + "transaction": { + "transaction_hash": "0x43d7f557138fd6cb18b364bbf1521da6f1bf0c1b1443dc6a7deefd93d3d71b", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x69", + "sender_address": "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "signature": [ + "0x72b360a970468bf82a9350c4e91a850581f258a3c128f61daf284d573a0a7b9", + "0x3904f57c38af8895f36f5a87dddf66d205fa95b03c0afce1a54ccb59bf0b640" + ], + "calldata": [ + "0x3", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0xd02ab486cedc0000", + "0x0", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x3", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x1a9ccd3", + "0x0", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x3f35dbce7a07ce455b128890d383c554afbc1b07cf7390a13e2d602a38c1a0a", + "0xc", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0xd02ab486cedc0000", + "0x0", + "0x1a9ccd3", + "0x0", + "0xcc00e41db63e0000", + "0x0", + "0x1a148ba", + "0x0", + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x65df2a3b" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x4dec", + "max_price_per_unit": "0x5bff178b7400" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x43d7f557138fd6cb18b364bbf1521da6f1bf0c1b1443dc6a7deefd93d3d71b", + "actual_fee": { + "amount": "0x958446343508f94", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0xd02ab486cedc0000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x1a9ccd3", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "0xd02ab486cedc0000", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" + ], + "data": [ + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0x333c", + "0x0" + ] + }, + { + "from_address": "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "0x1a99997", + "0x0" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x0", + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x12560e76f1cc", + "0x0" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0xe14a408baf7f453312eec68e9b7d728ec5337fbdf671f917ee8c80f3255232" + ], + "data": [ + "0x9701983e46a80e80cf4", + "0x134bbfdfb9" + ] + }, + { + "from_address": "0x66733193503019e4e9472f598ff32f15951a0ddb8fb5001f0beaa8bd1fb6840", + "keys": [ + "0x34e55c1cd55f1338241b50d352f0e91c7e4ffad0e4271d64eb347589ebdfd16" + ], + "data": [ + "0x7a6f98c03379b9513ca84cca1373ff452a7462a3b61598f0af5bb27ad7f76d1", + "0xd02ab486cedc0000", + "0x0", + "0x1a99997", + "0x0" + ] + }, + { + "from_address": "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x43d7f557138fd6cb18b364bbf1521da6f1bf0c1b1443dc6a7deefd93d3d71b" + ], + "data": [ + "0x3", + "0x1", + "0x1", + "0x1", + "0x1", + "0x6", + "0xd02ab486cedc0000", + "0x0", + "0x1a99997", + "0x0", + "0x12560e76f1cc", + "0x0" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x129f842db783fe43fa7c0c6029c46b71922f319f3ad38a3f27f043026b09414", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x958446343508f94", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 32800, + "pedersen_builtin_applications": 58, + "range_check_builtin_applications": 1105, + "bitwise_builtin_applications": 4, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x7361eabf10857f1d46738df8b18eab8a08b1a59d797885aa299e532186fbc3d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x16", + "max_fee": "0x1076281b3abf0", + "sender_address": "0x280fba02342abc46aa839ca5fb921819f53e2e92e06cbabb0005b32f2e629ad", + "signature": [ + "0x7b375cb278e07408b4d5d71c042f7cafb7cdcf58804c5c0c17b3e0bc6fc2e09", + "0x311a5853356ff57219705198f893133167f1d15da70d37bd026d958fdb06c11" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x743ec8059ac784431afaf4fa4460cfc81d6063f6a3ad6fe7607eef90b9f332e", + "0x1b1ae4d6e2ef500000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x7361eabf10857f1d46738df8b18eab8a08b1a59d797885aa299e532186fbc3d", + "actual_fee": { + "amount": "0x83f94a603f8e", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x280fba02342abc46aa839ca5fb921819f53e2e92e06cbabb0005b32f2e629ad", + "0x743ec8059ac784431afaf4fa4460cfc81d6063f6a3ad6fe7607eef90b9f332e", + "0x1b1ae4d6e2ef500000", + "0x0" + ] + }, + { + "from_address": "0x280fba02342abc46aa839ca5fb921819f53e2e92e06cbabb0005b32f2e629ad", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x7361eabf10857f1d46738df8b18eab8a08b1a59d797885aa299e532186fbc3d" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x280fba02342abc46aa839ca5fb921819f53e2e92e06cbabb0005b32f2e629ad", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x83f94a603f8e", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 8611, + "pedersen_builtin_applications": 20, + "range_check_builtin_applications": 167, + "ec_op_builtin_applications": 3 + } + } + }, + { + "transaction": { + "transaction_hash": "0x4ebe84b110d536f4b7bbb779d362b55cc0f9382f9a79543b6b1072ee134e348", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x20a", + "max_fee": "0x37942e81895fd", + "sender_address": "0x7de8ffcd0b37b934d773342e2e8ffaab643b555352b25bb41c6363b0cbbdfb5", + "signature": [ + "0x2ea3b56a90cbd78be33f94e4e9816e46ebf6d459b143def500bb0bc9a1f617b", + "0x4517ab0c9f9860e932ba749ee4d0c268579aa627385598efabbb72d61fe1256" + ], + "calldata": [ + "0x1", + "0x38925b0bcf4dce081042ca26a96300d9e181b910328db54a6c89e5451503f5", + "0x39b9c84d6a72745116ecdbd7f122af6d51a7183b6e764d621583713bcceb8cd", + "0x5", + "0x3011d94a3f803f624ae4a838d50c354c7d8d041968957eeab0653024e07ecfc", + "0x6d4e6c", + "0x6d7586", + "0x56335fd2aac4a692", + "0x1" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x4ebe84b110d536f4b7bbb779d362b55cc0f9382f9a79543b6b1072ee134e348", + "actual_fee": { + "amount": "0x1bcafdc50f915", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x38925b0bcf4dce081042ca26a96300d9e181b910328db54a6c89e5451503f5", + "0x7de8ffcd0b37b934d773342e2e8ffaab643b555352b25bb41c6363b0cbbdfb5", + "0x75f957d7a7d95730", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x38925b0bcf4dce081042ca26a96300d9e181b910328db54a6c89e5451503f5", + "0x7de8ffcd0b37b934d773342e2e8ffaab643b555352b25bb41c6363b0cbbdfb5", + "0x87773d9a1fd15", + "0x0" + ] + }, + { + "from_address": "0x38925b0bcf4dce081042ca26a96300d9e181b910328db54a6c89e5451503f5", + "keys": [ + "0x3dfe6670b0f4e60f951b8a326e7467613b2470d81881ba2deb540262824f1e", + "0x7de8ffcd0b37b934d773342e2e8ffaab643b555352b25bb41c6363b0cbbdfb5", + "0x3011d94a3f803f624ae4a838d50c354c7d8d041968957eeab0653024e07ecfc", + "0x6d4e6c", + "0x6d7586", + "0x0" + ], + "data": [ + "0x56335fd2aac4a692", + "0x1", + "0x75f957d7a7d95730", + "0x0", + "0x1", + "0x87773d9a1fd15", + "0x0", + "0x1", + "0x81d54bc009ff0", + "0x0", + "0x95b6ed98f0", + "0x0" + ] + }, + { + "from_address": "0x7de8ffcd0b37b934d773342e2e8ffaab643b555352b25bb41c6363b0cbbdfb5", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x4ebe84b110d536f4b7bbb779d362b55cc0f9382f9a79543b6b1072ee134e348" + ], + "data": [ + "0x1", + "0xa", + "0x75f957d7a7d95730", + "0x0", + "0x1", + "0x87773d9a1fd15", + "0x0", + "0x1", + "0x81d54bc009ff0", + "0x0", + "0x95b6ed98f0", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x7de8ffcd0b37b934d773342e2e8ffaab643b555352b25bb41c6363b0cbbdfb5", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1bcafdc50f915", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 72435, + "pedersen_builtin_applications": 45, + "range_check_builtin_applications": 5609, + "bitwise_builtin_applications": 128, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 3 + } + } + } + ] + }, + "id": 1 +} \ No newline at end of file diff --git a/rpc/tests/blockWithReceipts/sepoliaReceipts64159.json b/rpc/tests/blockWithReceipts/sepoliaReceipts64159.json new file mode 100644 index 00000000..1e3ce5eb --- /dev/null +++ b/rpc/tests/blockWithReceipts/sepoliaReceipts64159.json @@ -0,0 +1,14304 @@ +{ + "jsonrpc": "2.0", + "result": { + "status": "ACCEPTED_ON_L1", + "block_hash": "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964", + "parent_hash": "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5", + "block_number": 64159, + "new_root": "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0", + "timestamp": 1714901729, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0xdf0413d3c777", + "price_in_wei": "0x185f2d3eb5" + }, + "l1_data_gas_price": { + "price_in_fri": "0xa41c1219f8849", + "price_in_wei": "0x11ef315a9ab" + }, + "l1_da_mode": "BLOB", + "starknet_version": "0.13.1.1", + "transactions": [ + { + "transaction": { + "transaction_hash": "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5b", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x4db15c20dfbd745d60d345f17c5e7f126f3e8d8b8db3af2defaf4b182203df", + "0x698845744536a2a4259aab10cfa49d10d9306c9cb719bf028ac5fed5bc6080a" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x246", + "0x53", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5cb15a2f0e0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4933aba6e0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5c916d31e60", + "0x574254432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x56379b7f480", + "0x4254432f455552", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x2c60ee70", + "0x554e492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x80204b0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663750c6", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5ca56ee7200", + "0x4254432f555344", + "0x0", + "0x0", + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x491318b940", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375095", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f54f4c", + "0x4441492f555344", + "0x0", + "0x0", + "0x663750c5", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0", + "0x0", + "0x66375088", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0", + "0x0", + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c94ab5e500", + "0x574254432f555344", + "0x0", + "0x0", + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f4cce6", + "0x574254432f425443", + "0x0", + "0x0", + "0x663750df", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551abfd640", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663750d3", + "0x444546494c4c414d41", + "0x505241474d41", + "0xca1e94", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663750e6", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5846c", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663750e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x663750c5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663750e7", + "0x444546494c4c414d41", + "0x505241474d41", + "0x45c5798", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x6637508a", + "0x444546494c4c414d41", + "0x505241474d41", + "0x27103a980", + "0x4450492f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x663752d3", + "0x4b55434f494e", + "0x505241474d41", + "0x5cafb70b400", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752ce", + "0x4b55434f494e", + "0x505241474d41", + "0x4926595000", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752ca", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x663752ae", + "0x4b55434f494e", + "0x505241474d41", + "0x2c5fb5f0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663752b7", + "0x4b55434f494e", + "0x505241474d41", + "0x8016870", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5cab7a367fe", + "0x4254432f555344", + "0x1e06f4d257ecaebe9df20b800", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x4925334828", + "0x4554482f555344", + "0x3214c57c904b810f49aa800", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e4afd54e6a4ad51000", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e41a3ccee09cc00", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0", + "0x0", + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x2c5aef34", + "0x554e492f555344", + "0xc77502da41a59e97c800", + "0x0", + "0x663752d5", + "0x48554f4249", + "0x505241474d41", + "0x8028662", + "0x5354524b2f555344", + "0x29d90a1dcd3e1dae9e00", + "0x0", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x5cb2136f8fd", + "0x4254432f555344", + "0x3317dd415e633a00000000", + "0x0", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x492f54f3a9", + "0x4554482f555344", + "0x1d68b02c3424cc00000000", + "0x0", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41b0ba79a5b0600", + "0x0", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x2c5d3911", + "0x554e492f555344", + "0x246d4e811c7a5e000000", + "0x0", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x8028662", + "0x5354524b2f555344", + "0x2b50a0595bd600000000", + "0x0", + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb15aa9200", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752d3", + "0x4249545354414d50", + "0x505241474d41", + "0x491f6f4b00", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x663752d3", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0x562676b0200", + "0x4254432f455552", + "0x0", + "0x0", + "0x663752d4", + "0x4249545354414d50", + "0x505241474d41", + "0x2c617b10", + "0x554e492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663752d5", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663752d4", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5cb1dc9b3af", + "0x4254432f555344", + "0xeb56f34c978fd0", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x492bb9e912", + "0x4554482f555344", + "0x62656870346344", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fd8c85ba348", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b1be6c9ad87", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5c9c1ccc4a7", + "0x574254432f555344", + "0x796c529c6f0", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5633646a2a0", + "0x4254432f455552", + "0x2afd3d24ae4d", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x2c5ceaf4", + "0x554e492f555344", + "0x149867a0a27b9", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fcec6f2f8cc5", + "0x0", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x45ae58a", + "0x5a454e442f555344", + "0x3f531f57a5e", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x49171f4e8c", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551a34ef44", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0", + "0x0", + "0x663752d5", + "0x494e444558434f4f50", + "0x505241474d41", + "0x2545b6bdd", + "0x4450492f555344", + "0x502aeca0740", + "0x0", + "0x663752d7", + "0x42494e414e4345", + "0x505241474d41", + "0x2553e2b89", + "0x4450492f555344", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", + "actual_fee": { + "amount": "0x14308f32a66bcd", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5cb15a2f0e0", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4933aba6e0", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5c916d31e60", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x56379b7f480", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x2c60ee70", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x80204b0", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750c6", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5ca56ee7200", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x491318b940", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375095", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f54f4c", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750c5", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375088", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c94ab5e500", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750cc", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f4cce6", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750df", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551abfd640", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750d3", + "0x444546494c4c414d41", + "0x505241474d41", + "0xca1e94", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750e6", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5846c", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750c5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663750e7", + "0x444546494c4c414d41", + "0x505241474d41", + "0x45c5798", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637508a", + "0x444546494c4c414d41", + "0x505241474d41", + "0x27103a980", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d3", + "0x4b55434f494e", + "0x505241474d41", + "0x5cafb70b400", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752ce", + "0x4b55434f494e", + "0x505241474d41", + "0x4926595000", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752ca", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752ae", + "0x4b55434f494e", + "0x505241474d41", + "0x2c5fb5f0", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752b7", + "0x4b55434f494e", + "0x505241474d41", + "0x8016870", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5cab7a367fe", + "0x4254432f555344", + "0x1e06f4d257ecaebe9df20b800" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x4925334828", + "0x4554482f555344", + "0x3214c57c904b810f49aa800" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e4afd54e6a4ad51000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e41a3ccee09cc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x48554f4249", + "0x505241474d41", + "0x2c5aef34", + "0x554e492f555344", + "0xc77502da41a59e97c800" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x48554f4249", + "0x505241474d41", + "0x8028662", + "0x5354524b2f555344", + "0x29d90a1dcd3e1dae9e00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x5cb2136f8fd", + "0x4254432f555344", + "0x3317dd415e633a00000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x492f54f3a9", + "0x4554482f555344", + "0x1d68b02c3424cc00000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41b0ba79a5b0600" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x2c5d3911", + "0x554e492f555344", + "0x246d4e811c7a5e000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0x8028662", + "0x5354524b2f555344", + "0x2b50a0595bd600000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb15aa9200", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d3", + "0x4249545354414d50", + "0x505241474d41", + "0x491f6f4b00", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d3", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d2", + "0x4249545354414d50", + "0x505241474d41", + "0x562676b0200", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4249545354414d50", + "0x505241474d41", + "0x2c617b10", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5cb1dc9b3af", + "0x4254432f555344", + "0xeb56f34c978fd0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x492bb9e912", + "0x4554482f555344", + "0x62656870346344" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fd8c85ba348" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b1be6c9ad87" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5c9c1ccc4a7", + "0x574254432f555344", + "0x796c529c6f0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5633646a2a0", + "0x4254432f455552", + "0x2afd3d24ae4d" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x2c5ceaf4", + "0x554e492f555344", + "0x149867a0a27b9" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fcec6f2f8cc5" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x45ae58a", + "0x5a454e442f555344", + "0x3f531f57a5e" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x49171f4e8c", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551a34ef44", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d5", + "0x494e444558434f4f50", + "0x505241474d41", + "0x2545b6bdd", + "0x4450492f555344", + "0x502aeca0740" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752d7", + "0x42494e414e4345", + "0x505241474d41", + "0x2553e2b89", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x14308f32a66bcd", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 854762, + "pedersen_builtin_applications": 4916, + "range_check_builtin_applications": 26164, + "bitwise_builtin_applications": 249, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 4416 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5c", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x605ff2c95ffae61e96ad5481b3ddf769757aa550db9059df16e55952ab4c2da", + "0x1beb5c085b6e5096c57895f6ce1e9269cdc3d2f7a944ae35ac9effc42af95ee" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x6072a93afb6", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca44743880", + "0x4254432f555344", + "0x118686485c5984910000", + "0x0", + "0x1", + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5cab2b8fb00", + "0x4254432f555344", + "0x1e34df95235227a0000", + "0x0", + "0x1", + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1c7341476", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xed2b58e2a", + "0x4254432f55534454", + "0x2d1821da35b7d73100", + "0x0", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf6e817a13", + "0x4254432f55534454", + "0x1350d69e5c0cc1c0", + "0x192327e7000", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf0effcb0f", + "0x4254432f55534454", + "0x277e234227d7cd00", + "0x1905ddbbc00", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4c265e2090", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x49254afd9f", + "0x4554482f555344", + "0x883e9377eb162bb00", + "0x0", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4923b001f0", + "0x4554482f555344", + "0x5a411357f980b0b000", + "0x0", + "0x1", + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4a3e3034b3", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xbe18f17f", + "0x4554482f55534454", + "0xb54a81af01dc00", + "0x1905ddbbc00", + "0x1", + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xc2f9c074", + "0x4554482f55534454", + "0x5cf8bb46d02800", + "0x192327e7000", + "0x1", + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xbb45eb82", + "0x4554482f55534454", + "0xe7e15df9c107bb00", + "0x0", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5db47c3f000", + "0x4254432f555344", + "0x1bc436074f8e01", + "0x1905ddbbc00", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5fb8073c180", + "0x4254432f555344", + "0xf9d290eecba37", + "0x192327e7000", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x25516ce62a0e7", + "0x19407212400", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x5368331ce0fc8", + "0x18f61842000", + "0x1", + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229c882a03220", + "0x18f8590a400", + "0x1", + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xf02c9f7a0", + "0x4254432f55534454", + "0xc9b25aa2a2c", + "0x1905ddbbc00", + "0x1", + "0x663752d7", + "0x4f4b58", + "0x505241474d41", + "0xf6cfe13e0", + "0x4254432f55534454", + "0xc47328e90c4", + "0x192327e7000", + "0x1", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0xee8c27440", + "0x4254432f55534454", + "0x24a743d0318", + "0x18fcda9ac00", + "0x1", + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0xfe5604100", + "0x4254432f55534454", + "0x19c84605960", + "0x19407212400", + "0x1", + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9615dbeb4c4", + "0x18f61842000", + "0x1", + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x34a194e22ff", + "0x18f8590a400", + "0x1", + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4a144a6600", + "0x4554482f555344", + "0x70066a27bb5a0", + "0x1905ddbbc00", + "0x1", + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4ba4d57600", + "0x4554482f555344", + "0x3eb44b4d6c260", + "0x192327e7000", + "0x1", + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x494dcea180", + "0x4554482f555344", + "0x37c2ffcd5c540", + "0x18f61842000", + "0x1", + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400", + "0x1", + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbdc563f0", + "0x4554482f55534454", + "0x808fe02b9e4", + "0x1905ddbbc00", + "0x1", + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xc24cc0d0", + "0x4554482f55534454", + "0x2e86f16ef7c", + "0x192327e7000", + "0x1", + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbb89cbd0", + "0x4554482f55534454", + "0x4487bc67970", + "0x18f61842000", + "0x1", + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400", + "0x1", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5cb1ba07300", + "0x4254432f555344", + "0xa8ae41b3d818c80000", + "0x0", + "0x1", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xed3ea74a0", + "0x4254432f55534454", + "0x12f33035f69b20", + "0x0", + "0x1", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x49234f1d40", + "0x4554482f555344", + "0x17a3dd3899337d000", + "0x0", + "0x1", + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xbb2cb7b0", + "0x4554482f55534454", + "0x42186eabcfd7c", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", + "actual_fee": { + "amount": "0xb544a7c8f12b9", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x6072a93afb6", + "0x4254432f555344", + "0x0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca44743880", + "0x4254432f555344", + "0x118686485c5984910000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5cab2b8fb00", + "0x4254432f555344", + "0x1e34df95235227a0000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1c7341476", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xed2b58e2a", + "0x4254432f55534454", + "0x2d1821da35b7d73100", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf6e817a13", + "0x4254432f55534454", + "0x1350d69e5c0cc1c0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0xf0effcb0f", + "0x4254432f55534454", + "0x277e234227d7cd00", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4c265e2090", + "0x4554482f555344", + "0x0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x49254afd9f", + "0x4554482f555344", + "0x883e9377eb162bb00", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4923b001f0", + "0x4554482f555344", + "0x5a411357f980b0b000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x42494e414e4345", + "0x505241474d41", + "0x4a3e3034b3", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xbe18f17f", + "0x4554482f55534454", + "0xb54a81af01dc00", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xc2f9c074", + "0x4554482f55534454", + "0x5cf8bb46d02800", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d6", + "0x42494e414e4345", + "0x505241474d41", + "0xbb45eb82", + "0x4554482f55534454", + "0xe7e15df9c107bb00", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5db47c3f000", + "0x4254432f555344", + "0x1bc436074f8e01", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5fb8073c180", + "0x4254432f555344", + "0xf9d290eecba37", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x25516ce62a0e7", + "0x19407212400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x5368331ce0fc8", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229c882a03220", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xf02c9f7a0", + "0x4254432f55534454", + "0xc9b25aa2a2c", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d7", + "0x4f4b58", + "0x505241474d41", + "0xf6cfe13e0", + "0x4254432f55534454", + "0xc47328e90c4", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0xee8c27440", + "0x4254432f55534454", + "0x24a743d0318", + "0x18fcda9ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d5", + "0x4f4b58", + "0x505241474d41", + "0xfe5604100", + "0x4254432f55534454", + "0x19c84605960", + "0x19407212400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9615dbeb4c4", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d6", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x34a194e22ff", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4a144a6600", + "0x4554482f555344", + "0x70066a27bb5a0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4ba4d57600", + "0x4554482f555344", + "0x3eb44b4d6c260", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x494dcea180", + "0x4554482f555344", + "0x37c2ffcd5c540", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d8", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbdc563f0", + "0x4554482f55534454", + "0x808fe02b9e4", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xc24cc0d0", + "0x4554482f55534454", + "0x2e86f16ef7c", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbb89cbd0", + "0x4554482f55534454", + "0x4487bc67970", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d9", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x5cb1ba07300", + "0x4254432f555344", + "0xa8ae41b3d818c80000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xed3ea74a0", + "0x4254432f55534454", + "0x12f33035f69b20", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0x49234f1d40", + "0x4554482f555344", + "0x17a3dd3899337d000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663752d4", + "0x4259424954", + "0x505241474d41", + "0xbb2cb7b0", + "0x4554482f55534454", + "0x42186eabcfd7c", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xb544a7c8f12b9", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 397232, + "pedersen_builtin_applications": 2299, + "range_check_builtin_applications": 12108, + "bitwise_builtin_applications": 114, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 2496 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x32", + "max_fee": "0x4b5b075cca932", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x14c577c4dcbe6857e4d097fb0770289820019d4d67819501e813bd0daf0a540", + "0x4bfe882403bb9adad0fafdf740df449311ce47c7e79bcb94ba09ee366e432df" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x6c6d617ab2d657532de8fe2648428fc912dbc5cfea7ba7440d23e1387e3d8b", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x1eba00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", + "actual_fee": { + "amount": "0x3240eda520b41", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8" + ], + "data": [ + "0x1b31d2900", + "0x0" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x4ff9c92b4b06fc7d4923606d69abafc9051b0e41b0d7954692bd38be4b99e7" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x6c6d617ab2d657532de8fe2648428fc912dbc5cfea7ba7440d23e1387e3d8b", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x556e69717565" + ], + "data": [ + "0x2", + "0x5573654c6f74", + "0x1eba000000010004", + "0xe520001" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x2a992f38709bbb47a4d6775ba0863c3fb72e0f309972ace179ebaefb2fc60b3" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x6c6d617ab2d657532de8fe2648428fc912dbc5cfea7ba7440d23e1387e3d8b", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x5072657061696441677265656d656e74" + ], + "data": [ + "0x3", + "0x1eba000000010004", + "0x1", + "0xe520001", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x663752e1", + "0x665f6c81", + "0x0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x33b828dbd1d9227027639191ca073fcd284c1a609ed4ce9bd0a611369f5c268" + ], + "data": [ + "0x4", + "0x1eba00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x3240eda520b41", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 58442, + "pedersen_builtin_applications": 49, + "range_check_builtin_applications": 2134, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 68, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 704 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5d", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x6fc52a609784800f3aa0848121b9d328568e4c518a0a80cc51913716be863ed", + "0x52eda1b2ad692dc861089dff441a760740e0d1ff4688682e0a0980fb07c3acd" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x246", + "0x53", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5cacdd019a0", + "0x4254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x49294c9f60", + "0x4554482f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8faf5a280", + "0x574254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x562fe09f7c0", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x2c627510", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0", + "0x0", + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0", + "0x0", + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0", + "0x0", + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x6637537d", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f5e100", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x66375375", + "0x4b55434f494e", + "0x505241474d41", + "0x5caef84f200", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375379", + "0x4b55434f494e", + "0x505241474d41", + "0x492a1a9dc0", + "0x4554482f555344", + "0x0", + "0x0", + "0x6637536f", + "0x4b55434f494e", + "0x505241474d41", + "0xf424a", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637530d", + "0x4b55434f494e", + "0x505241474d41", + "0x2c5a10a0", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637534b", + "0x4b55434f494e", + "0x505241474d41", + "0x802c800", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5ca78865e45", + "0x4254432f555344", + "0x1e073d4339087b8544de91900", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x49246cf141", + "0x4554482f555344", + "0x322097b0742185696c0dd00", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e6acfb874eaeba7000", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x2c6080ce", + "0x554e492f555344", + "0xc7a83b0e7d53c1bc6000", + "0x0", + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x804478b", + "0x5354524b2f555344", + "0x29e22bcf5ef7ba6be500", + "0x0", + "0x6637537b", + "0x4f4b58", + "0x505241474d41", + "0x5caabceea48", + "0x4254432f555344", + "0x3310afa265fea000000000", + "0x0", + "0x6637537b", + "0x4f4b58", + "0x505241474d41", + "0x492645e7de", + "0x4554482f555344", + "0x1d661b252653ad00000000", + "0x0", + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41c49f02452e080", + "0x0", + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0x2c5ebfa5", + "0x554e492f555344", + "0x24671f409590fa000000", + "0x0", + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0x803bed8", + "0x5354524b2f555344", + "0x2b4f26a557053c000000", + "0x0", + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb3f63b900", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0x56291242900", + "0x4254432f455552", + "0x0", + "0x0", + "0x66375377", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5cabc867876", + "0x4254432f555344", + "0xeb4b7968bdfcd8", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x49220309e7", + "0x4554482f555344", + "0x6275e47ad2d734", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4ff00e2ba109", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b1ac7862f12", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5c9aabc5ad8", + "0x574254432f555344", + "0x7745201c165", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x56344bae440", + "0x4254432f455552", + "0x2ae33791bd5e", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x2c5fbd85", + "0x554e492f555344", + "0x149905a590614", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x8040cf5", + "0x5354524b2f555344", + "0x1fd439accefa4", + "0x0", + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x45af912", + "0x5a454e442f555344", + "0x3f710285042", + "0x0", + "0x6637537a", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4917199e4c", + "0x4554482f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551ab282ec", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0", + "0x0", + "0x6637537c", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254b3cdaf", + "0x4450492f555344", + "0x4ff69c4fbde", + "0x0", + "0x6637537d", + "0x42494e414e4345", + "0x505241474d41", + "0x25560c033", + "0x4450492f555344", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", + "actual_fee": { + "amount": "0x17d525390dd78d", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5cacdd019a0", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x49294c9f60", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8faf5a280", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x562fe09f7c0", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x2c627510", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537d", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f5e100", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375375", + "0x4b55434f494e", + "0x505241474d41", + "0x5caef84f200", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375379", + "0x4b55434f494e", + "0x505241474d41", + "0x492a1a9dc0", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637536f", + "0x4b55434f494e", + "0x505241474d41", + "0xf424a", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637530d", + "0x4b55434f494e", + "0x505241474d41", + "0x2c5a10a0", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637534b", + "0x4b55434f494e", + "0x505241474d41", + "0x802c800", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5ca78865e45", + "0x4254432f555344", + "0x1e073d4339087b8544de91900" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x49246cf141", + "0x4554482f555344", + "0x322097b0742185696c0dd00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e6acfb874eaeba7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x2c6080ce", + "0x554e492f555344", + "0xc7a83b0e7d53c1bc6000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x48554f4249", + "0x505241474d41", + "0x804478b", + "0x5354524b2f555344", + "0x29e22bcf5ef7ba6be500" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4f4b58", + "0x505241474d41", + "0x5caabceea48", + "0x4254432f555344", + "0x3310afa265fea000000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4f4b58", + "0x505241474d41", + "0x492645e7de", + "0x4554482f555344", + "0x1d661b252653ad00000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41c49f02452e080" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0x2c5ebfa5", + "0x554e492f555344", + "0x24671f409590fa000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4f4b58", + "0x505241474d41", + "0x803bed8", + "0x5354524b2f555344", + "0x2b4f26a557053c000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb3f63b900", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375378", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375379", + "0x4249545354414d50", + "0x505241474d41", + "0x56291242900", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375377", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5cabc867876", + "0x4254432f555344", + "0xeb4b7968bdfcd8" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x49220309e7", + "0x4554482f555344", + "0x6275e47ad2d734" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4ff00e2ba109" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b1ac7862f12" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5c9aabc5ad8", + "0x574254432f555344", + "0x7745201c165" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x56344bae440", + "0x4254432f455552", + "0x2ae33791bd5e" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x2c5fbd85", + "0x554e492f555344", + "0x149905a590614" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x8040cf5", + "0x5354524b2f555344", + "0x1fd439accefa4" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x4259424954", + "0x505241474d41", + "0x45af912", + "0x5a454e442f555344", + "0x3f710285042" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4917199e4c", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551ab282ec", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537b", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537c", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254b3cdaf", + "0x4450492f555344", + "0x4ff69c4fbde" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537d", + "0x42494e414e4345", + "0x505241474d41", + "0x25560c033", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x17d525390dd78d", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 854426, + "pedersen_builtin_applications": 4916, + "range_check_builtin_applications": 26152, + "bitwise_builtin_applications": 249, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 5248 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x33", + "max_fee": "0x1bad55a98e1c1", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x3fd4d5bc46ca2a9b30073178c06fc5b4298e1ac6cc568dc40afeb808b3ad9f6", + "0x44901ac2ce0e794578e2df07e4d9c40fa247de2bd5002cb0d13afd88dcc11af" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265706f73736573734275696c64696e67", + "0x4", + "0x5", + "0x1b48", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", + "actual_fee": { + "amount": "0x1276c2c6477ed", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x436f6e74726f6c" + ], + "data": [ + "0x1", + "0x1b480005", + "0x1", + "0xe52" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x1085a37d58e6a75db0dadc9bb9e6707ed9c5630aec61fdcdcd832decec751c0" + ], + "data": [ + "0x5", + "0x1b48", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1276c2c6477ed", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 34408, + "pedersen_builtin_applications": 27, + "range_check_builtin_applications": 1077, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 65, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 256 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9a6", + "max_fee": "0x7bee46410b33b", + "sender_address": "0x788722c9ffad95d40738a65d733135c03c9b169505d34fb4dc32b5fe8bcc113", + "signature": [ + "0x4c02fc283807264be825c8c0e58215703564d9f81ceb63ff6074cde42605536", + "0xab864400abe211c9590ea3873666db371a8e07439b29b4f99aeccdff5cc408" + ], + "calldata": [ + "0x2", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x5", + "0x5265736f6c766552616e646f6d4576656e74", + "0x3", + "0x0", + "0x1", + "0xead", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265636569766544656c6976657279", + "0x4", + "0x9", + "0x14cb0", + "0x1", + "0xead" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", + "actual_fee": { + "amount": "0x295a1666ee788", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x43726577", + "0x1" + ], + "data": [ + "0x1", + "0xead0001", + "0x788722c9ffad95d40738a65d733135c03c9b169505d34fb4dc32b5fe8bcc113", + "0x5", + "0x5fc6", + "0x4e5a", + "0x5bf4", + "0x5bf2", + "0x4e56", + "0x663725a2", + "0x66375489", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x496e76656e746f7279" + ], + "data": [ + "0x2", + "0x24900005", + "0x2", + "0xa", + "0x1", + "0x1a0ec50a8", + "0x15ef420e2", + "0x0", + "0x0", + "0xf", + "0x21", + "0xc489f", + "0x4a", + "0x7f4d2", + "0x2f", + "0x12886", + "0x30", + "0x5d505", + "0x31", + "0x896f", + "0x76", + "0xa64b5", + "0x39", + "0x47f8", + "0x4c", + "0x38387", + "0x55", + "0x42725", + "0x56", + "0x3d000", + "0x57", + "0x2fd4d6", + "0x1f", + "0x1e51", + "0x4b", + "0xd738", + "0x4d", + "0x7e3a6", + "0x6a", + "0x21b0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x44656c6976657279" + ], + "data": [ + "0x1", + "0x14cb00009", + "0x2", + "0x5", + "0x1dc1", + "0x2", + "0x5", + "0x2490", + "0x2", + "0x66373837", + "0x8", + "0x1f", + "0x1e51", + "0x2f", + "0x103a0", + "0x30", + "0x491d0", + "0x31", + "0x1abb", + "0x4b", + "0xd738", + "0x4c", + "0x1a2bc", + "0x4d", + "0x7e3a6", + "0x6a", + "0x21b0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x2dc24e3b0e2d3292a9686c8468d7b0a1456f1825b9cf7fc6e1d228d81de7e81" + ], + "data": [ + "0x5", + "0x1dc1", + "0x2", + "0x8", + "0x1f", + "0x1e51", + "0x2f", + "0x103a0", + "0x30", + "0x491d0", + "0x31", + "0x1abb", + "0x4b", + "0xd738", + "0x4c", + "0x1a2bc", + "0x4d", + "0x7e3a6", + "0x6a", + "0x21b0", + "0x5", + "0x2490", + "0x2", + "0x9", + "0x14cb0", + "0x1", + "0xead", + "0x788722c9ffad95d40738a65d733135c03c9b169505d34fb4dc32b5fe8bcc113" + ] + }, + { + "from_address": "0x788722c9ffad95d40738a65d733135c03c9b169505d34fb4dc32b5fe8bcc113", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8" + ], + "data": [ + "0x2", + "0x1", + "0x0", + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x788722c9ffad95d40738a65d733135c03c9b169505d34fb4dc32b5fe8bcc113", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x295a1666ee788", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 59595, + "pedersen_builtin_applications": 40, + "range_check_builtin_applications": 2740, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 23, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 576 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x34", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x57fb1e1d6de3c6610001f798a415af1ee1ede9acdd410fe8a2320056f275c2a", + "0x75a3762f19db243125fdf04ce1aa051c66b5d8cb2752af099da977f43ef795f" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x738061707d1ba5a73ca4419bd49f470d3eb5860cef23dc1d91212646e57d161", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x4300000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", + "actual_fee": { + "amount": "0x294649122b857", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8" + ], + "data": [ + "0x1b31d2900", + "0x0" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x4ff9c92b4b06fc7d4923606d69abafc9051b0e41b0d7954692bd38be4b99e7" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x738061707d1ba5a73ca4419bd49f470d3eb5860cef23dc1d91212646e57d161", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x556e69717565" + ], + "data": [ + "0x2", + "0x5573654c6f74", + "0x43000000010004", + "0xe520001" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x2a992f38709bbb47a4d6775ba0863c3fb72e0f309972ace179ebaefb2fc60b3" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x738061707d1ba5a73ca4419bd49f470d3eb5860cef23dc1d91212646e57d161", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x5072657061696441677265656d656e74" + ], + "data": [ + "0x3", + "0x43000000010004", + "0x1", + "0xe520001", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x663752e1", + "0x665f6c81", + "0x0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x33b828dbd1d9227027639191ca073fcd284c1a609ed4ce9bd0a611369f5c268" + ], + "data": [ + "0x4", + "0x4300000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x294649122b857", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 57708, + "pedersen_builtin_applications": 48, + "range_check_builtin_applications": 2099, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 66, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 576 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x76", + "max_fee": "0x18bfe6fa45de5", + "sender_address": "0x682e5c40cbf3c1c008d615d3d02ecccf859b37f888ef1d4b694d5b8da38f808", + "signature": [ + "0x75726195a9d84eb19825d3e8119ab1929f6e586654c8e27cb03e27528ee0ec5", + "0x4bcb815945933bd90c1b53f8c1df6de34f4bca14325ef796d80792bbddd4e3c" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x3aa8a8337ac33d85a6677ca2212a58dbabeb6888decb48a8dd152521adb0a5e", + "0x6f05b59d3b20000", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", + "actual_fee": { + "amount": "0xd9979baa5fed", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x682e5c40cbf3c1c008d615d3d02ecccf859b37f888ef1d4b694d5b8da38f808", + "0x3aa8a8337ac33d85a6677ca2212a58dbabeb6888decb48a8dd152521adb0a5e", + "0x6f05b59d3b20000", + "0x0" + ] + }, + { + "from_address": "0x682e5c40cbf3c1c008d615d3d02ecccf859b37f888ef1d4b694d5b8da38f808", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73" + ], + "data": [ + "0x1", + "0x1", + "0x1" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x682e5c40cbf3c1c008d615d3d02ecccf859b37f888ef1d4b694d5b8da38f808", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xd9979baa5fed", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 9027, + "pedersen_builtin_applications": 25, + "range_check_builtin_applications": 187, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 192 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5e", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x3e52c022d30c2f70d677901da82141c034f763a59ce6650c61d32855475344f", + "0x316d21bc3061f59c26642339e01d25ce0e6e6f254747e4bd1d2f1b7aa1df43d" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x238", + "0x51", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca674afba0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x491f2aa0e0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f715d040", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x562b6f5dca0", + "0x4254432f455552", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x2c5f67d0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0", + "0x0", + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0", + "0x0", + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0", + "0x0", + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753b5", + "0x4b55434f494e", + "0x505241474d41", + "0x5ca67065180", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b5", + "0x4b55434f494e", + "0x505241474d41", + "0x491f9d11c0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753a8", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637534b", + "0x4b55434f494e", + "0x505241474d41", + "0x802c800", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5ca2b497301", + "0x4254432f555344", + "0x1e0598dbf5b7a0ce2c162ac00", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x491b564495", + "0x4554482f555344", + "0x321ce01d2debf04b547ad00", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x7e636d4c86e6b857000", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e42e2fa2f239dc0", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5ea9660", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x2c5c9cd6", + "0x554e492f555344", + "0xc78c66f13a84a6d8f600", + "0x0", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5ca631984e9", + "0x4254432f555344", + "0x330d354cdd3ce400000000", + "0x0", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x491c337e21", + "0x4554482f555344", + "0x1d61d10dbbdd5f00000000", + "0x0", + "0x663753b4", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41c37c01c709980", + "0x0", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0x2c5bb27e", + "0x554e492f555344", + "0x24601581819082000000", + "0x0", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x80397c9", + "0x5354524b2f555344", + "0x2b41b84ca9c5da000000", + "0x0", + "0x663753b5", + "0x4249545354414d50", + "0x505241474d41", + "0x5cafdd30e00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x663753b7", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x663753b5", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753b7", + "0x4249545354414d50", + "0x505241474d41", + "0x562499d9d00", + "0x4254432f455552", + "0x0", + "0x0", + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5ca6dad9da0", + "0x4254432f555344", + "0xeb5b0c136256b8", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4918a7b54d", + "0x4554482f555344", + "0x6269b77b9cc298", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4ff0079dcaa7", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b08d76ab1d1", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5c985a2f223", + "0x574254432f555344", + "0x7756c918be7", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x562d9ae1b40", + "0x4254432f455552", + "0x2adddb21da5c", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x2c5c1423", + "0x554e492f555344", + "0x14974a35cdbac", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fd149a8c3774", + "0x0", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4584d90", + "0x5a454e442f555344", + "0x3f75543491b", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x491719a810", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753b9", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551f3408e0", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753ba", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254bee0f3", + "0x4450492f555344", + "0x4ff65da76b1", + "0x0", + "0x663753bd", + "0x42494e414e4345", + "0x505241474d41", + "0x25535d2a1", + "0x4450492f555344", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", + "actual_fee": { + "amount": "0x130c474b170935", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca674afba0", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x491f2aa0e0", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f715d040", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x562b6f5dca0", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x2c5f67d0", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c897768", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b5", + "0x4b55434f494e", + "0x505241474d41", + "0x5ca67065180", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b5", + "0x4b55434f494e", + "0x505241474d41", + "0x491f9d11c0", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753a8", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637534b", + "0x4b55434f494e", + "0x505241474d41", + "0x802c800", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5ca2b497301", + "0x4254432f555344", + "0x1e0598dbf5b7a0ce2c162ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x491b564495", + "0x4554482f555344", + "0x321ce01d2debf04b547ad00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x7e636d4c86e6b857000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e42e2fa2f239dc0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x5ea9660", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x48554f4249", + "0x505241474d41", + "0x2c5c9cd6", + "0x554e492f555344", + "0xc78c66f13a84a6d8f600" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5ca631984e9", + "0x4254432f555344", + "0x330d354cdd3ce400000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x491c337e21", + "0x4554482f555344", + "0x1d61d10dbbdd5f00000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b4", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41c37c01c709980" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0x2c5bb27e", + "0x554e492f555344", + "0x24601581819082000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x80397c9", + "0x5354524b2f555344", + "0x2b41b84ca9c5da000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b5", + "0x4249545354414d50", + "0x505241474d41", + "0x5cafdd30e00", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b7", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b5", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b7", + "0x4249545354414d50", + "0x505241474d41", + "0x562499d9d00", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b6", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x535441524b4e4554", + "0x505241474d41", + "0x430677a", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5ca6dad9da0", + "0x4254432f555344", + "0xeb5b0c136256b8" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4918a7b54d", + "0x4554482f555344", + "0x6269b77b9cc298" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4ff0079dcaa7" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3b08d76ab1d1" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5c985a2f223", + "0x574254432f555344", + "0x7756c918be7" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x562d9ae1b40", + "0x4254432f455552", + "0x2adddb21da5c" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x2c5c1423", + "0x554e492f555344", + "0x14974a35cdbac" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fd149a8c3774" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4584d90", + "0x5a454e442f555344", + "0x3f75543491b" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x491719a810", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b9", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x551f3408e0", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753b8", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753ba", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254bee0f3", + "0x4450492f555344", + "0x4ff65da76b1" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753bd", + "0x42494e414e4345", + "0x505241474d41", + "0x25535d2a1", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x130c474b170935", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 833764, + "pedersen_builtin_applications": 4798, + "range_check_builtin_applications": 25516, + "bitwise_builtin_applications": 243, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 4160 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b5f", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x3d50997904c49fe06a6e3fffc73a7a03d5f00dc69ab7649255f425c927faaaa", + "0x4ae8019d94da76d3af01ed39d55ce9c069905de4324fc56f5c2e11f679a4baf" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca273f6a00", + "0x4254432f555344", + "0x1e32082a190864c0000", + "0x0", + "0x1", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x606a16b8bd3", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5c9bb0d9b26", + "0x4254432f555344", + "0x1184e665e4ffbaa7cc00", + "0x0", + "0x1", + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1459a3c18", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xf0d7efb7b", + "0x4254432f55534454", + "0x285fe1bc1b6f25c0", + "0x1905ddbbc00", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xed13b041c", + "0x4254432f55534454", + "0x2d0e55b55b365dfc00", + "0x0", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xf6d2251db", + "0x4254432f55534454", + "0x134f1f137bd26bc0", + "0x192327e7000", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x4a2f863561", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x49149ad136", + "0x4554482f555344", + "0x5a2e76a01e557e6e00", + "0x0", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x4c1d366f5c", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x491a1df35e", + "0x4554482f555344", + "0x8829c25db594a1600", + "0x0", + "0x1", + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xbdea2ab5", + "0x4554482f55534454", + "0xb51de5a2857400", + "0x1905ddbbc00", + "0x1", + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xc2da0254", + "0x4554482f55534454", + "0x5ce9987031e800", + "0x192327e7000", + "0x1", + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xbb15e496", + "0x4554482f55534454", + "0xe7dda7fa30df2080", + "0x0", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5dac8362100", + "0x4254432f555344", + "0x1bc1cf3e36edf0", + "0x1905ddbbc00", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5fb3db1e980", + "0x4254432f555344", + "0xf9a60bf1a7948", + "0x192327e7000", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2552015cdbadf", + "0x19407212400", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000", + "0x1", + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400", + "0x1", + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0xf02c9f7a0", + "0x4254432f55534454", + "0xc97e79f4ecc", + "0x1905ddbbc00", + "0x1", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc453e6f40c0", + "0x192327e7000", + "0x1", + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00", + "0x1", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x198bcf7966a", + "0x19407212400", + "0x1", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9606e3c8b60", + "0x18f61842000", + "0x1", + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400", + "0x1", + "0x663753bc", + "0x4f4b58", + "0x505241474d41", + "0x4a0535ecc0", + "0x4554482f555344", + "0x6fed10b96f758", + "0x1905ddbbc00", + "0x1", + "0x663753bc", + "0x4f4b58", + "0x505241474d41", + "0x4b91c2a600", + "0x4554482f555344", + "0x3eaa9abf8a95f", + "0x192327e7000", + "0x1", + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0x493fbd8e80", + "0x4554482f555344", + "0x37bf83124e79f", + "0x18f61842000", + "0x1", + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400", + "0x1", + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0xbd84b170", + "0x4554482f55534454", + "0x805d8800b20", + "0x1905ddbbc00", + "0x1", + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0xc235b660", + "0x4554482f55534454", + "0x2e81e949068", + "0x192327e7000", + "0x1", + "0x663753be", + "0x4f4b58", + "0x505241474d41", + "0xbb6776c0", + "0x4554482f55534454", + "0x4477353a3e0", + "0x18f61842000", + "0x1", + "0x663753b4", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400", + "0x1", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5ca7daca880", + "0x4254432f555344", + "0xa891a2123920900000", + "0x0", + "0x1", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xed2084720", + "0x4254432f55534454", + "0x12f067c1ee213b", + "0x0", + "0x1", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4918483d00", + "0x4554482f555344", + "0x17a3401551876d000", + "0x0", + "0x1", + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xbb111960", + "0x4554482f55534454", + "0x4226da64cfda7", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", + "actual_fee": { + "amount": "0xb544a7c8f12b9", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca273f6a00", + "0x4254432f555344", + "0x1e32082a190864c0000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x606a16b8bd3", + "0x4254432f555344", + "0x0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5c9bb0d9b26", + "0x4254432f555344", + "0x1184e665e4ffbaa7cc00", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1459a3c18", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xf0d7efb7b", + "0x4254432f55534454", + "0x285fe1bc1b6f25c0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xed13b041c", + "0x4254432f55534454", + "0x2d0e55b55b365dfc00", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0xf6d2251db", + "0x4254432f55534454", + "0x134f1f137bd26bc0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x4a2f863561", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x49149ad136", + "0x4554482f555344", + "0x5a2e76a01e557e6e00", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x4c1d366f5c", + "0x4554482f555344", + "0x0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x42494e414e4345", + "0x505241474d41", + "0x491a1df35e", + "0x4554482f555344", + "0x8829c25db594a1600", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xbdea2ab5", + "0x4554482f55534454", + "0xb51de5a2857400", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xc2da0254", + "0x4554482f55534454", + "0x5ce9987031e800", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753ba", + "0x42494e414e4345", + "0x505241474d41", + "0xbb15e496", + "0x4554482f55534454", + "0xe7dda7fa30df2080", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5dac8362100", + "0x4254432f555344", + "0x1bc1cf3e36edf0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5fb3db1e980", + "0x4254432f555344", + "0xf9a60bf1a7948", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2552015cdbadf", + "0x19407212400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0xf02c9f7a0", + "0x4254432f55534454", + "0xc97e79f4ecc", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc453e6f40c0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x198bcf7966a", + "0x19407212400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9606e3c8b60", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b9", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753bc", + "0x4f4b58", + "0x505241474d41", + "0x4a0535ecc0", + "0x4554482f555344", + "0x6fed10b96f758", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753bc", + "0x4f4b58", + "0x505241474d41", + "0x4b91c2a600", + "0x4554482f555344", + "0x3eaa9abf8a95f", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753ba", + "0x4f4b58", + "0x505241474d41", + "0x493fbd8e80", + "0x4554482f555344", + "0x37bf83124e79f", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0xbd84b170", + "0x4554482f55534454", + "0x805d8800b20", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753bb", + "0x4f4b58", + "0x505241474d41", + "0xc235b660", + "0x4554482f55534454", + "0x2e81e949068", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753be", + "0x4f4b58", + "0x505241474d41", + "0xbb6776c0", + "0x4554482f55534454", + "0x4477353a3e0", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b4", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x5ca7daca880", + "0x4254432f555344", + "0xa891a2123920900000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xed2084720", + "0x4254432f55534454", + "0x12f067c1ee213b", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0x4918483d00", + "0x4554482f555344", + "0x17a3401551876d000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753b8", + "0x4259424954", + "0x505241474d41", + "0xbb111960", + "0x4554482f55534454", + "0x4226da64cfda7", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xb544a7c8f12b9", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 397232, + "pedersen_builtin_applications": 2299, + "range_check_builtin_applications": 12108, + "bitwise_builtin_applications": 114, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 2496 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x35", + "max_fee": "0x1bad55a98e1c1", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x6bd997de8e01fb712c4c53a57883ce6246eec6ffb60519e021c89d0830bf19", + "0x7e9d72cdaacdceacbb584cfc792947fb235023555ff228bc8b656d6c2434002" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265706f73736573734275696c64696e67", + "0x4", + "0x5", + "0x9cd", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", + "actual_fee": { + "amount": "0x1276c2c6477ed", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x436f6e74726f6c" + ], + "data": [ + "0x1", + "0x9cd0005", + "0x1", + "0xe52" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x1085a37d58e6a75db0dadc9bb9e6707ed9c5630aec61fdcdcd832decec751c0" + ], + "data": [ + "0x5", + "0x9cd", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1276c2c6477ed", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 34408, + "pedersen_builtin_applications": 27, + "range_check_builtin_applications": 1077, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 65, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 256 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x5", + "sender_address": "0x1bef1d205c047ee5d24ed873f1fa8c6c6cc37d0d3808266e2fe9a64b6ff9474", + "signature": [ + "0x61d74b8b1a72be739b8e62e579975e05f6185ab11f5d24ad23873e923c079ab", + "0x5d69947a53907d0113a5e9713afbfd03d286771995fb4b92f059b614a7df6ac" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x5", + "0x47b774d6ee3573805f590bc556f500022d6d8f2b01a741239ff93ca22e6dddb", + "0x7e3c89140da097d5e30b51d617ea9ed4e8bbb0a9172e8a9359910d43dba9daa", + "0x1", + "0x1", + "0x3" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x1aa6", + "max_price_per_unit": "0x14e861dbd4065" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", + "actual_fee": { + "amount": "0xba17eb3eacf5bad", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "keys": [ + "0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d" + ], + "data": [ + "0x20b3f28573bb2882a0555a63ae4dc35296f53e214c8be816117951d7953598c", + "0x1bef1d205c047ee5d24ed873f1fa8c6c6cc37d0d3808266e2fe9a64b6ff9474", + "0x1", + "0x47b774d6ee3573805f590bc556f500022d6d8f2b01a741239ff93ca22e6dddb", + "0x1", + "0x3", + "0x7e3c89140da097d5e30b51d617ea9ed4e8bbb0a9172e8a9359910d43dba9daa" + ] + }, + { + "from_address": "0x1bef1d205c047ee5d24ed873f1fa8c6c6cc37d0d3808266e2fe9a64b6ff9474", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d" + ], + "data": [ + "0x1", + "0x1", + "0x20b3f28573bb2882a0555a63ae4dc35296f53e214c8be816117951d7953598c" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x1bef1d205c047ee5d24ed873f1fa8c6c6cc37d0d3808266e2fe9a64b6ff9474", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xba17eb3eacf5bad", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 9454, + "pedersen_builtin_applications": 31, + "range_check_builtin_applications": 181, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 288 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b60", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0xbb14f68cc2b09ef26c6519378ce709b12b2f4848a58476b3d4a83a9ea53e2b", + "0x3fa506dd6617ffa68628473ef4aa1d5d3c5bac2603294b450b2bacd93de5fb2" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x215", + "0x4c", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5cacdd019a0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x4927645760", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f4c2b880", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x56319c14e00", + "0x4254432f455552", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x2c627510", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0", + "0x0", + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0", + "0x0", + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0", + "0x0", + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c899bd1", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x663753f3", + "0x4b55434f494e", + "0x505241474d41", + "0x5cadf6d1280", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f5", + "0x4b55434f494e", + "0x505241474d41", + "0x4927e60a80", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753ed", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753ec", + "0x4b55434f494e", + "0x505241474d41", + "0x803d970", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x5ca78865e45", + "0x4254432f555344", + "0x1e0713252483d0bb17b81bb00", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x4923fa840a", + "0x4554482f555344", + "0x322e2a71a8fa4214c083200", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e42e2fa2f239dc0", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x2c600ba2", + "0x554e492f555344", + "0xc7984bc76ed7e5188400", + "0x0", + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x8046e9a", + "0x5354524b2f555344", + "0x29dcb94040e873c2be00", + "0x0", + "0x663753f6", + "0x4f4b58", + "0x505241474d41", + "0x5cad455984a", + "0x4254432f555344", + "0x330e62d5920cfe00000000", + "0x0", + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x4925610d71", + "0x4554482f555344", + "0x1d6650b66c35b200000000", + "0x0", + "0x663753f2", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41bc187e931cc00", + "0x0", + "0x663753f4", + "0x4f4b58", + "0x505241474d41", + "0x2c61cccc", + "0x554e492f555344", + "0x24650515e37f30000000", + "0x0", + "0x663753f4", + "0x4f4b58", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x2b3748b2407dd2000000", + "0x0", + "0x663753f3", + "0x4249545354414d50", + "0x505241474d41", + "0x5cafdd30e00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x663753f5", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663753f3", + "0x4249545354414d50", + "0x505241474d41", + "0x56261752100", + "0x4254432f455552", + "0x0", + "0x0", + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0x424e9bc", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5cad6de032b", + "0x4254432f555344", + "0xeb69d7e377f2b0", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x492179ba0c", + "0x4554482f555344", + "0x62717719716b88", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fe1f98f8b33", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3afc7f8ccdae", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5c9872f9ff1", + "0x574254432f555344", + "0x7756e90cbef", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x563555476e0", + "0x4254432f455552", + "0x2ae1b339642a", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x2c5e9896", + "0x554e492f555344", + "0x1498755a1f8f5", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fd318cd32464", + "0x0", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x4584d90", + "0x5a454e442f555344", + "0x3f6e8a3b60b", + "0x0", + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4916f9f600", + "0x4554482f555344", + "0x0", + "0x0", + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x663753f7", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254d1535e", + "0x4450492f555344", + "0x4ff9749858f", + "0x0", + "0x663753fa", + "0x42494e414e4345", + "0x505241474d41", + "0x2557f1f20", + "0x4450492f555344", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", + "actual_fee": { + "amount": "0x11982b041769c4", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5cacdd019a0", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x4927645760", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f4c2b880", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x56319c14e00", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x2c627510", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637520f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5cad419e700", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751fa", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49190e9a40", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5814c", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751fe", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751b4", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4240", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c82c9bb500", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375209", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f325c7", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751e5", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551ba4b800", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751bb", + "0x444546494c4c414d41", + "0x505241474d41", + "0xcaafe4", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663751f8", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c899bd1", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f3", + "0x4b55434f494e", + "0x505241474d41", + "0x5cadf6d1280", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f5", + "0x4b55434f494e", + "0x505241474d41", + "0x4927e60a80", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753ed", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753ec", + "0x4b55434f494e", + "0x505241474d41", + "0x803d970", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x5ca78865e45", + "0x4254432f555344", + "0x1e0713252483d0bb17b81bb00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x4923fa840a", + "0x4554482f555344", + "0x322e2a71a8fa4214c083200" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e42e2fa2f239dc0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x2c600ba2", + "0x554e492f555344", + "0xc7984bc76ed7e5188400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x48554f4249", + "0x505241474d41", + "0x8046e9a", + "0x5354524b2f555344", + "0x29dcb94040e873c2be00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4f4b58", + "0x505241474d41", + "0x5cad455984a", + "0x4254432f555344", + "0x330e62d5920cfe00000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x4925610d71", + "0x4554482f555344", + "0x1d6650b66c35b200000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f2", + "0x4f4b58", + "0x505241474d41", + "0xf41c3", + "0x555344432f555344", + "0x41bc187e931cc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f4", + "0x4f4b58", + "0x505241474d41", + "0x2c61cccc", + "0x554e492f555344", + "0x24650515e37f30000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f4", + "0x4f4b58", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x2b3748b2407dd2000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f3", + "0x4249545354414d50", + "0x505241474d41", + "0x5cafdd30e00", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f5", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f3", + "0x4249545354414d50", + "0x505241474d41", + "0x56261752100", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f4", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x535441524b4e4554", + "0x505241474d41", + "0x424e9bc", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5cad6de032b", + "0x4254432f555344", + "0xeb69d7e377f2b0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x492179ba0c", + "0x4554482f555344", + "0x62717719716b88" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fe1f98f8b33" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3afc7f8ccdae" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5c9872f9ff1", + "0x574254432f555344", + "0x7756e90cbef" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x563555476e0", + "0x4254432f455552", + "0x2ae1b339642a" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x2c5e9896", + "0x554e492f555344", + "0x1498755a1f8f5" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x80349ab", + "0x5354524b2f555344", + "0x1fd318cd32464" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x4584d90", + "0x5a454e442f555344", + "0x3f6e8a3b60b" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4916f9f600", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f6", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753f7", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254d1535e", + "0x4450492f555344", + "0x4ff9749858f" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753fa", + "0x42494e414e4345", + "0x505241474d41", + "0x2557f1f20", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x11982b041769c4", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 781437, + "pedersen_builtin_applications": 4503, + "range_check_builtin_applications": 23902, + "bitwise_builtin_applications": 228, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 3840 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b61", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x31d41de7f6ecf88bd1b4c4e06fd6f8465bc537f5e0d41991448558c2fcdabc7", + "0x29514feef0d8b315207f99773fa60bf2f4559e4acdcc20fbfc576be0c364962" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x6070411dec2", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca23abe300", + "0x4254432f555344", + "0x1186230e753b64860000", + "0x0", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca869d7a00", + "0x4254432f555344", + "0x1e33f98b5b24f2c0000", + "0x0", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1a9aab622", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xed246d6c0", + "0x4254432f55534454", + "0x2d0a72d7e8e9434000", + "0x0", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf6e1ee611", + "0x4254432f55534454", + "0x13505b3a82bae340", + "0x192327e7000", + "0x1", + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf0e7f25a9", + "0x4254432f55534454", + "0x277cd1dee1875b00", + "0x1905ddbbc00", + "0x1", + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x4c252edece", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x49209135c0", + "0x4554482f555344", + "0x8835c613814f4c000", + "0x0", + "0x1", + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x491da58780", + "0x4554482f555344", + "0x5a399efc591c5d8000", + "0x0", + "0x1", + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x4a360bab9a", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xc2ee91cb", + "0x4554482f55534454", + "0x5cf36640fe4600", + "0x192327e7000", + "0x1", + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xbdfaff27", + "0x4554482f55534454", + "0xb52df27d0d7c00", + "0x1905ddbbc00", + "0x1", + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xbb2d53f0", + "0x4554482f55534454", + "0xe7fab3519a367400", + "0x0", + "0x1", + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5dadab05a80", + "0x4254432f555344", + "0x1bc1e98adebe70", + "0x1905ddbbc00", + "0x1", + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5fb149158ff", + "0x4254432f555344", + "0xf9a05b12626b4", + "0x192327e7000", + "0x1", + "0x663753f3", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00", + "0x1", + "0x663753f0", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2552015cdbadf", + "0x19407212400", + "0x1", + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000", + "0x1", + "0x663753f3", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400", + "0x1", + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xf01a80ce0", + "0x4254432f55534454", + "0xc994403025c", + "0x1905ddbbc00", + "0x1", + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc4532975094", + "0x192327e7000", + "0x1", + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00", + "0x1", + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x19767306a5a", + "0x19407212400", + "0x1", + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9606e3c8b60", + "0x18f61842000", + "0x1", + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400", + "0x1", + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4a0d8e27c0", + "0x4554482f555344", + "0x6ffb85a7780e3", + "0x1905ddbbc00", + "0x1", + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4b91c2a600", + "0x4554482f555344", + "0x3eaa8ba263a7f", + "0x192327e7000", + "0x1", + "0x663753fa", + "0x4f4b58", + "0x505241474d41", + "0x493fbd8e80", + "0x4554482f555344", + "0x37bf83124e79f", + "0x18f61842000", + "0x1", + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400", + "0x1", + "0x663753fb", + "0x4f4b58", + "0x505241474d41", + "0xbd941ac0", + "0x4554482f55534454", + "0x8069fbe97b0", + "0x1905ddbbc00", + "0x1", + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xc2421270", + "0x4554482f55534454", + "0x2e84fe10b5f", + "0x192327e7000", + "0x1", + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0xbb722520", + "0x4554482f55534454", + "0x447e27f8720", + "0x18f61842000", + "0x1", + "0x663753fb", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400", + "0x1", + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5caaa60c000", + "0x4254432f555344", + "0xa89278340a1db80000", + "0x0", + "0x1", + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0xed32290c0", + "0x4254432f55534454", + "0x12f116f27aafc7", + "0x0", + "0x1", + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0x491b8f78c0", + "0x4554482f555344", + "0x17a3d48e0b9e87000", + "0x0", + "0x1", + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0xbb2871f0", + "0x4554482f55534454", + "0x422ef453ced0c", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", + "actual_fee": { + "amount": "0xb544a7c8f12b9", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x6070411dec2", + "0x4254432f555344", + "0x0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca23abe300", + "0x4254432f555344", + "0x1186230e753b64860000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca869d7a00", + "0x4254432f555344", + "0x1e33f98b5b24f2c0000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0x5e1a9aab622", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xed246d6c0", + "0x4254432f55534454", + "0x2d0a72d7e8e9434000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf6e1ee611", + "0x4254432f55534454", + "0x13505b3a82bae340", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f6", + "0x42494e414e4345", + "0x505241474d41", + "0xf0e7f25a9", + "0x4254432f55534454", + "0x277cd1dee1875b00", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x4c252edece", + "0x4554482f555344", + "0x0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x49209135c0", + "0x4554482f555344", + "0x8835c613814f4c000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x491da58780", + "0x4554482f555344", + "0x5a399efc591c5d8000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f7", + "0x42494e414e4345", + "0x505241474d41", + "0x4a360bab9a", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xc2ee91cb", + "0x4554482f55534454", + "0x5cf36640fe4600", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xbdfaff27", + "0x4554482f55534454", + "0xb52df27d0d7c00", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f8", + "0x42494e414e4345", + "0x505241474d41", + "0xbb2d53f0", + "0x4554482f55534454", + "0xe7fab3519a367400", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5dadab05a80", + "0x4254432f555344", + "0x1bc1e98adebe70", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5fb149158ff", + "0x4254432f555344", + "0xf9a05b12626b4", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f3", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f0", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2552015cdbadf", + "0x19407212400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f5", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f3", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xf01a80ce0", + "0x4254432f55534454", + "0xc994403025c", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc4532975094", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x19767306a5a", + "0x19407212400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xed9b8a960", + "0x4254432f55534454", + "0x9606e3c8b60", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f7", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4a0d8e27c0", + "0x4554482f555344", + "0x6ffb85a7780e3", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4b91c2a600", + "0x4554482f555344", + "0x3eaa8ba263a7f", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753fa", + "0x4f4b58", + "0x505241474d41", + "0x493fbd8e80", + "0x4554482f555344", + "0x37bf83124e79f", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753fb", + "0x4f4b58", + "0x505241474d41", + "0xbd941ac0", + "0x4554482f55534454", + "0x8069fbe97b0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f8", + "0x4f4b58", + "0x505241474d41", + "0xc2421270", + "0x4554482f55534454", + "0x2e84fe10b5f", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f9", + "0x4f4b58", + "0x505241474d41", + "0xbb722520", + "0x4554482f55534454", + "0x447e27f8720", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753fb", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f6", + "0x4259424954", + "0x505241474d41", + "0x5caaa60c000", + "0x4254432f555344", + "0xa89278340a1db80000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0xed32290c0", + "0x4254432f55534454", + "0x12f116f27aafc7", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0x491b8f78c0", + "0x4554482f555344", + "0x17a3d48e0b9e87000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x663753f5", + "0x4259424954", + "0x505241474d41", + "0xbb2871f0", + "0x4554482f55534454", + "0x422ef453ced0c", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xb544a7c8f12b9", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 397232, + "pedersen_builtin_applications": 2299, + "range_check_builtin_applications": 12108, + "bitwise_builtin_applications": 114, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 2496 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x36", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x310c8db8723e82a5fa8a67be11ec0e278d5c7b07c740c8056d57b828ca01b71", + "0x21a882f6e43760d7bd37537d9dc32d77b30089e4b8d91879417f9e9602e981e" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x3e93ff1b03257b5f1c64d855faa0c05c455009646d29ffdb3a1d9539eefe5cc", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x20aef00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", + "actual_fee": { + "amount": "0x2944c31f579a2", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8" + ], + "data": [ + "0x1b31d2900", + "0x0" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x4ff9c92b4b06fc7d4923606d69abafc9051b0e41b0d7954692bd38be4b99e7" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x3e93ff1b03257b5f1c64d855faa0c05c455009646d29ffdb3a1d9539eefe5cc", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x556e69717565" + ], + "data": [ + "0x2", + "0x5573654c6f74", + "0x20aef000000010004", + "0xe520001" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x2a992f38709bbb47a4d6775ba0863c3fb72e0f309972ace179ebaefb2fc60b3" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x3e93ff1b03257b5f1c64d855faa0c05c455009646d29ffdb3a1d9539eefe5cc", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x5072657061696441677265656d656e74" + ], + "data": [ + "0x3", + "0x20aef000000010004", + "0x1", + "0xe520001", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x663752e1", + "0x665f6c81", + "0x0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x33b828dbd1d9227027639191ca073fcd284c1a609ed4ce9bd0a611369f5c268" + ], + "data": [ + "0x4", + "0x20aef00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x2944c31f579a2", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 57582, + "pedersen_builtin_applications": 48, + "range_check_builtin_applications": 2089, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 66, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 576 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x37", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x201c65a2165307bc5b701cbc47c72a0acb57e2e8d35f08e49af745fb1324baf", + "0x309af65acd47084a3d50102d57fde61bae96971928954a1e112b0391667f45f" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0xa6ae2db8bdba1315c709191512215b41d5616adc09d1b8ad9ee28dadd5c39f", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x212a500000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", + "actual_fee": { + "amount": "0x2944c31f579a2", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8" + ], + "data": [ + "0x1b31d2900", + "0x0" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x4ff9c92b4b06fc7d4923606d69abafc9051b0e41b0d7954692bd38be4b99e7" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0xa6ae2db8bdba1315c709191512215b41d5616adc09d1b8ad9ee28dadd5c39f", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x556e69717565" + ], + "data": [ + "0x2", + "0x5573654c6f74", + "0x212a5000000010004", + "0xe520001" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x2a992f38709bbb47a4d6775ba0863c3fb72e0f309972ace179ebaefb2fc60b3" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0xa6ae2db8bdba1315c709191512215b41d5616adc09d1b8ad9ee28dadd5c39f", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x5072657061696441677265656d656e74" + ], + "data": [ + "0x3", + "0x212a5000000010004", + "0x1", + "0xe520001", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x663752e1", + "0x665f6c81", + "0x0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x33b828dbd1d9227027639191ca073fcd284c1a609ed4ce9bd0a611369f5c268" + ], + "data": [ + "0x4", + "0x212a500000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x2944c31f579a2", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 57580, + "pedersen_builtin_applications": 48, + "range_check_builtin_applications": 2089, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 66, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 576 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x38", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x2d350d6649616cba65f1c1822ac1c63a05f0f8fd6898a198cfd12fe332b5203", + "0x3f3cc80bcb01d1b02e32c58ab2202417398fa14d6b0ec2fd6d21f589eadc332" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x787bab7274e19042fdaf5adc8c42d564fe74232cf82cdcc971ca78fd240a577", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x20eca00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", + "actual_fee": { + "amount": "0x2944c31f579a2", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8" + ], + "data": [ + "0x1b31d2900", + "0x0" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x4ff9c92b4b06fc7d4923606d69abafc9051b0e41b0d7954692bd38be4b99e7" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x787bab7274e19042fdaf5adc8c42d564fe74232cf82cdcc971ca78fd240a577", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x556e69717565" + ], + "data": [ + "0x2", + "0x5573654c6f74", + "0x20eca000000010004", + "0xe520001" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x2a992f38709bbb47a4d6775ba0863c3fb72e0f309972ace179ebaefb2fc60b3" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x787bab7274e19042fdaf5adc8c42d564fe74232cf82cdcc971ca78fd240a577", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x5072657061696441677265656d656e74" + ], + "data": [ + "0x3", + "0x20eca000000010004", + "0x1", + "0xe520001", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x663752e1", + "0x665f6c81", + "0x0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x33b828dbd1d9227027639191ca073fcd284c1a609ed4ce9bd0a611369f5c268" + ], + "data": [ + "0x4", + "0x20eca00000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x2944c31f579a2", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 57582, + "pedersen_builtin_applications": 48, + "range_check_builtin_applications": 2089, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 66, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 576 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x39", + "max_fee": "0x3de32ed40b7d5", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x38b2ee98be328d5ac9fdec64bb4653f157bd48616e4aab9ebb0b65b2a628296", + "0x73d9091938d27d703be698e1a609e89147190b5f7fe986cb6b1b2b4a4dcc117" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x1455f27ec8855f53e4e41e8e0de0429aa788e17b3506281ed984c62d9c71f27", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x204b200000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", + "actual_fee": { + "amount": "0x2944c31f579a2", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8" + ], + "data": [ + "0x1b31d2900", + "0x0" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x4ff9c92b4b06fc7d4923606d69abafc9051b0e41b0d7954692bd38be4b99e7" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x1455f27ec8855f53e4e41e8e0de0429aa788e17b3506281ed984c62d9c71f27", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x556e69717565" + ], + "data": [ + "0x2", + "0x5573654c6f74", + "0x204b2000000010004", + "0xe520001" + ] + }, + { + "from_address": "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "keys": [ + "0x2a992f38709bbb47a4d6775ba0863c3fb72e0f309972ace179ebaefb2fc60b3" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x1b31d2900", + "0x1455f27ec8855f53e4e41e8e0de0429aa788e17b3506281ed984c62d9c71f27", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x5072657061696441677265656d656e74" + ], + "data": [ + "0x3", + "0x204b2000000010004", + "0x1", + "0xe520001", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x663752e1", + "0x665f6c81", + "0x0" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x33b828dbd1d9227027639191ca073fcd284c1a609ed4ce9bd0a611369f5c268" + ], + "data": [ + "0x4", + "0x204b200000001", + "0x1", + "0x1", + "0xe52", + "0x2819a0", + "0x989680", + "0x2819a0", + "0x2819a0", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x2944c31f579a2", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 57581, + "pedersen_builtin_applications": 48, + "range_check_builtin_applications": 2089, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 66, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 576 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b62", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x50b1559e426ec214c16e539afdeecf06b0f5ce92b4079cc81a5eb0329f5ba8f", + "0x3c7dce0695b70fdecd47deac06f2cecabbc4d7ae9e37074883a7ad708d68dc0" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x23f", + "0x52", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca56f61320", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4927bfe4e0", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f267ffa0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5627ea24e60", + "0x4254432f455552", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x2c61b1c0", + "0x554e492f555344", + "0x0", + "0x0", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375334", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5ca987f1d00", + "0x4254432f555344", + "0x0", + "0x0", + "0x6637531c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49155c8ec0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663752e3", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f56270", + "0x4441492f555344", + "0x0", + "0x0", + "0x6637531c", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf416a", + "0x555344432f555344", + "0x0", + "0x0", + "0x663752dc", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf41bb", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375335", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c8c19eae00", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375335", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f3fc60", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637530b", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551801eec0", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66375298", + "0x444546494c4c414d41", + "0x505241474d41", + "0xca7bf0", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0", + "0x0", + "0x6637532b", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c899bd1", + "0x554e492f555344", + "0x0", + "0x0", + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375433", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0", + "0x0", + "0x66375430", + "0x4b55434f494e", + "0x505241474d41", + "0x5ca6ec5f600", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375430", + "0x4b55434f494e", + "0x505241474d41", + "0x4925282300", + "0x4554482f555344", + "0x0", + "0x0", + "0x6637541f", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0", + "0x0", + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0", + "0x0", + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0", + "0x0", + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0", + "0x0", + "0x663753ec", + "0x4b55434f494e", + "0x505241474d41", + "0x803d970", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5c9f62f9142", + "0x4254432f555344", + "0x1e047088dae1651a3e77ee400", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x492409c5cd", + "0x4554482f555344", + "0x32348c22440a49e0cddd800", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e4e2787f52456be000", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e4292f4ac4f77c0", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0", + "0x0", + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x8046e9a", + "0x5354524b2f555344", + "0x29d34f2f7e89628eb800", + "0x0", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5ca42eacd8c", + "0x4254432f555344", + "0x330a0731e423ca00000000", + "0x0", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x4926646b65", + "0x4554482f555344", + "0x1d67be2c5a036f00000000", + "0x0", + "0x66375433", + "0x4f4b58", + "0x505241474d41", + "0xf415f", + "0x555344432f555344", + "0x41c80d50af7a000", + "0x0", + "0x6637542e", + "0x4f4b58", + "0x505241474d41", + "0x2c604638", + "0x554e492f555344", + "0x2461129d5e39c0000000", + "0x0", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x8040cf5", + "0x5354524b2f555344", + "0x2b2fd209d931a0000000", + "0x0", + "0x6637542f", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb45599a00", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0", + "0x0", + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0x562794ca500", + "0x4254432f455552", + "0x0", + "0x0", + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0", + "0x0", + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0x424e9bc", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5ca45827a30", + "0x4254432f555344", + "0xeb56584a892858", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x49228c59c2", + "0x4554482f555344", + "0x62706f56fcf3a0", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fe1a08b75f2", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3af543c9131a", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5c9888e8877", + "0x574254432f555344", + "0x75db15a09c3", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x563093e9ec0", + "0x4254432f455552", + "0x2ac8338d1b4f", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x2c5d6020", + "0x554e492f555344", + "0x1495bd926ffd3", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x804d03f", + "0x5354524b2f555344", + "0x1fcc1a9855ced", + "0x0", + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x4570192", + "0x5a454e442f555344", + "0x3f4b7d786aa", + "0x0", + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0", + "0x0", + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4916f9f790", + "0x4554482f555344", + "0x0", + "0x0", + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0", + "0x0", + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0", + "0x0", + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0", + "0x0", + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x552806cb74", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0", + "0x0", + "0x66375433", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254ded54e", + "0x4450492f555344", + "0x4ff9749858f", + "0x0", + "0x66375435", + "0x42494e414e4345", + "0x505241474d41", + "0x255aacb36", + "0x4450492f555344", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", + "actual_fee": { + "amount": "0x15dc516a321081", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca56f61320", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4927bfe4e0", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf41aa", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5c8f267ffa0", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5f446d8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x5627ea24e60", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x2c61b1c0", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x8038b50", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375334", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5ca987f1d00", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637531c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x49155c8ec0", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752e3", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f56270", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637531c", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf416a", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663752dc", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf41bb", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375335", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5c8c19eae00", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375335", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f3fc60", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637530b", + "0x444546494c4c414d41", + "0x505241474d41", + "0x551801eec0", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375298", + "0x444546494c4c414d41", + "0x505241474d41", + "0xca7bf0", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637531d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375339", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2c588a00", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637532b", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7fcad80", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375338", + "0x444546494c4c414d41", + "0x505241474d41", + "0x464b500", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375310", + "0x444546494c4c414d41", + "0x505241474d41", + "0x26f2aa3c0", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x491c098ac0", + "0x4554482f555344", + "0xd9e2233df65960000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5cc2a96e780", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5535a18d00", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc3be47", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f4b570", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2c899bd1", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x7fdfbfb", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x256f79240", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375430", + "0x4b55434f494e", + "0x505241474d41", + "0x5ca6ec5f600", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375430", + "0x4b55434f494e", + "0x505241474d41", + "0x4925282300", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637541f", + "0x4b55434f494e", + "0x505241474d41", + "0xf4253", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66368a48", + "0x4b55434f494e", + "0x505241474d41", + "0x5c546970ac0", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66374441", + "0x4b55434f494e", + "0x505241474d41", + "0x5f494f8", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637529d", + "0x4b55434f494e", + "0x505241474d41", + "0x55f501b5300", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637537a", + "0x4b55434f494e", + "0x505241474d41", + "0x2c60c760", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x663753ec", + "0x4b55434f494e", + "0x505241474d41", + "0x803d970", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375124", + "0x4b55434f494e", + "0x505241474d41", + "0x4770930", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5c9f62f9142", + "0x4254432f555344", + "0x1e047088dae1651a3e77ee400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x492409c5cd", + "0x4554482f555344", + "0x32348c22440a49e0cddd800" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5f56210", + "0x4441492f555344", + "0x7e4e2787f52456be000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0xf4191", + "0x555344432f555344", + "0x3e4292f4ac4f77c0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x5ea2130", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x48554f4249", + "0x505241474d41", + "0x8046e9a", + "0x5354524b2f555344", + "0x29d34f2f7e89628eb800" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5ca42eacd8c", + "0x4254432f555344", + "0x330a0731e423ca00000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x4926646b65", + "0x4554482f555344", + "0x1d67be2c5a036f00000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4f4b58", + "0x505241474d41", + "0xf415f", + "0x555344432f555344", + "0x41c80d50af7a000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637542e", + "0x4f4b58", + "0x505241474d41", + "0x2c604638", + "0x554e492f555344", + "0x2461129d5e39c0000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x8040cf5", + "0x5354524b2f555344", + "0x2b2fd209d931a0000000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x6637542f", + "0x4249545354414d50", + "0x505241474d41", + "0x5cb45599a00", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x492302d200", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x5eb32a0", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0xf4222", + "0x555344432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0xf4326", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375431", + "0x4249545354414d50", + "0x505241474d41", + "0x562794ca500", + "0x4254432f455552", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375430", + "0x4249545354414d50", + "0x505241474d41", + "0x2c6714a8", + "0x554e492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0xc15ab7", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0x7fb5c5d", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x535441524b4e4554", + "0x505241474d41", + "0x424e9bc", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5ca45827a30", + "0x4254432f555344", + "0xeb56584a892858" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x49228c59c2", + "0x4554482f555344", + "0x62706f56fcf3a0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5f54e88", + "0x4441492f555344", + "0x4fe1a08b75f2" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0xf412d", + "0x555344432f555344", + "0x3af543c9131a" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5c9888e8877", + "0x574254432f555344", + "0x75db15a09c3" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x5f4bc08", + "0x574254432f425443", + "0x15a5a5c4" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x563093e9ec0", + "0x4254432f455552", + "0x2ac8338d1b4f" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x2c5d6020", + "0x554e492f555344", + "0x1495bd926ffd3" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x804d03f", + "0x5354524b2f555344", + "0x1fcc1a9855ced" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x4259424954", + "0x505241474d41", + "0x4570192", + "0x5a454e442f555344", + "0x3f4b7d786aa" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x4254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4916f9f790", + "0x4554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5bdd8", + "0x4441492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf427e", + "0x555344542f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5c78f7c5888", + "0x574254432f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x552806cb74", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375432", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x25403d4d8", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375433", + "0x494e444558434f4f50", + "0x505241474d41", + "0x254ded54e", + "0x4450492f555344", + "0x4ff9749858f" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66375435", + "0x42494e414e4345", + "0x505241474d41", + "0x255aacb36", + "0x4450492f555344", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x15dc516a321081", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 844095, + "pedersen_builtin_applications": 4857, + "range_check_builtin_applications": 25834, + "bitwise_builtin_applications": 246, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 4800 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x15b63", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x415b0722a91e5df5a5940b15a31348cf88b36c03503c092280197789ec15cb3", + "0x6afb18ab77404451de102eae94ec7f64ff02dbdae7a84be30723a822c6fa3f7" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x606a55937fa", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca0d3e6700", + "0x4254432f555344", + "0x1e31808b137e1620000", + "0x0", + "0x1", + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5e148016179", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5c9b28eb680", + "0x4254432f555344", + "0x1184ccaeee74a10d0000", + "0x0", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf6d41b3fc", + "0x4254432f55534454", + "0x134f465bc8774300", + "0x192327e7000", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xed13a8ed9", + "0x4254432f55534454", + "0x2d03bb2fdd1a0f7e00", + "0x0", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf0d9a6cb8", + "0x4254432f55534454", + "0x277a7a05ae532800", + "0x1905ddbbc00", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4a3761d4c5", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x491cc0a5c0", + "0x4554482f555344", + "0x5a38848b84f0b8c000", + "0x0", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4c27441db1", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4920a07800", + "0x4554482f555344", + "0x8835e27f767580000", + "0x0", + "0x1", + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xbdfe6b16", + "0x4554482f55534454", + "0xb53135d8071800", + "0x1905ddbbc00", + "0x1", + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xbb2ae2f0", + "0x4554482f55534454", + "0xe7f7acb86659b400", + "0x0", + "0x1", + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xc2f3e193", + "0x4554482f55534454", + "0x5cf5eea5ea5600", + "0x192327e7000", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5da62e23000", + "0x4254432f555344", + "0x1bbfc449a2c900", + "0x1905ddbbc00", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5fb40144380", + "0x4254432f555344", + "0xf9a7cdcdc57f0", + "0x192327e7000", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00", + "0x1", + "0x6637542f", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2551b5df6baaf", + "0x19407212400", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000", + "0x1", + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xf01a80ce0", + "0x4254432f55534454", + "0xc994403025c", + "0x1905ddbbc00", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc43d72e7634", + "0x192327e7000", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x19767306a5a", + "0x19407212400", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xed95ea280", + "0x4254432f55534454", + "0x9606302693f", + "0x18f61842000", + "0x1", + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400", + "0x1", + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4a1a8c9240", + "0x4554482f555344", + "0x7151f7acb43e0", + "0x1905ddbbc00", + "0x1", + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4ba82bf400", + "0x4554482f555344", + "0x3ebf71dc70fc0", + "0x192327e7000", + "0x1", + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x494dbf5f40", + "0x4554482f555344", + "0x37cc35b8f1a1c", + "0x18f61842000", + "0x1", + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400", + "0x1", + "0x66375439", + "0x4f4b58", + "0x505241474d41", + "0xbdae3270", + "0x4554482f55534454", + "0x8087c016a44", + "0x1905ddbbc00", + "0x1", + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xc25ee940", + "0x4554482f55534454", + "0x2e8c052574f", + "0x192327e7000", + "0x1", + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xbb722520", + "0x4554482f55534454", + "0x447e27f8720", + "0x18f61842000", + "0x1", + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400", + "0x1", + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0x5ca68d01500", + "0x4254432f555344", + "0xa882c83eb74ed80000", + "0x0", + "0x1", + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0xed198e380", + "0x4254432f55534454", + "0x12ec8c102e2cf0", + "0x0", + "0x1", + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0x4920542cc0", + "0x4554482f555344", + "0x17a5c48ac1b602000", + "0x0", + "0x1", + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0xbb28c010", + "0x4554482f55534454", + "0x42344be59e7d0", + "0x0" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", + "actual_fee": { + "amount": "0xb544a7c8f12b9", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x606a55937fa", + "0x4254432f555344", + "0x0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5ca0d3e6700", + "0x4254432f555344", + "0x1e31808b137e1620000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5e148016179", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x42494e414e4345", + "0x505241474d41", + "0x5c9b28eb680", + "0x4254432f555344", + "0x1184ccaeee74a10d0000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf6d41b3fc", + "0x4254432f55534454", + "0x134f465bc8774300", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xed13a8ed9", + "0x4254432f55534454", + "0x2d03bb2fdd1a0f7e00", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0xf0d9a6cb8", + "0x4254432f55534454", + "0x277a7a05ae532800", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4a3761d4c5", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x491cc0a5c0", + "0x4554482f555344", + "0x5a38848b84f0b8c000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4c27441db1", + "0x4554482f555344", + "0x0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375433", + "0x42494e414e4345", + "0x505241474d41", + "0x4920a07800", + "0x4554482f555344", + "0x8835e27f767580000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xbdfe6b16", + "0x4554482f55534454", + "0xb53135d8071800", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xbb2ae2f0", + "0x4554482f55534454", + "0xe7f7acb86659b400", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x42494e414e4345", + "0x505241474d41", + "0xc2f3e193", + "0x4554482f55534454", + "0x5cf5eea5ea5600", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5da62e23000", + "0x4254432f555344", + "0x1bbfc449a2c900", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5fb40144380", + "0x4254432f555344", + "0xf9a7cdcdc57f0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5d40ed44d00", + "0x4254432f555344", + "0x1ecb0482d8a70", + "0x18fcda9ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x6637542f", + "0x4f4b58", + "0x505241474d41", + "0x624b5483e80", + "0x4254432f555344", + "0x2551b5df6baaf", + "0x19407212400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5cdda5d9280", + "0x4254432f555344", + "0x53627aa7f6388", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4f4b58", + "0x505241474d41", + "0x5cfb8fda600", + "0x4254432f555344", + "0x229b82532e8e0", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xf01a80ce0", + "0x4254432f55534454", + "0xc994403025c", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xf6bd60ea0", + "0x4254432f55534454", + "0xc43d72e7634", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xee869f400", + "0x4254432f55534454", + "0x24ba366fd00", + "0x18fcda9ac00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xfe4c9311f", + "0x4254432f55534454", + "0x19767306a5a", + "0x19407212400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xed95ea280", + "0x4254432f55534454", + "0x9606302693f", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375434", + "0x4f4b58", + "0x505241474d41", + "0xee03f7fc0", + "0x4254432f55534454", + "0x3492962b658", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4a1a8c9240", + "0x4554482f555344", + "0x7151f7acb43e0", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4ba82bf400", + "0x4554482f555344", + "0x3ebf71dc70fc0", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x494dbf5f40", + "0x4554482f555344", + "0x37cc35b8f1a1c", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375437", + "0x4f4b58", + "0x505241474d41", + "0x4955cb4f00", + "0x4554482f555344", + "0x1a907c34de3df", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375439", + "0x4f4b58", + "0x505241474d41", + "0xbdae3270", + "0x4554482f55534454", + "0x8087c016a44", + "0x1905ddbbc00" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xc25ee940", + "0x4554482f55534454", + "0x2e8c052574f", + "0x192327e7000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xbb722520", + "0x4554482f55534454", + "0x447e27f8720", + "0x18f61842000" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375438", + "0x4f4b58", + "0x505241474d41", + "0xbbb0b4c0", + "0x4554482f55534454", + "0x2b742abf39f", + "0x18f8590a400" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0x5ca68d01500", + "0x4254432f555344", + "0xa882c83eb74ed80000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0xed198e380", + "0x4254432f55534454", + "0x12ec8c102e2cf0", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0x4920542cc0", + "0x4554482f555344", + "0x17a5c48ac1b602000", + "0x0" + ] + }, + { + "from_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "keys": [ + "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" + ], + "data": [ + "0x66375432", + "0x4259424954", + "0x505241474d41", + "0xbb28c010", + "0x4554482f55534454", + "0x42344be59e7d0", + "0x0" + ] + }, + { + "from_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e" + ], + "data": [ + "0x1", + "0x0" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0xb544a7c8f12b9", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 397232, + "pedersen_builtin_applications": 2299, + "range_check_builtin_applications": 12108, + "bitwise_builtin_applications": 114, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 2496 + } + } + } + }, + { + "transaction": { + "transaction_hash": "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x3a", + "max_fee": "0x1bad55a98e1c1", + "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "signature": [ + "0x1", + "0x7f1d7eb58b1467c75dad461953ba6d931c7b46b51ee2055996ebaa595583985", + "0x34fb6291f60e2a7ec088a92075bb977d89eb779e8f51fa638799d27a999d9fe" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265706f73736573734275696c64696e67", + "0x4", + "0x5", + "0xa25", + "0x1", + "0xe52" + ] + }, + "receipt": { + "type": "INVOKE", + "transaction_hash": "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b", + "actual_fee": { + "amount": "0x1276c2c6477ed", + "unit": "WEI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "messages_sent": [], + "events": [ + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef", + "0x436f6e74726f6c" + ], + "data": [ + "0x1", + "0xa250005", + "0x1", + "0xe52" + ] + }, + { + "from_address": "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "keys": [ + "0x1085a37d58e6a75db0dadc9bb9e6707ed9c5630aec61fdcdcd832decec751c0" + ], + "data": [ + "0x5", + "0xa25", + "0x1", + "0xe52", + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067" + ] + }, + { + "from_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1276c2c6477ed", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 34408, + "pedersen_builtin_applications": 27, + "range_check_builtin_applications": 1077, + "ec_op_builtin_applications": 3, + "poseidon_builtin_applications": 65, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 256 + } + } + } + } + ] + }, + "id": 1 +} \ No newline at end of file diff --git a/rpc/types_block_test.go b/rpc/types_block_test.go index 0707535d..4cc1e65c 100644 --- a/rpc/types_block_test.go +++ b/rpc/types_block_test.go @@ -6,6 +6,7 @@ import ( "encoding/json" "errors" "fmt" + "os" "strings" "testing" @@ -110,7 +111,7 @@ func TestBlockStatus(t *testing.T) { } } -//go:embed tests/block/block.json +//go:embed tests/block/sepoliaTxs64159.json var rawBlock []byte // TestBlock_Unmarshal tests the Unmarshal function of the Block type. @@ -133,6 +134,7 @@ func TestBlock_Unmarshal(t *testing.T) { func TestBlockWithReceipts(t *testing.T) { testConfig := beforeEach(t) + require := require.New(t) type testSetType struct { BlockID BlockID @@ -140,230 +142,18 @@ func TestBlockWithReceipts(t *testing.T) { ExpectedPendingBlockWithReceipts *PendingBlockWithReceipts } - var blockSepolia64159 = BlockWithReceipts{ - BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964"), - ParentHash: utils.TestHexToFelt(t, "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5"), - BlockNumber: 64159, - NewRoot: utils.TestHexToFelt(t, "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0"), - Timestamp: 1714901729, - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - L1GasPrice: ResourcePrice{ - PriceInFRI: utils.TestHexToFelt(t, "0xdf0413d3c777"), - PriceInWei: utils.TestHexToFelt(t, "0x185f2d3eb5"), - }, - L1DataGasPrice: ResourcePrice{ - PriceInFRI: utils.TestHexToFelt(t, "0xa41c1219f8849"), - PriceInWei: utils.TestHexToFelt(t, "0x11ef315a9ab"), - }, - L1DAMode: L1DAModeBlob, - StarknetVersion: "0.13.1.1", - }, - "ACCEPTED_ON_L1", - BlockBodyWithReceipts{ - Transactions: []TransactionWithReceipt{ - // a lot of previous transactions ... - { // this is the last transaction of this block - Transaction: BlockTransaction{ - BlockInvokeTxnV1{ - TransactionHash: utils.TestHexToFelt(t, "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b"), - InvokeTxnV1: InvokeTxnV1{ - Type: "INVOKE", - Version: TransactionV1, - Nonce: utils.TestHexToFelt(t, "0x3a"), - MaxFee: utils.TestHexToFelt(t, "0x1bad55a98e1c1"), - SenderAddress: utils.TestHexToFelt(t, "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067"), - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x7f1d7eb58b1467c75dad461953ba6d931c7b46b51ee2055996ebaa595583985"), - utils.TestHexToFelt(t, "0x34fb6291f60e2a7ec088a92075bb977d89eb779e8f51fa638799d27a999d9fe"), - }, - Calldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e"), - utils.TestHexToFelt(t, "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126"), - utils.TestHexToFelt(t, "0x6"), - utils.TestHexToFelt(t, "0x5265706f73736573734275696c64696e67"), - utils.TestHexToFelt(t, "0x4"), - utils.TestHexToFelt(t, "0x5"), - utils.TestHexToFelt(t, "0xa25"), - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0xe52"), - }, - }, - }, - }, - Receipt: TransactionReceipt{ - Type: "INVOKE", - TransactionHash: utils.TestHexToFelt(t, "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b"), - ActualFee: FeePayment{ - Amount: utils.TestHexToFelt(t, "0x1276c2c6477ed"), - Unit: UnitWei, - }, - ExecutionStatus: TxnExecutionStatusSUCCEEDED, - FinalityStatus: TxnFinalityStatusAcceptedOnL1, - MessagesSent: []MsgToL1{}, - Events: []Event{ - { - FromAddress: utils.TestHexToFelt(t, "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e"), - Keys: []*felt.Felt{ - utils.TestHexToFelt(t, "0x297be67eb977068ccd2304c6440368d4a6114929aeb860c98b6a7e91f96e2ef"), - utils.TestHexToFelt(t, "0x436f6e74726f6c"), - }, - Data: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0xa250005"), - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0xe52"), - }, - }, - { - FromAddress: utils.TestHexToFelt(t, "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e"), - Keys: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1085a37d58e6a75db0dadc9bb9e6707ed9c5630aec61fdcdcd832decec751c0"), - }, - Data: []*felt.Felt{ - utils.TestHexToFelt(t, "0x5"), - utils.TestHexToFelt(t, "0xa25"), - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0xe52"), - utils.TestHexToFelt(t, "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067"), - }, - }, - { - FromAddress: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), - Keys: []*felt.Felt{ - utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), - }, - Data: []*felt.Felt{ - utils.TestHexToFelt(t, "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067"), - utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - utils.TestHexToFelt(t, "0x1276c2c6477ed"), - utils.TestHexToFelt(t, "0x0"), - }, - }, - }, - ExecutionResources: ExecutionResources{ - ComputationResources{ - Steps: 34408, - PedersenApps: 27, - RangeCheckApps: 1077, - ECOPApps: 3, - PoseidonApps: 65, - }, - DataAvailability{ - L1Gas: 0, - L1DataGas: 256, - }, - }, - }, - }, - }, - }, + var blockWithReceipt struct { + Result BlockWithReceipts `json:"result"` } - var blockMainnet655660 = BlockWithReceipts{ - BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x7e53153d9737c3b60f917ae6df26b10bed5771ca2fce980c1cea9973e97ee7e"), - ParentHash: utils.TestHexToFelt(t, "0x2147e34aba1742219cb6a702476b55cd959bb70e44550ca9b9ce545125bac42"), - BlockNumber: 655660, - NewRoot: utils.TestHexToFelt(t, "0x5c49cad0c4eac00da62a9c17f4b043973bbb58af5e94c59da7a215626559154"), - Timestamp: 1720209856, - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - L1GasPrice: ResourcePrice{ - PriceInFRI: utils.TestHexToFelt(t, "0x151a2612eeb3"), - PriceInWei: utils.TestHexToFelt(t, "0xedd8f5ff"), - }, - L1DataGasPrice: ResourcePrice{ - PriceInFRI: utils.TestHexToFelt(t, "0xa7dc58"), - PriceInWei: utils.TestHexToFelt(t, "0x764"), - }, - L1DAMode: L1DAModeBlob, - StarknetVersion: "0.13.1.1", - }, - "ACCEPTED_ON_L1", - BlockBodyWithReceipts{ - Transactions: []TransactionWithReceipt{ - // a lot of previous transactions ... - { // this is the last transaction of this block - Transaction: BlockTransaction{ - BlockInvokeTxnV1{ - TransactionHash: utils.TestHexToFelt(t, "0x7dd8facd75bdebed2a76eb29dfa49172efea4913eea0abbc3e90a1af3d2c6ed"), - InvokeTxnV1: InvokeTxnV1{ - Type: "INVOKE", - Version: TransactionV1, - Nonce: utils.TestHexToFelt(t, "0x42"), - MaxFee: utils.TestHexToFelt(t, "0x286a5dccd4"), - SenderAddress: utils.TestHexToFelt(t, "0x4dcbde5783e7131bd21c4114e22723ee0db79a5060933235fabea35049b766e"), - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x2f9c7fa1b56357a343cf982b8f0beb0fddc8dcbac0e2bb65f4b98edb255ebcc"), - utils.TestHexToFelt(t, "0x48b6a3060e267da25fc6d6ba4496f2380f11ece6e4231be2048a22ca273bee9"), - }, - Calldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), - utils.TestHexToFelt(t, "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e"), - utils.TestHexToFelt(t, "0x3"), - utils.TestHexToFelt(t, "0x73b7f95acad70fc8b2746062d9cf87c3e1600e0add99f469945b9d03d35637a"), - utils.TestHexToFelt(t, "0x7180a5ffdd4fe"), - utils.TestHexToFelt(t, "0x0"), - }, - }, - }, - }, - Receipt: TransactionReceipt{ - Type: "INVOKE", - TransactionHash: utils.TestHexToFelt(t, "0x7dd8facd75bdebed2a76eb29dfa49172efea4913eea0abbc3e90a1af3d2c6ed"), - ActualFee: FeePayment{ - Amount: utils.TestHexToFelt(t, "0x1bdf725ee2"), - Unit: UnitWei, - }, - ExecutionStatus: TxnExecutionStatusSUCCEEDED, - FinalityStatus: TxnFinalityStatusAcceptedOnL1, - MessagesSent: []MsgToL1{}, - Events: []Event{ - { - FromAddress: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), - Keys: []*felt.Felt{ - utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), - }, - Data: []*felt.Felt{ - utils.TestHexToFelt(t, "0x4dcbde5783e7131bd21c4114e22723ee0db79a5060933235fabea35049b766e"), - utils.TestHexToFelt(t, "0x73b7f95acad70fc8b2746062d9cf87c3e1600e0add99f469945b9d03d35637a"), - utils.TestHexToFelt(t, "0x7180a5ffdd4fe"), - utils.TestHexToFelt(t, "0x0"), - }, - }, - { - FromAddress: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), - Keys: []*felt.Felt{ - utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), - }, - Data: []*felt.Felt{ - utils.TestHexToFelt(t, "0x4dcbde5783e7131bd21c4114e22723ee0db79a5060933235fabea35049b766e"), - utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - utils.TestHexToFelt(t, "0x1bdf725ee2"), - utils.TestHexToFelt(t, "0x0"), - }, - }, - }, - ExecutionResources: ExecutionResources{ - ComputationResources{ - Steps: 11453, - PedersenApps: 25, - RangeCheckApps: 224, - ECOPApps: 3, - }, - DataAvailability{ - L1Gas: 0, - L1DataGas: 192, - }, - }, - }, - }, - }, - }, + if testEnv == "testnet" { + block, err := os.ReadFile("tests/blockWithReceipts/sepoliaReceipts64159.json") + require.NoError(err) + require.NoError(json.Unmarshal(block, &blockWithReceipt)) + } else if testEnv == "mainnet" { + block, err := os.ReadFile("tests/blockWithReceipts/mainnetReceipts588763.json") + require.NoError(err) + require.NoError(json.Unmarshal(block, &blockWithReceipt)) } var blockMock123 = BlockWithReceipts{ @@ -497,7 +287,7 @@ func TestBlockWithReceipts(t *testing.T) { }, { BlockID: WithBlockNumber(64159), - ExpectedBlockWithReceipts: &blockSepolia64159, + ExpectedBlockWithReceipts: &blockWithReceipt.Result, }, }, "mainnet": { @@ -505,15 +295,13 @@ func TestBlockWithReceipts(t *testing.T) { BlockID: WithBlockTag("pending"), }, { - BlockID: WithBlockNumber(655660), - ExpectedBlockWithReceipts: &blockMainnet655660, + BlockID: WithBlockNumber(588763), + ExpectedBlockWithReceipts: &blockWithReceipt.Result, }, }, }[testEnv] for _, test := range testSet { - require := require.New(t) - result, err := testConfig.provider.BlockWithReceipts(context.Background(), test.BlockID) require.NoError(err, "Error in BlockWithReceipts") switch resultType := result.(type) { @@ -529,7 +317,8 @@ func TestBlockWithReceipts(t *testing.T) { require.Equal(block.BlockHeader.Timestamp, test.ExpectedBlockWithReceipts.BlockHeader.Timestamp, "Error in BlockTxHash Timestamp") require.Equal(block.BlockHeader.SequencerAddress, test.ExpectedBlockWithReceipts.BlockHeader.SequencerAddress, "Error in BlockTxHash SequencerAddress") require.Equal(block.Status, test.ExpectedBlockWithReceipts.Status, "Error in BlockTxHash Status") - require.Equal(block.Transactions[len(block.Transactions)-1], test.ExpectedBlockWithReceipts.Transactions[0], "Error in BlockTxHash Transactions") + require.ElementsMatchf(block.Transactions, test.ExpectedBlockWithReceipts.Transactions, "Error in BlockTxHash Transactions") + require.Exactly(block, test.ExpectedBlockWithReceipts) } case *PendingBlockWithReceipts: pBlock, ok := result.(*PendingBlockWithReceipts) @@ -540,6 +329,7 @@ func TestBlockWithReceipts(t *testing.T) { require.Equal(pBlock.SequencerAddress, test.ExpectedPendingBlockWithReceipts.SequencerAddress, "Error in PendingBlockWithReceipts SequencerAddress") require.Equal(pBlock.Timestamp, test.ExpectedPendingBlockWithReceipts.Timestamp, "Error in PendingBlockWithReceipts Timestamp") require.Equal(pBlock.Transactions, test.ExpectedPendingBlockWithReceipts.Transactions, "Error in PendingBlockWithReceipts Transactions") + require.Exactly(pBlock, test.ExpectedPendingBlockWithReceipts) } else { require.NotEmpty(pBlock.ParentHash, "Error in PendingBlockWithReceipts ParentHash") require.NotEmpty(pBlock.SequencerAddress, "Error in PendingBlockWithReceipts SequencerAddress") From e489472d7dc9d9f303bdf5545ab8161f5aff4647 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Wed, 10 Jul 2024 14:30:57 -0300 Subject: [PATCH 03/28] Fix TestTransactionReceipt --- rpc/transaction_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/transaction_test.go b/rpc/transaction_test.go index 1d0b0960..467df5e6 100644 --- a/rpc/transaction_test.go +++ b/rpc/transaction_test.go @@ -236,7 +236,7 @@ func TestTransactionReceipt(t *testing.T) { }, DataAvailability: DataAvailability{ L1Gas: 0, - L1DataGas: 0, + L1DataGas: 128, }, }, } From e8a668806166d4215315f26a5f49152f79e52109 Mon Sep 17 00:00:00 2001 From: Abhinav Prakash <95116715+PsychoPunkSage@users.noreply.github.com> Date: Thu, 25 Jul 2024 12:54:59 +0530 Subject: [PATCH 04/28] `deployContractUDC` added in CI test. (#606) add deployContractUDC to CICD tests --- .github/workflows/main_ci_check.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main_ci_check.yml b/.github/workflows/main_ci_check.yml index c42c0c97..a3852f73 100644 --- a/.github/workflows/main_ci_check.yml +++ b/.github/workflows/main_ci_check.yml @@ -3,7 +3,7 @@ name: (main) Auto CI run on: pull_request: branches: - - 'main' + - "main" jobs: build_and_test: @@ -67,7 +67,8 @@ jobs: # Build examples - name: Build examples - run: | + run: | cd examples/deployAccount && go build cd ../simpleCall && go build cd ../simpleInvoke && go build + cd ../deployContractUDC && go build From 0cf4b319ce4aa405c4b6b5d8f56471967d7b2f0a Mon Sep 17 00:00:00 2001 From: Abhinav Prakash <95116715+PsychoPunkSage@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:10:04 +0530 Subject: [PATCH 05/28] Reverted changes in `BroadcastDeclareTxnV3` (#604) Correct BroadcastDeclareTxnV3 to follow the spec 0.7.1 Co-authored-by: Rian Hughes --- rpc/types_broadcast_transaction.go | 19 +++++++++++-- rpc/write_test.go | 44 ++++++++++++++---------------- 2 files changed, 38 insertions(+), 25 deletions(-) diff --git a/rpc/types_broadcast_transaction.go b/rpc/types_broadcast_transaction.go index 167d28a0..ded69f28 100644 --- a/rpc/types_broadcast_transaction.go +++ b/rpc/types_broadcast_transaction.go @@ -98,8 +98,23 @@ func (tx BroadcastDeclareTxnV2) GetContractClass() interface{} { } type BroadcastDeclareTxnV3 struct { - DeclareTxnV3 - ContractClass *ContractClass `json:"contract_class"` + Type TransactionType `json:"type"` + SenderAddress *felt.Felt `json:"sender_address"` + CompiledClassHash *felt.Felt `json:"compiled_class_hash"` + Version TransactionVersion `json:"version"` + Signature []*felt.Felt `json:"signature"` + Nonce *felt.Felt `json:"nonce"` + ContractClass *ContractClass `json:"contract_class"` + ResourceBounds ResourceBoundsMapping `json:"resource_bounds"` + Tip U64 `json:"tip"` + // The data needed to allow the paymaster to pay for the transaction in native tokens + PayMasterData []*felt.Felt `json:"paymaster_data"` + // The data needed to deploy the account contract from which this tx will be initiated + AccountDeploymentData []*felt.Felt `json:"account_deployment_data"` + // The storage domain of the account's nonce (an account has a nonce per DA mode) + NonceDataMode DataAvailabilityMode `json:"nonce_data_availability_mode"` + // The storage domain of the account's balance from which fee will be charged + FeeMode DataAvailabilityMode `json:"fee_data_availability_mode"` } func (tx BroadcastDeclareTxnV3) GetContractClass() interface{} { diff --git a/rpc/write_test.go b/rpc/write_test.go index 90e3038b..8354f5aa 100644 --- a/rpc/write_test.go +++ b/rpc/write_test.go @@ -33,30 +33,28 @@ func TestDeclareTransaction(t *testing.T) { }, { DeclareTx: BroadcastDeclareTxnV3{ - DeclareTxnV3: DeclareTxnV3{ - Type: TransactionType_Declare, - Version: TransactionV3, - Signature: []*felt.Felt{}, - Nonce: utils.TestHexToFelt(t, "0x0"), - NonceDataMode: DAModeL1, - FeeMode: DAModeL1, - ResourceBounds: ResourceBoundsMapping{ - L1Gas: ResourceBounds{ - MaxAmount: "0x0", - MaxPricePerUnit: "0x0", - }, - L2Gas: ResourceBounds{ - MaxAmount: "0x0", - MaxPricePerUnit: "0x0", - }, + Type: TransactionType_Declare, + Version: TransactionV3, + Signature: []*felt.Felt{}, + Nonce: utils.TestHexToFelt(t, "0x0"), + NonceDataMode: DAModeL1, + FeeMode: DAModeL1, + ResourceBounds: ResourceBoundsMapping{ + L1Gas: ResourceBounds{ + MaxAmount: "0x0", + MaxPricePerUnit: "0x0", }, - Tip: "", - PayMasterData: []*felt.Felt{}, - SenderAddress: utils.TestHexToFelt(t, "0x0"), - CompiledClassHash: utils.TestHexToFelt(t, "0x0"), - ClassHash: utils.TestHexToFelt(t, "0x0"), - AccountDeploymentData: []*felt.Felt{}, - }}, + L2Gas: ResourceBounds{ + MaxAmount: "0x0", + MaxPricePerUnit: "0x0", + }, + }, + Tip: "", + PayMasterData: []*felt.Felt{}, + SenderAddress: utils.TestHexToFelt(t, "0x0"), + CompiledClassHash: utils.TestHexToFelt(t, "0x0"), + AccountDeploymentData: []*felt.Felt{}, + }, ExpectedResp: AddDeclareTransactionResponse{ TransactionHash: utils.TestHexToFelt(t, "0x41d1f5206ef58a443e7d3d1ca073171ec25fa75313394318fc83a074a6631c3")}, ExpectedError: nil, From 5ea1f16c09c43b183a61c3723f37001cf3aead16 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Thu, 8 Aug 2024 00:52:45 -0300 Subject: [PATCH 06/28] Add Jun hash code and update some tests --- account/account.go | 42 ++---- contracts/contracts.go | 19 +-- contracts/contracts_test.go | 8 +- curve/curve.go | 111 +++++++-------- curve/curve_test.go | 263 +++++++++++++++--------------------- hash/hash.go | 23 +--- merkle/merkle.go | 44 ++---- merkle/merkle_test.go | 19 ++- typed/typed.go | 41 ++---- typed/typed_test.go | 106 ++++++--------- utils/Felt.go | 14 ++ utils/keccak.go | 16 +++ 12 files changed, 288 insertions(+), 418 deletions(-) diff --git a/account/account.go b/account/account.go index 1607e34b..16067a47 100644 --- a/account/account.go +++ b/account/account.go @@ -8,6 +8,7 @@ import ( "github.com/NethermindEth/juno/core/crypto" "github.com/NethermindEth/juno/core/felt" "github.com/NethermindEth/starknet.go/contracts" + "github.com/NethermindEth/starknet.go/curve" "github.com/NethermindEth/starknet.go/hash" "github.com/NethermindEth/starknet.go/rpc" "github.com/NethermindEth/starknet.go/utils" @@ -180,10 +181,7 @@ func (account *Account) TransactionHashDeployAccount(tx rpc.DeployAccountType, c case rpc.DeployAccountTxn: calldata := []*felt.Felt{txn.ClassHash, txn.ContractAddressSalt} calldata = append(calldata, txn.ConstructorCalldata...) - calldataHash, err := hash.ComputeHashOnElementsFelt(calldata) - if err != nil { - return nil, err - } + calldataHash := curve.ComputeHashOnElementsFelt(calldata) versionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { @@ -200,7 +198,7 @@ func (account *Account) TransactionHashDeployAccount(tx rpc.DeployAccountType, c txn.MaxFee, account.ChainId, []*felt.Felt{txn.Nonce}, - ) + ), nil case rpc.DeployAccountTxnV3: if txn.Version == "" || txn.ResourceBounds == (rpc.ResourceBoundsMapping{}) || txn.Nonce == nil || txn.PayMasterData == nil { return nil, ErrNotAllParametersSet @@ -265,11 +263,7 @@ func (account *Account) TransactionHashInvoke(tx rpc.InvokeTxnType) (*felt.Felt, return nil, ErrNotAllParametersSet } - calldataHash, err := hash.ComputeHashOnElementsFelt(txn.Calldata) - if err != nil { - return nil, err - } - + calldataHash := curve.ComputeHashOnElementsFelt(txn.Calldata) txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { return nil, err @@ -283,17 +277,14 @@ func (account *Account) TransactionHashInvoke(tx rpc.InvokeTxnType) (*felt.Felt, txn.MaxFee, account.ChainId, []*felt.Felt{}, - ) + ), nil case rpc.InvokeTxnV1: if txn.Version == "" || len(txn.Calldata) == 0 || txn.Nonce == nil || txn.MaxFee == nil || txn.SenderAddress == nil { return nil, ErrNotAllParametersSet } - calldataHash, err := hash.ComputeHashOnElementsFelt(txn.Calldata) - if err != nil { - return nil, err - } + calldataHash := curve.ComputeHashOnElementsFelt(txn.Calldata) txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { return nil, err @@ -307,7 +298,7 @@ func (account *Account) TransactionHashInvoke(tx rpc.InvokeTxnType) (*felt.Felt, txn.MaxFee, account.ChainId, []*felt.Felt{txn.Nonce}, - ) + ), nil case rpc.InvokeTxnV3: // https://github.com/starknet-io/SNIPs/blob/main/SNIPS/snip-8.md#protocol-changes if txn.Version == "" || txn.ResourceBounds == (rpc.ResourceBoundsMapping{}) || len(txn.Calldata) == 0 || txn.Nonce == nil || txn.SenderAddress == nil || txn.PayMasterData == nil || txn.AccountDeploymentData == nil { @@ -398,10 +389,7 @@ func (account *Account) TransactionHashDeclare(tx rpc.DeclareTxnType) (*felt.Fel return nil, ErrNotAllParametersSet } - calldataHash, err := hash.ComputeHashOnElementsFelt([]*felt.Felt{txn.ClassHash}) - if err != nil { - return nil, err - } + calldataHash := curve.ComputeHashOnElementsFelt([]*felt.Felt{txn.ClassHash}) txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { @@ -416,16 +404,13 @@ func (account *Account) TransactionHashDeclare(tx rpc.DeclareTxnType) (*felt.Fel txn.MaxFee, account.ChainId, []*felt.Felt{txn.Nonce}, - ) + ), nil case rpc.DeclareTxnV2: if txn.CompiledClassHash == nil || txn.SenderAddress == nil || txn.Version == "" || txn.ClassHash == nil || txn.MaxFee == nil || txn.Nonce == nil { return nil, ErrNotAllParametersSet } - calldataHash, err := hash.ComputeHashOnElementsFelt([]*felt.Felt{txn.ClassHash}) - if err != nil { - return nil, err - } + calldataHash := curve.ComputeHashOnElementsFelt([]*felt.Felt{txn.ClassHash}) txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { @@ -440,7 +425,7 @@ func (account *Account) TransactionHashDeclare(tx rpc.DeclareTxnType) (*felt.Fel txn.MaxFee, account.ChainId, []*felt.Felt{txn.Nonce, txn.CompiledClassHash}, - ) + ), nil case rpc.DeclareTxnV3: // https://github.com/starknet-io/SNIPs/blob/main/SNIPS/snip-8.md#protocol-changes if txn.Version == "" || txn.ResourceBounds == (rpc.ResourceBoundsMapping{}) || txn.Nonce == nil || txn.SenderAddress == nil || txn.PayMasterData == nil || txn.AccountDeploymentData == nil || @@ -495,10 +480,7 @@ func (account *Account) TransactionHashDeclare(tx rpc.DeclareTxnType) (*felt.Fel // - *felt.Felt: the precomputed address as a *felt.Felt // - error: an error if any func (account *Account) PrecomputeAccountAddress(salt *felt.Felt, classHash *felt.Felt, constructorCalldata []*felt.Felt) (*felt.Felt, error) { - result, err := contracts.PrecomputeAddress(&felt.Zero, salt, classHash, constructorCalldata) - if err != nil { - return nil, err - } + result := contracts.PrecomputeAddress(&felt.Zero, salt, classHash, constructorCalldata) return result, nil } diff --git a/contracts/contracts.go b/contracts/contracts.go index 79916108..1150f7aa 100644 --- a/contracts/contracts.go +++ b/contracts/contracts.go @@ -6,7 +6,6 @@ import ( "github.com/NethermindEth/juno/core/felt" "github.com/NethermindEth/starknet.go/curve" - "github.com/NethermindEth/starknet.go/utils" ) var PREFIX_CONTRACT_ADDRESS = new(felt.Felt).SetBytes([]byte("STARKNET_CONTRACT_ADDRESS")) @@ -61,23 +60,17 @@ func UnmarshalCasmClass(filePath string) (*CasmClass, error) { // - constructorCalldata: the constructor calldata // Returns: // - *felt.Felt: the precomputed address as a *felt.Felt -// - error: an error if any -func PrecomputeAddress(deployerAddress *felt.Felt, salt *felt.Felt, classHash *felt.Felt, constructorCalldata []*felt.Felt) (*felt.Felt, error) { +func PrecomputeAddress(deployerAddress *felt.Felt, salt *felt.Felt, classHash *felt.Felt, constructorCalldata []*felt.Felt) *felt.Felt { - bigIntArr := utils.FeltArrToBigIntArr([]*felt.Felt{ + feltArr := []*felt.Felt{ PREFIX_CONTRACT_ADDRESS, deployerAddress, salt, classHash, - }) + } - constructorCalldataBigIntArr := utils.FeltArrToBigIntArr(constructorCalldata) - constructorCallDataHashInt, _ := curve.Curve.ComputeHashOnElements(constructorCalldataBigIntArr) - bigIntArr = append(bigIntArr, constructorCallDataHashInt) + constructorCallDataHash := curve.ComputeHashOnElementsFelt(constructorCalldata) + feltArr = append(feltArr, constructorCallDataHash) - preBigInt, err := curve.Curve.ComputeHashOnElements(bigIntArr) - if err != nil { - return nil, err - } - return utils.BigIntToFelt(preBigInt), nil + return curve.ComputeHashOnElementsFelt(feltArr) } diff --git a/contracts/contracts_test.go b/contracts/contracts_test.go index 8b36e114..946d5a5f 100644 --- a/contracts/contracts_test.go +++ b/contracts/contracts_test.go @@ -1,4 +1,4 @@ -package contracts_test +package contracts import ( "encoding/json" @@ -6,7 +6,6 @@ import ( "testing" "github.com/NethermindEth/juno/core/felt" - "github.com/NethermindEth/starknet.go/contracts" "github.com/NethermindEth/starknet.go/rpc" "github.com/NethermindEth/starknet.go/utils" "github.com/stretchr/testify/assert" @@ -46,7 +45,7 @@ func TestUnmarshalContractClass(t *testing.T) { // // none func TestUnmarshalCasmClass(t *testing.T) { - casmClass, err := contracts.UnmarshalCasmClass("./tests/hello_starknet_compiled.casm.json") + casmClass, err := UnmarshalCasmClass("./tests/hello_starknet_compiled.casm.json") require.NoError(t, err) assert.Equal(t, casmClass.Prime, "0x800000000000011000000000000000000000000000000000000000000000001") assert.Equal(t, casmClass.Version, "2.1.0") @@ -106,13 +105,12 @@ func TestPrecomputeAddress(t *testing.T) { } for _, test := range testSet { - precomputedAddress, err := contracts.PrecomputeAddress( + precomputedAddress := PrecomputeAddress( utils.TestHexToFelt(t, test.DeployerAddress), utils.TestHexToFelt(t, test.Salt), utils.TestHexToFelt(t, test.ClassHash), test.ConstructorCalldata, ) - require.NoError(t, err) require.Equal(t, test.ExpectedPrecomputedAddress, precomputedAddress.String()) } } diff --git a/curve/curve.go b/curve/curve.go index c7199524..d03131f6 100644 --- a/curve/curve.go +++ b/curve/curve.go @@ -18,6 +18,7 @@ import ( junoCrypto "github.com/NethermindEth/juno/core/crypto" "github.com/NethermindEth/juno/core/felt" + "github.com/NethermindEth/starknet.go/utils" ) var Curve StarkCurve @@ -520,101 +521,81 @@ func (sc StarkCurve) SignFelt(msgHash, privKey *felt.Felt) (*felt.Felt, *felt.Fe return xFelt, yFelt, nil } -// HashElements calculates the hash of a list of elements using the StarkCurve struct and a golang Pedersen Hash. -// (ref: https://github.com/seanjameshan/starknet.js/blob/main/src/utils/ellipticCurve.ts) -// +// HashElements calculates the hash of a list of elements using a golang Pedersen Hash. // Parameters: // - elems: slice of big.Int pointers to be hashed // Returns: // - hash: The hash of the list of elements -// - err: An error if any -func (sc StarkCurve) HashElements(elems []*big.Int) (hash *big.Int, err error) { +func HashElements(elems []*big.Int) (hash *big.Int) { + feltArr := utils.BigIntArrToFeltArr(elems) if len(elems) == 0 { - elems = append(elems, big.NewInt(0)) + feltArr = append(feltArr, new(felt.Felt)) } - hash = big.NewInt(0) - for _, h := range elems { - hash, err = sc.PedersenHash([]*big.Int{hash, h}) - if err != nil { - return hash, err - } + feltHash := new(felt.Felt) + for _, felt := range feltArr { + feltHash = Pedersen(feltHash, felt) } - return hash, err + + hash = utils.FeltToBigInt(feltHash) + return } // ComputeHashOnElements computes the hash on the given elements using a golang Pedersen Hash implementation. -// (ref: https://github.com/starkware-libs/cairo-lang/blob/13cef109cd811474de114925ee61fd5ac84a25eb/src/starkware/cairo/common/hash_state.py#L6) // -// The function appends the length of `elems` to the slice and then calls the `HashElements` method of the -// `Curve` struct, passing in `elems` as an argument. The resulting hash and -// any error that occurred during computation are returned. +// The function appends the length of `elems` to the slice and then calls the `HashElements` method +// passing in `elems` as an argument. The resulting hash is returned. // // Parameters: // - elems: slice of big.Int pointers to be hashed // Returns: // - hash: The hash of the list of elements -// - err: An error if any -func (sc StarkCurve) ComputeHashOnElements(elems []*big.Int) (hash *big.Int, err error) { +func ComputeHashOnElements(elems []*big.Int) (hash *big.Int) { elems = append(elems, big.NewInt(int64(len(elems)))) - return Curve.HashElements((elems)) + return HashElements(elems) } -// PedersenHash calculates the Pedersen hash of the given elements. -// NOTE: This function assumes the curve has been initialized with constant points -// (ref: https://github.com/seanjameshan/starknet.js/blob/main/src/utils/ellipticCurve.ts) -// -// The function requires that the precomputed constant points have been initiated. -// If the length of `sc.ConstantPoints` is zero, an error is returned. -// The function iterates over the elements in `elems` and performs the Pedersen hash calculation. -// For each element, it checks if the value is within the valid range. -// If the value is invalid, an error is returned. -// For each bit in the element, the function performs an addition operation on `ptx` and `pty` -// using the corresponding constant point from the precomputed constant points. -// If the constant point is a duplicate of `ptx`, an error is returned. -// The function returns the resulting hash and a nil error if the calculation is successful. -// Otherwise, it returns `ptx` and an error describing the issue encountered. +// ComputeHashOnElementsFelt computes the hash on elements of a Felt array. +// Does the same as ComputeHashOnElements, but receives and returns felt types. // // Parameters: -// - elems: An array of big integers representing the elements to hash. +// - feltArr: A pointer to an array of Felt objects. // Returns: -// - hash: The resulting Pedersen hash as a big integer. -// - err: An error, if any, encountered during the calculation. -func (sc StarkCurve) PedersenHash(elems []*big.Int) (hash *big.Int, err error) { - if len(sc.ConstantPoints) == 0 { - return hash, fmt.Errorf("must initiate precomputed constant points") - } - - ptx := new(big.Int).Set(sc.Gx) - pty := new(big.Int).Set(sc.Gy) - for i, elem := range elems { - x := new(big.Int).Set(elem) - - if x.Cmp(big.NewInt(0)) == -1 || x.Cmp(sc.P) >= 0 { - return ptx, fmt.Errorf("invalid x: %v", x) - } +// - *felt.Felt: a pointer to a Felt object +func ComputeHashOnElementsFelt(feltArr []*felt.Felt) *felt.Felt { + return PedersenArray(feltArr...) +} - for j := 0; j < 252; j++ { - idx := 2 + (i * 252) + j - xin := new(big.Int).Set(sc.ConstantPoints[idx][0]) - yin := new(big.Int).Set(sc.ConstantPoints[idx][1]) - if xin.Cmp(ptx) == 0 { - return hash, fmt.Errorf("constant point duplication: %v %v", ptx, xin) - } - if x.Bit(0) == 1 { - ptx, pty = sc.Add(ptx, pty, xin, yin) - } - x = x.Rsh(x, 1) - } - } +// Pedersen is a function that implements the Pedersen hash. +// NOTE: This function just wraps the Juno implementation +// (ref: https://github.com/NethermindEth/juno/blob/32fd743c774ec11a1bb2ce3dceecb57515f4873e/core/crypto/pedersen_hash.go#L20) +// +// Parameters: +// - a: a pointers to felt.Felt to be hashed. +// - b: a pointers to felt.Felt to be hashed. +// Returns: +// - *felt.Felt: a pointer to a felt.Felt storing the resulting hash. +func Pedersen(a, b *felt.Felt) *felt.Felt { + return junoCrypto.Pedersen(a, b) +} - return ptx, nil +// PedersenArray is a function that takes a variadic number of felt.Felt pointers as parameters and +// calls the PedersenArray function from the junoCrypto package with the provided parameters. +// NOTE: This function just wraps the Juno implementation +// (ref: https://github.com/NethermindEth/juno/blob/32fd743c774ec11a1bb2ce3dceecb57515f4873e/core/crypto/pedersen_hash.go#L12) +// +// Parameters: +// - felts: A variadic number of pointers to felt.Felt +// Returns: +// - *felt.Felt: pointer to a felt.Felt +func PedersenArray(felts ...*felt.Felt) *felt.Felt { + return junoCrypto.PedersenArray(felts...) } // PoseidonArray is a function that takes a variadic number of felt.Felt pointers as parameters and +// calls the PoseidonArray function from the junoCrypto package with the provided parameters. // NOTE: This function just wraps the Juno implementation // (ref: https://github.com/NethermindEth/juno/blob/main/core/crypto/poseidon_hash.go#L74) -// calls the PoseidonArray function from the junoCrypto package with the provided parameters. // // Parameters: // - felts: A variadic number of pointers to felt.Felt diff --git a/curve/curve_test.go b/curve/curve_test.go index fbbfa5e6..db7a313d 100644 --- a/curve/curve_test.go +++ b/curve/curve_test.go @@ -3,13 +3,18 @@ package curve import ( "crypto/elliptic" "fmt" - "log" "math/big" "testing" + "github.com/NethermindEth/juno/core/felt" "github.com/NethermindEth/starknet.go/utils" + "github.com/stretchr/testify/require" ) +// package level variable to be used by the benchmarking code +// to prevent the compiler from optimizing the code away +var result any + // BenchmarkPedersenHash benchmarks the performance of the PedersenHash function. // // The function takes a 2D slice of big.Int values as input and measures the time @@ -21,21 +26,21 @@ import ( // // none func BenchmarkPedersenHash(b *testing.B) { - suite := [][]*big.Int{ - {utils.HexToBN("0x12773"), utils.HexToBN("0x872362")}, - {utils.HexToBN("0x1277312773"), utils.HexToBN("0x872362872362")}, - {utils.HexToBN("0x1277312773"), utils.HexToBN("0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826")}, - {utils.HexToBN("0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"), utils.HexToBN("0x872362872362")}, - {utils.HexToBN("0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"), utils.HexToBN("0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB")}, - {utils.HexToBN("0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbddd"), utils.HexToBN("0x13d41f388b8ea4db56c5aa6562f13359fab192b3db57651af916790f9debee9")}, - {utils.HexToBN("0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbddd"), utils.HexToBN("0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbdde")}, + suite := [][]string{ + {"0x12773", "0x872362"}, + {"0x1277312773", "0x872362872362"}, + {"0x1277312773", "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"}, + {"0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB", "0x872362872362"}, + {"0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826", "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"}, + {"0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbddd", "0x13d41f388b8ea4db56c5aa6562f13359fab192b3db57651af916790f9debee9"}, + {"0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbddd", "0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbdde"}, } for _, test := range suite { - b.Run(fmt.Sprintf("input_size_%d_%d", test[0].BitLen(), test[1].BitLen()), func(b *testing.B) { - if _, err := Curve.PedersenHash(test); err != nil { - log.Fatal(err) - } + b.Run(fmt.Sprintf("input_size_%d_%d", len(test[0]), len(test[1])), func(b *testing.B) { + hexArr, err := utils.HexArrToFelt(test) + require.NoError(b, err) + result = Pedersen(hexArr[0], hexArr[1]) }) } } @@ -66,9 +71,9 @@ func BenchmarkCurveSign(b *testing.B) { }) for _, test := range dataSet { - if _, _, err := Curve.Sign(test.MessageHash, test.PrivateKey, test.Seed); err != nil { - log.Fatal(err) - } + result, _, err := Curve.Sign(test.MessageHash, test.PrivateKey, test.Seed) + require.NoError(b, err) + require.NotEmpty(b, result) } } } @@ -89,24 +94,28 @@ func BenchmarkCurveSign(b *testing.B) { // // none func BenchmarkSignatureVerify(b *testing.B) { - private, _ := Curve.GetRandomPrivateKey() - x, y, _ := Curve.PrivateToPoint(private) - - hash, _ := Curve.PedersenHash( - []*big.Int{ - utils.HexToBN("0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbddd"), - utils.HexToBN("0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbdde"), - }) - - r, s, _ := Curve.Sign(hash, private) - - b.Run(fmt.Sprintf("sign_input_size_%d", hash.BitLen()), func(b *testing.B) { - if _, _, err := Curve.Sign(hash, private); err != nil { - log.Fatal(err) - } + private, err := Curve.GetRandomPrivateKey() + require.NoError(b, err) + x, y, err := Curve.PrivateToPoint(private) + require.NoError(b, err) + + hash := Pedersen( + utils.TestHexToFelt(b, "0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbddd"), + utils.TestHexToFelt(b, "0x7f15c38ea577a26f4f553282fcfe4f1feeb8ecfaad8f221ae41abf8224cbdde"), + ) + hashBigInt := utils.FeltToBigInt(hash) + + r, s, err := Curve.Sign(hashBigInt, private) + require.NoError(b, err) + + b.Run(fmt.Sprintf("sign_input_size_%d", hashBigInt.BitLen()), func(b *testing.B) { + result, _, err = Curve.Sign(hashBigInt, private) + require.NoError(b, err) + require.NotEmpty(b, result) }) - b.Run(fmt.Sprintf("verify_input_size_%d", hash.BitLen()), func(b *testing.B) { - Curve.Verify(hash, r, s, x, y) + b.Run(fmt.Sprintf("verify_input_size_%d", hashBigInt.BitLen()), func(b *testing.B) { + result = Curve.Verify(hashBigInt, r, s, x, y) + require.NotEmpty(b, result) }) } @@ -119,13 +128,10 @@ func BenchmarkSignatureVerify(b *testing.B) { // none func TestGeneral_PrivateToPoint(t *testing.T) { x, _, err := Curve.PrivateToPoint(big.NewInt(2)) - if err != nil { - t.Errorf("PrivateToPoint err %v", err) - } - expectedX, _ := new(big.Int).SetString("3324833730090626974525872402899302150520188025637965566623476530814354734325", 10) - if x.Cmp(expectedX) != 0 { - t.Errorf("Actual public key %v different from expected %v", x, expectedX) - } + require.NoError(t, err) + expectedX, ok := new(big.Int).SetString("3324833730090626974525872402899302150520188025637965566623476530814354734325", 10) + require.True(t, ok) + require.Equal(t, expectedX, x) } // TestGeneral_PedersenHash is a test function for the PedersenHash method in the General struct. @@ -140,31 +146,30 @@ func TestGeneral_PrivateToPoint(t *testing.T) { // none func TestGeneral_PedersenHash(t *testing.T) { testPedersen := []struct { - elements []*big.Int - expected *big.Int + elements []string + expected string }{ { - elements: []*big.Int{utils.HexToBN("0x12773"), utils.HexToBN("0x872362")}, - expected: utils.HexToBN("0x5ed2703dfdb505c587700ce2ebfcab5b3515cd7e6114817e6026ec9d4b364ca"), + elements: []string{"0x12773", "0x872362"}, + expected: "0x5ed2703dfdb505c587700ce2ebfcab5b3515cd7e6114817e6026ec9d4b364ca", }, { - elements: []*big.Int{utils.HexToBN("0x13d41f388b8ea4db56c5aa6562f13359fab192b3db57651af916790f9debee9"), utils.HexToBN("0x537461726b4e6574204d61696c")}, - expected: utils.HexToBN("0x180c0a3d13c1adfaa5cbc251f4fc93cc0e26cec30ca4c247305a7ce50ac807c"), + elements: []string{"0x13d41f388b8ea4db56c5aa6562f13359fab192b3db57651af916790f9debee9", "0x537461726b4e6574204d61696c"}, + expected: "0x180c0a3d13c1adfaa5cbc251f4fc93cc0e26cec30ca4c247305a7ce50ac807c", }, { - elements: []*big.Int{big.NewInt(100), big.NewInt(1000)}, - expected: utils.HexToBN("0x45a62091df6da02dce4250cb67597444d1f465319908486b836f48d0f8bf6e7"), + elements: []string{"100", "1000"}, + expected: "0x45a62091df6da02dce4250cb67597444d1f465319908486b836f48d0f8bf6e7", }, } - for _, tt := range testPedersen { - hash, err := Curve.PedersenHash(tt.elements) - if err != nil { - t.Errorf("Hashing err: %v\n", err) - } - if hash.Cmp(tt.expected) != 0 { - t.Errorf("incorrect hash: got %v expected %v\n", hash, tt.expected) - } + for _, test := range testPedersen { + elementsFelt, err := utils.HexArrToFelt(test.elements) + require.NoError(t, err) + expected := utils.TestHexToFelt(t, test.expected) + + result := Pedersen(elementsFelt[0], elementsFelt[1]) + require.Equal(t, expected, result) } } @@ -202,9 +207,7 @@ func TestGeneral_DivMod(t *testing.T) { for _, tt := range testDivmod { divR := DivMod(tt.x, tt.y, Curve.P) - if divR.Cmp(tt.expected) != 0 { - t.Errorf("DivMod Res %v does not == expected %v\n", divR, tt.expected) - } + require.Equal(t, tt.expected, divR) } } @@ -213,7 +216,7 @@ func TestGeneral_DivMod(t *testing.T) { // It tests the addition of two big integers and compares the result with the expected values. // The function takes a slice of test cases, each containing two big integers and their expected sum. // It iterates over the test cases, computes the sum using the Add function, and checks if it matches the expected sum. -// If the computed sum does not match the expected sum, an error is reported using the t.Errorf function. +// If the computed sum does not match the expected sum, an error is reported using the require.Equal function. // // Parameters: // - t: a *testing.T value representing the testing context @@ -243,13 +246,8 @@ func TestGeneral_Add(t *testing.T) { for _, tt := range testAdd { resX, resY := Curve.Add(Curve.Gx, Curve.Gy, tt.x, tt.y) - if resX.Cmp(tt.expectedX) != 0 { - t.Errorf("ResX %v does not == expected %v\n", resX, tt.expectedX) - - } - if resY.Cmp(tt.expectedY) != 0 { - t.Errorf("ResY %v does not == expected %v\n", resY, tt.expectedY) - } + require.Equal(t, tt.expectedX, resX) + require.Equal(t, tt.expectedY, resY) } } @@ -286,25 +284,16 @@ func TestGeneral_MultAir(t *testing.T) { for _, tt := range testMult { x, y, err := Curve.MimicEcMultAir(tt.r, tt.x, tt.y, Curve.Gx, Curve.Gy) - if err != nil { - t.Errorf("MultAirERR %v\n", err) - } - - if x.Cmp(tt.expectedX) != 0 { - t.Errorf("ResX %v does not == expected %v\n", x, tt.expectedX) - - } - if y.Cmp(tt.expectedY) != 0 { - t.Errorf("ResY %v does not == expected %v\n", y, tt.expectedY) - } + require.NoError(t, err) + require.Equal(t, tt.expectedX, x) + require.Equal(t, tt.expectedY, y) } } -// TestGeneral_ComputeHashOnElements is a test function that verifies the correctness of the ComputeHashOnElements function in the General package. +// TestGeneral_ComputeHashOnElements is a test function that verifies the correctness of the ComputeHashOnElements and ComputeHashOnElementsFelt functions in the General package. // -// This function tests the ComputeHashOnElements function by passing in different arrays of big.Int elements and comparing the computed hash with the expected hash. -// It checks the behavior of the ComputeHashOnElements function when an empty array is passed as input, as well as when an array with multiple elements is passed. -// The expected hashes are precalculated using the utils.HexToBN function. +// This function tests both functions by passing in different arrays of big.Int elements and comparing the computed hash with the expected hash. +// It checks the behavior of the functions when an empty array is passed as input, as well as when an array with multiple elements is passed. // // Parameters: // - t: a *testing.T value representing the testing context @@ -312,28 +301,25 @@ func TestGeneral_MultAir(t *testing.T) { // // none func TestGeneral_ComputeHashOnElements(t *testing.T) { - hashEmptyArray, err := Curve.ComputeHashOnElements([]*big.Int{}) + hashEmptyArray := ComputeHashOnElements([]*big.Int{}) + hashEmptyArrayFelt := ComputeHashOnElementsFelt([]*felt.Felt{}) + expectedHashEmmptyArray := utils.HexToBN("0x49ee3eba8c1600700ee1b87eb599f16716b0b1022947733551fde4050ca6804") - if err != nil { - t.Errorf("Could no hash an empty array %v\n", err) - } - if hashEmptyArray.Cmp(expectedHashEmmptyArray) != 0 { - t.Errorf("Hash empty array wrong value. Expected %v got %v\n", expectedHashEmmptyArray, hashEmptyArray) - } + require.Equal(t, hashEmptyArray, expectedHashEmmptyArray, "Hash empty array wrong value.") + require.Equal(t, utils.FeltToBigInt(hashEmptyArrayFelt), expectedHashEmmptyArray, "Hash empty array wrong value.") - hashFilledArray, err := Curve.ComputeHashOnElements([]*big.Int{ + filledArray := []*big.Int{ big.NewInt(123782376), big.NewInt(213984), big.NewInt(128763521321), - }) - expectedHashFilledArray := utils.HexToBN("0x7b422405da6571242dfc245a43de3b0fe695e7021c148b918cd9cdb462cac59") - - if err != nil { - t.Errorf("Could no hash an array with values %v\n", err) - } - if hashFilledArray.Cmp(expectedHashFilledArray) != 0 { - t.Errorf("Hash filled array wrong value. Expected %v got %v\n", expectedHashFilledArray, hashFilledArray) } + + hashFilledArray := ComputeHashOnElements(filledArray) + hashFilledArrayFelt := ComputeHashOnElementsFelt(utils.BigIntArrToFeltArr(filledArray)) + + expectedHashFilledArray := utils.HexToBN("0x7b422405da6571242dfc245a43de3b0fe695e7021c148b918cd9cdb462cac59") + require.Equal(t, hashFilledArray, expectedHashFilledArray, "Hash filled array wrong value.") + require.Equal(t, utils.FeltToBigInt(hashFilledArrayFelt), expectedHashFilledArray, "Hash filled array wrong value.") } // TestGeneral_HashAndSign is a test function that verifies the hashing and signing process. @@ -344,29 +330,21 @@ func TestGeneral_ComputeHashOnElements(t *testing.T) { // // none func TestGeneral_HashAndSign(t *testing.T) { - hashy, err := Curve.HashElements([]*big.Int{ + hashy := HashElements([]*big.Int{ big.NewInt(1953658213), big.NewInt(126947999705460), big.NewInt(1953658213), }) - if err != nil { - t.Errorf("Hasing elements: %v\n", err) - } - priv, _ := Curve.GetRandomPrivateKey() + priv, err := Curve.GetRandomPrivateKey() + require.NoError(t, err) x, y, err := Curve.PrivateToPoint(priv) - if err != nil { - t.Errorf("Could not convert random private key to point: %v\n", err) - } + require.NoError(t, err) r, s, err := Curve.Sign(hashy, priv) - if err != nil { - t.Errorf("Could not convert gen signature: %v\n", err) - } + require.NoError(t, err) - if !Curve.Verify(hashy, r, s, x, y) { - t.Errorf("Verified bad signature %v %v\n", r, s) - } + require.True(t, Curve.Verify(hashy, r, s, x, y)) } // TestGeneral_ComputeFact tests the ComputeFact function. @@ -401,9 +379,7 @@ func TestGeneral_ComputeFact(t *testing.T) { for _, tt := range testFacts { hash := utils.ComputeFact(tt.programHash, tt.programOutput) - if hash.Cmp(tt.expected) != 0 { - t.Errorf("Fact does not equal ex %v %v\n", hash, tt.expected) - } + require.Equal(t, tt.expected, hash) } } @@ -415,36 +391,25 @@ func TestGeneral_ComputeFact(t *testing.T) { // // none func TestGeneral_BadSignature(t *testing.T) { - hash, err := Curve.PedersenHash([]*big.Int{utils.HexToBN("0x12773"), utils.HexToBN("0x872362")}) - if err != nil { - t.Errorf("Hashing err: %v\n", err) - } + hash := Pedersen(utils.TestHexToFelt(t, "0x12773"), utils.TestHexToFelt(t, "0x872362")) + hashBigInt := utils.FeltToBigInt(hash) - priv, _ := Curve.GetRandomPrivateKey() + priv, err := Curve.GetRandomPrivateKey() + require.NoError(t, err) x, y, err := Curve.PrivateToPoint(priv) - if err != nil { - t.Errorf("Could not convert random private key to point: %v\n", err) - } + require.NoError(t, err) - r, s, err := Curve.Sign(hash, priv) - if err != nil { - t.Errorf("Could not convert gen signature: %v\n", err) - } + r, s, err := Curve.Sign(hashBigInt, priv) + require.NoError(t, err) badR := new(big.Int).Add(r, big.NewInt(1)) - if Curve.Verify(hash, badR, s, x, y) { - t.Errorf("Verified bad signature %v %v\n", r, s) - } + require.False(t, Curve.Verify(hashBigInt, badR, s, x, y)) badS := new(big.Int).Add(s, big.NewInt(1)) - if Curve.Verify(hash, r, badS, x, y) { - t.Errorf("Verified bad signature %v %v\n", r, s) - } + require.False(t, Curve.Verify(hashBigInt, r, badS, x, y)) - badHash := new(big.Int).Add(hash, big.NewInt(1)) - if Curve.Verify(badHash, r, s, x, y) { - t.Errorf("Verified bad signature %v %v\n", r, s) - } + badHash := new(big.Int).Add(hashBigInt, big.NewInt(1)) + require.False(t, Curve.Verify(badHash, r, s, x, y)) } // TestGeneral_Signature tests the Signature function. @@ -494,28 +459,24 @@ func TestGeneral_Signature(t *testing.T) { var err error for _, tt := range testSignature { + require := require.New(t) if tt.raw != "" { - h, _ := utils.HexToBytes(tt.raw) + h, err := utils.HexToBytes(tt.raw) + require.NoError(err) tt.publicX, tt.publicY = elliptic.Unmarshal(Curve, h) //nolint:all } else if tt.private != nil { tt.publicX, tt.publicY, err = Curve.PrivateToPoint(tt.private) - if err != nil { - t.Errorf("Could not convert random private key to point: %v\n", err) - } + require.NoError(err) } else if tt.publicX != nil { tt.publicY = Curve.GetYCoordinate(tt.publicX) } if tt.rIn == nil && tt.private != nil { tt.rIn, tt.sIn, err = Curve.Sign(tt.hash, tt.private) - if err != nil { - t.Errorf("Could not sign good hash: %v\n", err) - } + require.NoError(err) } - if !Curve.Verify(tt.hash, tt.rIn, tt.sIn, tt.publicX, tt.publicY) { - t.Errorf("successful signature did not verify\n") - } + require.True(Curve.Verify(tt.hash, tt.rIn, tt.sIn, tt.publicX, tt.publicY)) } } @@ -536,11 +497,7 @@ func TestGeneral_SplitFactStr(t *testing.T) { } for _, d := range data { l, h := utils.SplitFactStr(d["input"]) // 0x3 - if l != d["l"] { - t.Errorf("expected %s, got %s", d["l"], l) - } - if h != d["h"] { - t.Errorf("expected %s, got %s", d["h"], h) - } + require.Equal(t, d["l"], l) + require.Equal(t, d["h"], h) } } diff --git a/hash/hash.go b/hash/hash.go index b669753b..9ce5e7b9 100644 --- a/hash/hash.go +++ b/hash/hash.go @@ -5,26 +5,8 @@ import ( "github.com/NethermindEth/starknet.go/contracts" "github.com/NethermindEth/starknet.go/curve" "github.com/NethermindEth/starknet.go/rpc" - "github.com/NethermindEth/starknet.go/utils" ) -// ComputeHashOnElementsFelt computes the hash on elements of a Felt array. -// -// Parameters: -// - feltArr: A pointer to an array of Felt objects. -// Returns: -// - *felt.Felt: a pointer to a Felt object -// - error: an error if any -func ComputeHashOnElementsFelt(feltArr []*felt.Felt) (*felt.Felt, error) { - bigIntArr := utils.FeltArrToBigIntArr(feltArr) - - hash, err := curve.Curve.ComputeHashOnElements(bigIntArr) - if err != nil { - return nil, err - } - return utils.BigIntToFelt(hash), nil -} - // CalculateTransactionHashCommon calculates the transaction hash common to be used in the StarkNet network - a unique identifier of the transaction. // [specification]: https://github.com/starkware-libs/cairo-lang/blob/master/src/starkware/starknet/core/os/transaction_hash/transaction_hash.py#L27C5-L27C38 // @@ -39,7 +21,6 @@ func ComputeHashOnElementsFelt(feltArr []*felt.Felt) (*felt.Felt, error) { // - additionalData: Additional data to be included in the hash // Returns: // - *felt.Felt: the calculated transaction hash -// - error: an error if any func CalculateTransactionHashCommon( txHashPrefix *felt.Felt, version *felt.Felt, @@ -48,7 +29,7 @@ func CalculateTransactionHashCommon( calldata *felt.Felt, maxFee *felt.Felt, chainId *felt.Felt, - additionalData []*felt.Felt) (*felt.Felt, error) { + additionalData []*felt.Felt) *felt.Felt { dataToHash := []*felt.Felt{ txHashPrefix, @@ -60,7 +41,7 @@ func CalculateTransactionHashCommon( chainId, } dataToHash = append(dataToHash, additionalData...) - return ComputeHashOnElementsFelt(dataToHash) + return curve.ComputeHashOnElementsFelt(dataToHash) } // ClassHash calculates the hash of a contract class. diff --git a/merkle/merkle.go b/merkle/merkle.go index b6813bf0..c1c32940 100644 --- a/merkle/merkle.go +++ b/merkle/merkle.go @@ -17,24 +17,19 @@ type FixedSizeMerkleTree struct { // // It takes a variable number of *big.Int leaves as input and returns a pointer to a FixedSizeMerkleTree and an error. // The function builds the Merkle tree using the given leaves and sets the tree's root. -// If there is an error during the tree building process, the function returns nil and the error. // // Parameters: // - leaves: a slice of *big.Int representing the leaves of the tree. // Returns: // - *FixedSizeMerkleTree: a pointer to a FixedSizeMerkleTree -// - error: an error if any -func NewFixedSizeMerkleTree(leaves ...*big.Int) (*FixedSizeMerkleTree, error) { +func NewFixedSizeMerkleTree(leaves ...*big.Int) *FixedSizeMerkleTree { mt := &FixedSizeMerkleTree{ Leaves: leaves, Branches: [][]*big.Int{}, } - root, err := mt.build(leaves) - if err != nil { - return nil, err - } + root := mt.build(leaves) mt.Root = root - return mt, err + return mt } // MerkleHash calculates the Merkle hash of two big integers. @@ -44,12 +39,11 @@ func NewFixedSizeMerkleTree(leaves ...*big.Int) (*FixedSizeMerkleTree, error) { // - y: the second big integer // Returns: // - *big.Int: the Merkle hash of the two big integers -// - error: an error if the calculation fails -func MerkleHash(x, y *big.Int) (*big.Int, error) { +func MerkleHash(x, y *big.Int) *big.Int { if x.Cmp(y) <= 0 { - return curve.Curve.HashElements([]*big.Int{x, y}) + return curve.HashElements([]*big.Int{x, y}) } - return curve.Curve.HashElements([]*big.Int{y, x}) + return curve.HashElements([]*big.Int{y, x}) } // build recursively constructs a Merkle tree from the given leaves. @@ -58,26 +52,19 @@ func MerkleHash(x, y *big.Int) (*big.Int, error) { // - leaves: a slice of *big.Int representing the leaves of the tree // Return type(s): // - *big.Int: the root hash of the Merkle tree -// - error: any error that occurred during the construction of the tree -func (mt *FixedSizeMerkleTree) build(leaves []*big.Int) (*big.Int, error) { +func (mt *FixedSizeMerkleTree) build(leaves []*big.Int) *big.Int { if len(leaves) == 1 { - return leaves[0], nil + return leaves[0] } mt.Branches = append(mt.Branches, leaves) newLeaves := []*big.Int{} for i := 0; i < len(leaves); i += 2 { if i+1 == len(leaves) { - hash, err := MerkleHash(leaves[i], big.NewInt(0)) - if err != nil { - return nil, err - } + hash := MerkleHash(leaves[i], big.NewInt(0)) newLeaves = append(newLeaves, hash) break } - hash, err := MerkleHash(leaves[i], leaves[i+1]) - if err != nil { - return nil, err - } + hash := MerkleHash(leaves[i], leaves[i+1]) newLeaves = append(newLeaves, hash) } return mt.build(newLeaves) @@ -125,10 +112,7 @@ func (mt *FixedSizeMerkleTree) recursiveProof(leaf *big.Int, branchIndex int, ha if index%2 != 0 { nextProof = branch[index-1] } - newLeaf, err := MerkleHash(leaf, nextProof) - if err != nil { - return nil, fmt.Errorf("nextproof error: %v", err) - } + newLeaf := MerkleHash(leaf, nextProof) newHashPath := append(hashPath, nextProof) return mt.recursiveProof(newLeaf, branchIndex+1, newHashPath) } @@ -150,9 +134,7 @@ func ProofMerklePath(root *big.Int, leaf *big.Int, path []*big.Int) bool { if len(path) == 0 { return root.Cmp(leaf) == 0 } - nexLeaf, err := MerkleHash(leaf, path[0]) - if err != nil { - return false - } + nexLeaf := MerkleHash(leaf, path[0]) + return ProofMerklePath(root, nexLeaf, path[1:]) } diff --git a/merkle/merkle_test.go b/merkle/merkle_test.go index f2dd6094..d6074a62 100644 --- a/merkle/merkle_test.go +++ b/merkle/merkle_test.go @@ -11,7 +11,8 @@ import ( // - t: a pointer to the testing.T object // - proofs: a slice of pointers to big.Int objects representing the proofs // Returns: -// none +// +// none func debugProof(t *testing.T, proofs []*big.Int) { t.Log("...proof") for k, v := range proofs { @@ -26,23 +27,21 @@ func debugProof(t *testing.T, proofs []*big.Int) { // Parameters: // - t: A testing.T object used for reporting test failures and logging. // Returns: -// none +// +// none func TestGeneral_FixedSizeMerkleTree_Check1(t *testing.T) { leaves := []*big.Int{big.NewInt(1), big.NewInt(2), big.NewInt(3), big.NewInt(4), big.NewInt(5), big.NewInt(6), big.NewInt(7)} - merkleTree, err := NewFixedSizeMerkleTree(leaves...) - proof_7_0, _ := MerkleHash(big.NewInt(7), big.NewInt(0)) - proof_1_2, _ := MerkleHash(big.NewInt(1), big.NewInt(2)) - proof_3_4, _ := MerkleHash(big.NewInt(3), big.NewInt(4)) - proof_1_2_3_4, _ := MerkleHash(proof_1_2, proof_3_4) + merkleTree := NewFixedSizeMerkleTree(leaves...) + proof_7_0 := MerkleHash(big.NewInt(7), big.NewInt(0)) + proof_1_2 := MerkleHash(big.NewInt(1), big.NewInt(2)) + proof_3_4 := MerkleHash(big.NewInt(3), big.NewInt(4)) + proof_1_2_3_4 := MerkleHash(proof_1_2, proof_3_4) manualProof := []*big.Int{ big.NewInt(6), proof_7_0, proof_1_2_3_4, } leaf := big.NewInt(5) - if err != nil { - t.Fatal("should generate merkle tree, error", err) - } proof, err := merkleTree.Proof(leaf) if err != nil { t.Fatal("should generate merkle proof, error", err) diff --git a/typed/typed.go b/typed/typed.go index 67373bcf..54771223 100644 --- a/typed/typed.go +++ b/typed/typed.go @@ -70,7 +70,7 @@ func (dm Domain) FmtDefinitionEncoding(field string) (fmtEnc []*big.Int) { // Returns: // - *felt.Felt: a *felt.Felt with the value of str func strToFelt(str string) *felt.Felt { - var f = &felt.Zero + var f = new(felt.Felt) asciiRegexp := regexp.MustCompile(`^([[:graph:]]|[[:space:]]){1,31}$`) if b, ok := new(big.Int).SetString(str, 0); ok { @@ -128,40 +128,32 @@ func NewTypedData(types map[string]TypeDef, pType string, dom Domain) (td TypedD // Parameters: // - account: A pointer to a big.Int representing the account. // - msg: A TypedMessage object representing the message. -// - sc: A StarkCurve object representing the curve. // Returns: // - hash: A pointer to a big.Int representing the calculated hash. -// - err: An error object indicating any error that occurred during the calculation. -func (td TypedData) GetMessageHash(account *big.Int, msg TypedMessage, sc curve.StarkCurve) (hash *big.Int, err error) { +func (td TypedData) GetMessageHash(account *big.Int, msg TypedMessage) (hash *big.Int) { elements := []*big.Int{utils.UTF8StrToBig("StarkNet Message")} - domEnc, err := td.GetTypedMessageHash("StarkNetDomain", td.Domain, sc) - if err != nil { - return hash, fmt.Errorf("could not hash domain: %w", err) - } + domEnc := td.GetTypedMessageHash("StarkNetDomain", td.Domain) + elements = append(elements, domEnc) elements = append(elements, account) - msgEnc, err := td.GetTypedMessageHash(td.PrimaryType, msg, sc) - if err != nil { - return hash, fmt.Errorf("could not hash message: %w", err) - } + msgEnc := td.GetTypedMessageHash(td.PrimaryType, msg) elements = append(elements, msgEnc) - hash, err = sc.ComputeHashOnElements(elements) - return hash, err + hash = curve.ComputeHashOnElements(elements) + return hash } // GetTypedMessageHash calculates the hash of a typed message using the provided StarkCurve. // // Parameters: -// - inType: the type of the message -// - msg: the typed message -// - sc: the StarkCurve used for hashing +// - inType: the type of the message +// - msg: the typed message +// // Returns: -// - hash: the calculated hash -// - err: any error if any -func (td TypedData) GetTypedMessageHash(inType string, msg TypedMessage, sc curve.StarkCurve) (hash *big.Int, err error) { +// - hash: the calculated hash +func (td TypedData) GetTypedMessageHash(inType string, msg TypedMessage) (hash *big.Int) { prim := td.Types[inType] elements := []*big.Int{prim.Encoding} @@ -179,15 +171,12 @@ func (td TypedData) GetTypedMessageHash(inType string, msg TypedMessage, sc curv innerElements = append(innerElements, fmtDefinitions...) innerElements = append(innerElements, big.NewInt(int64(len(innerElements)))) - innerHash, err := sc.HashElements(innerElements) - if err != nil { - return hash, fmt.Errorf("error hashing internal elements: %v %w", innerElements, err) - } + innerHash := curve.HashElements(innerElements) elements = append(elements, innerHash) } - hash, err = sc.ComputeHashOnElements(elements) - return hash, err + hash = curve.ComputeHashOnElements(elements) + return hash } // GetTypeHash returns the hash of the given type. diff --git a/typed/typed_test.go b/typed/typed_test.go index 19b6b1e1..f58d87bc 100644 --- a/typed/typed_test.go +++ b/typed/typed_test.go @@ -2,12 +2,11 @@ package typed import ( "fmt" - "log" "math/big" "testing" - "github.com/NethermindEth/starknet.go/curve" "github.com/NethermindEth/starknet.go/utils" + "github.com/stretchr/testify/require" ) type Mail struct { @@ -50,7 +49,7 @@ func (mail Mail) FmtDefinitionEncoding(field string) (fmtEnc []*big.Int) { // // Returns: // - ttd: the generated TypedData object -func MockTypedData() (ttd TypedData) { +func MockTypedData() (ttd TypedData, err error) { exampleTypes := make(map[string]TypeDef) domDefs := []Definition{{"name", "felt"}, {"version", "felt"}, {"chainId", "felt"}} exampleTypes["StarkNetDomain"] = TypeDef{Definitions: domDefs} @@ -65,8 +64,11 @@ func MockTypedData() (ttd TypedData) { ChainId: "1", } - ttd, _ = NewTypedData(exampleTypes, "Mail", dm) - return ttd + ttd, err = NewTypedData(exampleTypes, "Mail", dm) + if err != nil { + return TypedData{}, err + } + return ttd, err } // TestGeneral_GetMessageHash tests the GetMessageHash function. @@ -83,7 +85,8 @@ func MockTypedData() (ttd TypedData) { // Returns: // - None func TestGeneral_GetMessageHash(t *testing.T) { - ttd := MockTypedData() + ttd, err := MockTypedData() + require.NoError(t, err) mail := Mail{ From: Person{ @@ -97,15 +100,10 @@ func TestGeneral_GetMessageHash(t *testing.T) { Contents: "Hello, Bob!", } - hash, err := ttd.GetMessageHash(utils.HexToBN("0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"), mail, curve.Curve) - if err != nil { - t.Errorf("Could not hash message: %v\n", err) - } + hash := ttd.GetMessageHash(utils.HexToBN("0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"), mail) exp := "0x6fcff244f63e38b9d88b9e3378d44757710d1b244282b435cb472053c8d78d0" - if utils.BigToHex(hash) != exp { - t.Errorf("type hash: %v does not match expected %v\n", utils.BigToHex(hash), exp) - } + require.Equal(t, exp, utils.BigToHex(hash)) } // BenchmarkGetMessageHash is a benchmark function for testing the GetMessageHash function. @@ -120,7 +118,8 @@ func TestGeneral_GetMessageHash(t *testing.T) { // // none func BenchmarkGetMessageHash(b *testing.B) { - ttd := MockTypedData() + ttd, err := MockTypedData() + require.NoError(b, err) mail := Mail{ From: Person{ @@ -135,9 +134,8 @@ func BenchmarkGetMessageHash(b *testing.B) { } addr := utils.HexToBN("0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826") b.Run(fmt.Sprintf("input_size_%d", addr.BitLen()), func(b *testing.B) { - if _, err := ttd.GetMessageHash(addr, mail, curve.Curve); err != nil { - log.Fatal(err) - } + result := ttd.GetMessageHash(addr, mail) + require.NotEmpty(b, result) }) } @@ -152,17 +150,13 @@ func BenchmarkGetMessageHash(b *testing.B) { // // none func TestGeneral_GetDomainHash(t *testing.T) { - ttd := MockTypedData() + ttd, err := MockTypedData() + require.NoError(t, err) - hash, err := ttd.GetTypedMessageHash("StarkNetDomain", ttd.Domain, curve.Curve) - if err != nil { - t.Errorf("Could not hash message: %v\n", err) - } + hash := ttd.GetTypedMessageHash("StarkNetDomain", ttd.Domain) exp := "0x54833b121883a3e3aebff48ec08a962f5742e5f7b973469c1f8f4f55d470b07" - if utils.BigToHex(hash) != exp { - t.Errorf("type hash: %v does not match expected %v\n", utils.BigToHex(hash), exp) - } + require.Equal(t, exp, utils.BigToHex(hash)) } // TestGeneral_GetTypedMessageHash is a unit test for the GetTypedMessageHash function @@ -178,7 +172,8 @@ func TestGeneral_GetDomainHash(t *testing.T) { // // none func TestGeneral_GetTypedMessageHash(t *testing.T) { - ttd := MockTypedData() + ttd, err := MockTypedData() + require.NoError(t, err) mail := Mail{ From: Person{ @@ -192,15 +187,10 @@ func TestGeneral_GetTypedMessageHash(t *testing.T) { Contents: "Hello, Bob!", } - hash, err := ttd.GetTypedMessageHash("Mail", mail, curve.Curve) - if err != nil { - t.Errorf("Could get typed message hash: %v\n", err) - } + hash := ttd.GetTypedMessageHash("Mail", mail) exp := "0x4758f1ed5e7503120c228cbcaba626f61514559e9ef5ed653b0b885e0f38aec" - if utils.BigToHex(hash) != exp { - t.Errorf("type hash: %v does not match expected %v\n", utils.BigToHex(hash), exp) - } + require.Equal(t, exp, utils.BigToHex(hash)) } // TestGeneral_GetTypeHash tests the GetTypeHash function. @@ -215,37 +205,28 @@ func TestGeneral_GetTypedMessageHash(t *testing.T) { // // none func TestGeneral_GetTypeHash(t *testing.T) { - tdd := MockTypedData() + require := require.New(t) - hash, err := tdd.GetTypeHash("StarkNetDomain") - if err != nil { - t.Errorf("error enccoding type %v\n", err) - } + ttd, err := MockTypedData() + require.NoError(err) + + hash, err := ttd.GetTypeHash("StarkNetDomain") + require.NoError(err) exp := "0x1bfc207425a47a5dfa1a50a4f5241203f50624ca5fdf5e18755765416b8e288" - if utils.BigToHex(hash) != exp { - t.Errorf("type hash: %v does not match expected %v\n", utils.BigToHex(hash), exp) - } + require.Equal(exp, utils.BigToHex(hash)) - enc := tdd.Types["StarkNetDomain"] - if utils.BigToHex(enc.Encoding) != exp { - t.Errorf("type hash: %v does not match expected %v\n", utils.BigToHex(hash), exp) - } + enc := ttd.Types["StarkNetDomain"] + require.Equal(exp, utils.BigToHex(enc.Encoding)) - pHash, err := tdd.GetTypeHash("Person") - if err != nil { - t.Errorf("error enccoding type %v\n", err) - } + pHash, err := ttd.GetTypeHash("Person") + require.NoError(err) exp = "0x2896dbe4b96a67110f454c01e5336edc5bbc3635537efd690f122f4809cc855" - if utils.BigToHex(pHash) != exp { - t.Errorf("type hash: %v does not match expected %v\n", utils.BigToHex(pHash), exp) - } + require.Equal(exp, utils.BigToHex(pHash)) - enc = tdd.Types["Person"] - if utils.BigToHex(enc.Encoding) != exp { - t.Errorf("type hash: %v does not match expected %v\n", utils.BigToHex(hash), exp) - } + enc = ttd.Types["Person"] + require.Equal(exp, utils.BigToHex(enc.Encoding)) } // TestGeneral_GetSelectorFromName tests the GetSelectorFromName function. @@ -288,15 +269,12 @@ func TestGeneral_GetSelectorFromName(t *testing.T) { // // none func TestGeneral_EncodeType(t *testing.T) { - tdd := MockTypedData() + ttd, err := MockTypedData() + require.NoError(t, err) - enc, err := tdd.EncodeType("Mail") - if err != nil { - t.Errorf("error enccoding type %v\n", err) - } + enc, err := ttd.EncodeType("Mail") + require.NoError(t, err) exp := "Mail(from:Person,to:Person,contents:felt)Person(name:felt,wallet:felt)" - if enc != exp { - t.Errorf("type encoding: %v does not match expected %v\n", enc, exp) - } + require.Equal(t, exp, enc) } diff --git a/utils/Felt.go b/utils/Felt.go index 50e0357f..002b7cba 100644 --- a/utils/Felt.go +++ b/utils/Felt.go @@ -202,3 +202,17 @@ func feltToString(f *felt.Felt) (string, error) { } return string(b), nil } + +// BigIntArrToFeltArr converts an array of big.Int objects to an array of Felt objects. +// +// Parameters: +// - bigArr: the array of big.Int objects to convert +// Returns: +// - []*felt.Felt: the array of Felt objects +func BigIntArrToFeltArr(bigArr []*big.Int) []*felt.Felt { + var feltArr []*felt.Felt + for _, big := range bigArr { + feltArr = append(feltArr, BigIntToFelt(big)) + } + return feltArr +} diff --git a/utils/keccak.go b/utils/keccak.go index 171487e8..4426a1bd 100644 --- a/utils/keccak.go +++ b/utils/keccak.go @@ -73,6 +73,22 @@ func HexToBN(hexString string) *big.Int { return n } +// HexArrToBNArr converts a hexadecimal string array to a *big.Int array. +// Trim "0x" prefix(if exists) +// +// Parameters: +// - hexArr: the hexadecimal string array to be converted +// Returns: +// - *big.Int: the converted array +func HexArrToBNArr(hexArr []string) []*big.Int { + bigNumArr := make([]*big.Int, len(hexArr)) + for i, e := range hexArr { + bigNum := HexToBN(e) + bigNumArr[i] = bigNum + } + return bigNumArr +} + // HexToBytes converts a hexadecimal string to a byte slice. // trim "0x" prefix(if exists) // From f9119cecfb85b0142d65a12664625e157ab56402 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Mon, 12 Aug 2024 20:29:36 -0300 Subject: [PATCH 07/28] Improve code semantic --- account/account.go | 2 -- contracts/contracts.go | 11 +++-------- curve/curve.go | 8 ++++---- curve/curve_test.go | 2 +- merkle/merkle.go | 7 +++---- typed/typed.go | 12 +++++------- utils/keccak.go | 5 ++--- 7 files changed, 18 insertions(+), 29 deletions(-) diff --git a/account/account.go b/account/account.go index 16067a47..1a28da0f 100644 --- a/account/account.go +++ b/account/account.go @@ -203,8 +203,6 @@ func (account *Account) TransactionHashDeployAccount(tx rpc.DeployAccountType, c if txn.Version == "" || txn.ResourceBounds == (rpc.ResourceBoundsMapping{}) || txn.Nonce == nil || txn.PayMasterData == nil { return nil, ErrNotAllParametersSet } - calldata := []*felt.Felt{txn.ClassHash, txn.ContractAddressSalt} - calldata = append(calldata, txn.ConstructorCalldata...) //nolint:all txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { diff --git a/contracts/contracts.go b/contracts/contracts.go index 1150f7aa..e8c719c2 100644 --- a/contracts/contracts.go +++ b/contracts/contracts.go @@ -61,16 +61,11 @@ func UnmarshalCasmClass(filePath string) (*CasmClass, error) { // Returns: // - *felt.Felt: the precomputed address as a *felt.Felt func PrecomputeAddress(deployerAddress *felt.Felt, salt *felt.Felt, classHash *felt.Felt, constructorCalldata []*felt.Felt) *felt.Felt { - - feltArr := []*felt.Felt{ + return curve.ComputeHashOnElementsFelt([]*felt.Felt{ PREFIX_CONTRACT_ADDRESS, deployerAddress, salt, classHash, - } - - constructorCallDataHash := curve.ComputeHashOnElementsFelt(constructorCalldata) - feltArr = append(feltArr, constructorCallDataHash) - - return curve.ComputeHashOnElementsFelt(feltArr) + curve.ComputeHashOnElementsFelt(constructorCalldata), + }) } diff --git a/curve/curve.go b/curve/curve.go index d03131f6..a86ccee4 100644 --- a/curve/curve.go +++ b/curve/curve.go @@ -521,12 +521,12 @@ func (sc StarkCurve) SignFelt(msgHash, privKey *felt.Felt) (*felt.Felt, *felt.Fe return xFelt, yFelt, nil } -// HashElements calculates the hash of a list of elements using a golang Pedersen Hash. +// HashPedersenElements calculates the hash of a list of elements using a golang Pedersen Hash. // Parameters: // - elems: slice of big.Int pointers to be hashed // Returns: // - hash: The hash of the list of elements -func HashElements(elems []*big.Int) (hash *big.Int) { +func HashPedersenElements(elems []*big.Int) (hash *big.Int) { feltArr := utils.BigIntArrToFeltArr(elems) if len(elems) == 0 { feltArr = append(feltArr, new(felt.Felt)) @@ -543,7 +543,7 @@ func HashElements(elems []*big.Int) (hash *big.Int) { // ComputeHashOnElements computes the hash on the given elements using a golang Pedersen Hash implementation. // -// The function appends the length of `elems` to the slice and then calls the `HashElements` method +// The function appends the length of `elems` to the slice and then calls the `HashPedersenElements` method // passing in `elems` as an argument. The resulting hash is returned. // // Parameters: @@ -552,7 +552,7 @@ func HashElements(elems []*big.Int) (hash *big.Int) { // - hash: The hash of the list of elements func ComputeHashOnElements(elems []*big.Int) (hash *big.Int) { elems = append(elems, big.NewInt(int64(len(elems)))) - return HashElements(elems) + return HashPedersenElements(elems) } // ComputeHashOnElementsFelt computes the hash on elements of a Felt array. diff --git a/curve/curve_test.go b/curve/curve_test.go index db7a313d..5e5810ac 100644 --- a/curve/curve_test.go +++ b/curve/curve_test.go @@ -330,7 +330,7 @@ func TestGeneral_ComputeHashOnElements(t *testing.T) { // // none func TestGeneral_HashAndSign(t *testing.T) { - hashy := HashElements([]*big.Int{ + hashy := HashPedersenElements([]*big.Int{ big.NewInt(1953658213), big.NewInt(126947999705460), big.NewInt(1953658213), diff --git a/merkle/merkle.go b/merkle/merkle.go index c1c32940..58053981 100644 --- a/merkle/merkle.go +++ b/merkle/merkle.go @@ -27,8 +27,7 @@ func NewFixedSizeMerkleTree(leaves ...*big.Int) *FixedSizeMerkleTree { Leaves: leaves, Branches: [][]*big.Int{}, } - root := mt.build(leaves) - mt.Root = root + mt.Root = mt.build(leaves) return mt } @@ -41,9 +40,9 @@ func NewFixedSizeMerkleTree(leaves ...*big.Int) *FixedSizeMerkleTree { // - *big.Int: the Merkle hash of the two big integers func MerkleHash(x, y *big.Int) *big.Int { if x.Cmp(y) <= 0 { - return curve.HashElements([]*big.Int{x, y}) + return curve.HashPedersenElements([]*big.Int{x, y}) } - return curve.HashElements([]*big.Int{y, x}) + return curve.HashPedersenElements([]*big.Int{y, x}) } // build recursively constructs a Merkle tree from the given leaves. diff --git a/typed/typed.go b/typed/typed.go index 54771223..f1b89915 100644 --- a/typed/typed.go +++ b/typed/typed.go @@ -141,8 +141,8 @@ func (td TypedData) GetMessageHash(account *big.Int, msg TypedMessage) (hash *bi msgEnc := td.GetTypedMessageHash(td.PrimaryType, msg) elements = append(elements, msgEnc) - hash = curve.ComputeHashOnElements(elements) - return hash + + return curve.ComputeHashOnElements(elements) } // GetTypedMessageHash calculates the hash of a typed message using the provided StarkCurve. @@ -171,12 +171,11 @@ func (td TypedData) GetTypedMessageHash(inType string, msg TypedMessage) (hash * innerElements = append(innerElements, fmtDefinitions...) innerElements = append(innerElements, big.NewInt(int64(len(innerElements)))) - innerHash := curve.HashElements(innerElements) + innerHash := curve.HashPedersenElements(innerElements) elements = append(elements, innerHash) } - hash = curve.ComputeHashOnElements(elements) - return hash + return curve.ComputeHashOnElements(elements) } // GetTypeHash returns the hash of the given type. @@ -191,8 +190,7 @@ func (td TypedData) GetTypeHash(inType string) (ret *big.Int, err error) { if err != nil { return ret, err } - sel := utils.GetSelectorFromName(enc) - return sel, nil + return utils.GetSelectorFromName(enc), nil } // EncodeType encodes the given inType using the TypedData struct. diff --git a/utils/keccak.go b/utils/keccak.go index 4426a1bd..1133df96 100644 --- a/utils/keccak.go +++ b/utils/keccak.go @@ -82,9 +82,8 @@ func HexToBN(hexString string) *big.Int { // - *big.Int: the converted array func HexArrToBNArr(hexArr []string) []*big.Int { bigNumArr := make([]*big.Int, len(hexArr)) - for i, e := range hexArr { - bigNum := HexToBN(e) - bigNumArr[i] = bigNum + for i, hexStr := range hexArr { + bigNumArr[i] = HexToBN(hexStr) } return bigNumArr } From 0895b275ccf9f30c9ef89ad493705597c0c5f020 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Mon, 12 Aug 2024 23:24:32 -0300 Subject: [PATCH 08/28] Rename files, less code and fix receiptTests --- rpc/mock_test.go | 130 ++---------- ...xs64159.json => sepoliaBlockTxs64159.json} | 0 ...3.json => mainnetBlockReceipts588763.json} | 0 ...59.json => sepoliaBlockReceipts64159.json} | 0 ...60c39d3a668fe12f117ecedb9749466d8352b.json | 46 ----- ...68355e7033ad1de11b77b225374875aff519.json} | 0 ...60c39d3a668fe12f117ecedb9749466d8352b.json | 50 +++++ ...1f090a70d1e3bbde80998fde11a08aab8b282.json | 51 +++++ rpc/transaction_test.go | 195 +++--------------- rpc/types_block_test.go | 80 ++----- 10 files changed, 155 insertions(+), 397 deletions(-) rename rpc/tests/block/{sepoliaTxs64159.json => sepoliaBlockTxs64159.json} (100%) rename rpc/tests/blockWithReceipts/{mainnetReceipts588763.json => mainnetBlockReceipts588763.json} (100%) rename rpc/tests/blockWithReceipts/{sepoliaReceipts64159.json => sepoliaBlockReceipts64159.json} (100%) delete mode 100644 rpc/tests/receipt/0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json rename rpc/tests/receipt/{0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json => mainnetRc_0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json} (100%) create mode 100644 rpc/tests/receipt/sepoliaRec_0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json create mode 100644 rpc/tests/transactions/sepoliaTx_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json diff --git a/rpc/mock_test.go b/rpc/mock_test.go index ab642d8a..06a76d99 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -197,61 +197,22 @@ func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, method st return errWrongArgs } - var InvokeTxnV3Example = `{ - "type": "INVOKE", - "sender_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", - "calldata": [ - "0x1", - "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", - "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", - "0x13", - "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", - "0x54103", - "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", - "0x6600d829", - "0x103020400000000000000000000000000000000000000000000000000000000", - "0x4", - "0x5f5e100", - "0x5f60fc2", - "0x5f60fc2", - "0x5f6570d", - "0xa07695b6574c60c37", - "0x1", - "0x2", - "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", - "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", - "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", - "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", - "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", - "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" - ], - "version": "0x3", - "signature": [ - "0x665f0c67ed4d9565f63857b1a55974b98b2411f579c53c9f903fd21a3edb3d1", - "0x549c4480aba4753c58f757c92b5a1d3d67b2ced4bf06076825af3f52f738d6d" - ], - "nonce": "0x359d", - "resource_bounds": { - "l1_gas": { - "max_amount": "0x3bb2", - "max_price_per_unit": "0x2ba7def30000" - }, - "l2_gas": { - "max_amount": "0x0", - "max_price_per_unit": "0x0" - } - }, - "tip": "0x0", - "paymaster_data": [], - "account_deployment_data": [], - "nonce_data_availability_mode": "L1", - "fee_data_availability_mode": "L1" - }` + var InvokeTxnV3example InvokeTxnV3 + read, err := os.ReadFile("tests/transactions/sepoliaTx_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") + if err != nil { + return err + } + err = json.Unmarshal(read, &InvokeTxnV3example) + if err != nil { + return err + } - if err := json.Unmarshal([]byte(InvokeTxnV3Example), r); err != nil { + txBytes, err := json.Marshal(InvokeTxnV3example) + if err != nil { return err } - return nil + + return json.Unmarshal(txBytes, &r) } // mock_starknet_getBlockTransactionCount is a function that mocks the behavior of the @@ -353,7 +314,7 @@ func mock_starknet_getTransactionReceipt(result interface{}, method string, args if arg0Felt.Equal(testTxnHash) { var txnRec TransactionReceiptWithBlockInfo - read, err := os.ReadFile("tests/receipt/0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json") + read, err := os.ReadFile("tests/receipt/sepoliaRec_0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json") if err != nil { return err } @@ -371,7 +332,7 @@ func mock_starknet_getTransactionReceipt(result interface{}, method string, args return json.Unmarshal(txnReceipt, &r) } else if arg0Felt.Equal(l1BlockHash) { var txnRec TransactionReceiptWithBlockInfo - read, err := os.ReadFile("tests/receipt/0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json") + read, err := os.ReadFile("tests/receipt/mainnetRc_0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json") if err != nil { return err } @@ -1108,19 +1069,7 @@ func mock_starknet_getBlockWithReceipts(result interface{}, method string, args pBlock, err := json.Marshal( PendingBlockWithReceipts{ PendingBlockHeader{ - ParentHash: new(felt.Felt).SetUint64(1), - Timestamp: 123, - SequencerAddress: new(felt.Felt).SetUint64(1), - L1GasPrice: ResourcePrice{ - PriceInFRI: new(felt.Felt).SetUint64(1), - PriceInWei: new(felt.Felt).SetUint64(1), - }, - L1DataGasPrice: ResourcePrice{ - PriceInFRI: new(felt.Felt).SetUint64(1), - PriceInWei: new(felt.Felt).SetUint64(1), - }, - L1DAMode: L1DAModeBlob, - StarknetVersion: "0.13", + ParentHash: fakeFeltField, }, BlockBodyWithReceipts{ Transactions: []TransactionWithReceipt{ @@ -1131,29 +1080,14 @@ func mock_starknet_getBlockWithReceipts(result interface{}, method string, args InvokeTxnV1: InvokeTxnV1{ Type: "INVOKE", Version: TransactionV1, - Nonce: new(felt.Felt).SetUint64(1), - MaxFee: new(felt.Felt).SetUint64(1), SenderAddress: fakeFeltField, - Signature: []*felt.Felt{ - fakeFeltField, - }, - Calldata: []*felt.Felt{ - new(felt.Felt).SetUint64(1), - }, }, }, }, Receipt: TransactionReceipt{ - Type: "INVOKE", TransactionHash: fakeFeltField, - ActualFee: FeePayment{ - Amount: new(felt.Felt).SetUint64(1), - Unit: UnitWei, - }, ExecutionStatus: TxnExecutionStatusSUCCEEDED, FinalityStatus: TxnFinalityStatusAcceptedOnL1, - MessagesSent: []MsgToL1{}, - Events: []Event{}, }, }, }, @@ -1171,22 +1105,7 @@ func mock_starknet_getBlockWithReceipts(result interface{}, method string, args block, err := json.Marshal( BlockWithReceipts{ BlockHeader{ - BlockHash: fakeFeltField, - ParentHash: new(felt.Felt).SetUint64(1), - BlockNumber: 1, - NewRoot: new(felt.Felt).SetUint64(1), - Timestamp: 123, - SequencerAddress: new(felt.Felt).SetUint64(1), - L1GasPrice: ResourcePrice{ - PriceInFRI: new(felt.Felt).SetUint64(1), - PriceInWei: new(felt.Felt).SetUint64(1), - }, - L1DataGasPrice: ResourcePrice{ - PriceInFRI: new(felt.Felt).SetUint64(1), - PriceInWei: new(felt.Felt).SetUint64(1), - }, - L1DAMode: L1DAModeBlob, - StarknetVersion: "0.13", + BlockHash: fakeFeltField, }, "ACCEPTED_ON_L1", BlockBodyWithReceipts{ @@ -1198,29 +1117,14 @@ func mock_starknet_getBlockWithReceipts(result interface{}, method string, args InvokeTxnV1: InvokeTxnV1{ Type: "INVOKE", Version: TransactionV1, - Nonce: new(felt.Felt).SetUint64(1), - MaxFee: new(felt.Felt).SetUint64(1), SenderAddress: fakeFeltField, - Signature: []*felt.Felt{ - fakeFeltField, - }, - Calldata: []*felt.Felt{ - new(felt.Felt).SetUint64(1), - }, }, }, }, Receipt: TransactionReceipt{ - Type: "INVOKE", TransactionHash: fakeFeltField, - ActualFee: FeePayment{ - Amount: new(felt.Felt).SetUint64(1), - Unit: UnitWei, - }, ExecutionStatus: TxnExecutionStatusSUCCEEDED, FinalityStatus: TxnFinalityStatusAcceptedOnL1, - MessagesSent: []MsgToL1{}, - Events: []Event{}, }, }, }, diff --git a/rpc/tests/block/sepoliaTxs64159.json b/rpc/tests/block/sepoliaBlockTxs64159.json similarity index 100% rename from rpc/tests/block/sepoliaTxs64159.json rename to rpc/tests/block/sepoliaBlockTxs64159.json diff --git a/rpc/tests/blockWithReceipts/mainnetReceipts588763.json b/rpc/tests/blockWithReceipts/mainnetBlockReceipts588763.json similarity index 100% rename from rpc/tests/blockWithReceipts/mainnetReceipts588763.json rename to rpc/tests/blockWithReceipts/mainnetBlockReceipts588763.json diff --git a/rpc/tests/blockWithReceipts/sepoliaReceipts64159.json b/rpc/tests/blockWithReceipts/sepoliaBlockReceipts64159.json similarity index 100% rename from rpc/tests/blockWithReceipts/sepoliaReceipts64159.json rename to rpc/tests/blockWithReceipts/sepoliaBlockReceipts64159.json diff --git a/rpc/tests/receipt/0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json b/rpc/tests/receipt/0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json deleted file mode 100644 index 2807b737..00000000 --- a/rpc/tests/receipt/0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "actual_fee": { - "amount": "0x16409a78a10b00", - "unit": "FRI" - }, - "block_hash": "0x4ae5d52c75e4dea5694f456069f830cfbc7bec70427eee170c3385f751b8564", - "block_number": 52767, - "events": [ - { - "data": [ - "0x3028044a4c4df95c0b0a907307c6feffa76b9c38e83088ade29b186a250eb13", - "0x3", - "0x17a393a5e943cec833c8a8f4cbbf7c58361fb2fdd9caa0c36d901eedec4938e", - "0x776731d30bd922ac0390edfc664ed31b232aa7c7ce389c333e34c6b32957532", - "0x40851db0ebaebb9f8a18eda25005c050793f2a69e9e7d1f44bc133752898918" - ], - "from_address": "0x243d436e1f7cea085aaa42834975488029b1ebf67cea1d2e86f7de58e7d34a3", - "keys": [ - "0x15bd0500dc9d7e69ab9577f73a8d753e8761bed10f25ba0f124254dc4edb8b4" - ] - }, - { - "data": [ - "0x6016d919abf2ddefe03dacc2ff5c8f42eb80cf65add1e90dd73c5c5e06ef3e2", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x16409a78a10b00", - "0x0" - ], - "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ] - } - ], - "execution_resources": { - "ec_op_builtin_applications": 3, - "pedersen_builtin_applications": 24, - "range_check_builtin_applications": 152, - "steps": 5774 - }, - "execution_status": "SUCCEEDED", - "finality_status": "ACCEPTED_ON_L1", - "messages_sent": [], - "transaction_hash": "0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b", - "type": "INVOKE" -} \ No newline at end of file diff --git a/rpc/tests/receipt/0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json b/rpc/tests/receipt/mainnetRc_0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json similarity index 100% rename from rpc/tests/receipt/0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json rename to rpc/tests/receipt/mainnetRc_0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json diff --git a/rpc/tests/receipt/sepoliaRec_0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json b/rpc/tests/receipt/sepoliaRec_0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json new file mode 100644 index 00000000..36a63408 --- /dev/null +++ b/rpc/tests/receipt/sepoliaRec_0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json @@ -0,0 +1,50 @@ +{ + "type": "INVOKE", + "transaction_hash": "0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b", + "actual_fee": { + "amount": "0x16409a78a10b00", + "unit": "FRI" + }, + "execution_status": "SUCCEEDED", + "finality_status": "ACCEPTED_ON_L1", + "block_hash": "0x4ae5d52c75e4dea5694f456069f830cfbc7bec70427eee170c3385f751b8564", + "block_number": 52767, + "messages_sent": [], + "events": [ + { + "from_address": "0x243d436e1f7cea085aaa42834975488029b1ebf67cea1d2e86f7de58e7d34a3", + "keys": [ + "0x15bd0500dc9d7e69ab9577f73a8d753e8761bed10f25ba0f124254dc4edb8b4" + ], + "data": [ + "0x3028044a4c4df95c0b0a907307c6feffa76b9c38e83088ade29b186a250eb13", + "0x3", + "0x17a393a5e943cec833c8a8f4cbbf7c58361fb2fdd9caa0c36d901eedec4938e", + "0x776731d30bd922ac0390edfc664ed31b232aa7c7ce389c333e34c6b32957532", + "0x40851db0ebaebb9f8a18eda25005c050793f2a69e9e7d1f44bc133752898918" + ] + }, + { + "from_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x6016d919abf2ddefe03dacc2ff5c8f42eb80cf65add1e90dd73c5c5e06ef3e2", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x16409a78a10b00", + "0x0" + ] + } + ], + "execution_resources": { + "steps": 5774, + "pedersen_builtin_applications": 24, + "range_check_builtin_applications": 152, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 0, + "l1_data_gas": 128 + } + } +} \ No newline at end of file diff --git a/rpc/tests/transactions/sepoliaTx_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json b/rpc/tests/transactions/sepoliaTx_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json new file mode 100644 index 00000000..bb8e927f --- /dev/null +++ b/rpc/tests/transactions/sepoliaTx_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json @@ -0,0 +1,51 @@ +{ + "transaction_hash": "0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x359d", + "sender_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "signature": [ + "0x665f0c67ed4d9565f63857b1a55974b98b2411f579c53c9f903fd21a3edb3d1", + "0x549c4480aba4753c58f757c92b5a1d3d67b2ced4bf06076825af3f52f738d6d" + ], + "calldata": [ + "0x1", + "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x2", + "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", + "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", + "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x3bb2", + "max_price_per_unit": "0x2ba7def30000" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" +} \ No newline at end of file diff --git a/rpc/transaction_test.go b/rpc/transaction_test.go index 467df5e6..0e8a9e73 100644 --- a/rpc/transaction_test.go +++ b/rpc/transaction_test.go @@ -2,6 +2,8 @@ package rpc import ( "context" + "encoding/json" + "os" "testing" "github.com/NethermindEth/juno/core/felt" @@ -95,56 +97,11 @@ func TestTransactionByBlockIdAndIndex(t *testing.T) { ExpectedTxn Transaction } - var InvokeTxnV3example = InvokeTxnV3{ - Type: TransactionType_Invoke, - Version: TransactionV3, - Nonce: utils.TestHexToFelt(t, "0x359d"), - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x665f0c67ed4d9565f63857b1a55974b98b2411f579c53c9f903fd21a3edb3d1"), - utils.TestHexToFelt(t, "0x549c4480aba4753c58f757c92b5a1d3d67b2ced4bf06076825af3f52f738d6d"), - }, - SenderAddress: utils.TestHexToFelt(t, "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6"), - NonceDataMode: DAModeL1, - FeeMode: DAModeL1, - PayMasterData: []*felt.Felt{}, - AccountDeploymentData: []*felt.Felt{}, - ResourceBounds: ResourceBoundsMapping{ - L1Gas: ResourceBounds{ - MaxAmount: "0x3bb2", - MaxPricePerUnit: "0x2ba7def30000", - }, - L2Gas: ResourceBounds{ - MaxAmount: "0x0", - MaxPricePerUnit: "0x0", - }, - }, - Calldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed"), - utils.TestHexToFelt(t, "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8"), - utils.TestHexToFelt(t, "0x13"), - utils.TestHexToFelt(t, "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4"), - utils.TestHexToFelt(t, "0x54103"), - utils.TestHexToFelt(t, "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9"), - utils.TestHexToFelt(t, "0x6600d829"), - utils.TestHexToFelt(t, "0x103020400000000000000000000000000000000000000000000000000000000"), - utils.TestHexToFelt(t, "0x4"), - utils.TestHexToFelt(t, "0x5f5e100"), - utils.TestHexToFelt(t, "0x5f60fc2"), - utils.TestHexToFelt(t, "0x5f60fc2"), - utils.TestHexToFelt(t, "0x5f6570d"), - utils.TestHexToFelt(t, "0xa07695b6574c60c37"), - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x2"), - utils.TestHexToFelt(t, "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7"), - utils.TestHexToFelt(t, "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c"), - utils.TestHexToFelt(t, "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5"), - utils.TestHexToFelt(t, "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9"), - utils.TestHexToFelt(t, "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba"), - utils.TestHexToFelt(t, "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962"), - }, - Tip: "0x0", - } + var InvokeTxnV3example InvokeTxnV3 + read, err := os.ReadFile("tests/transactions/sepoliaTx_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") + require.NoError(t, err) + err = json.Unmarshal(read, &InvokeTxnV3example) + require.NoError(t, err) testSet := map[string][]testSetType{ "mock": { @@ -190,136 +147,34 @@ func TestTransactionReceipt(t *testing.T) { TxnHash *felt.Felt ExpectedResp TransactionReceiptWithBlockInfo } - var receiptTxn52767_16 = TransactionReceipt{ - TransactionHash: utils.TestHexToFelt(t, "0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b"), - ActualFee: FeePayment{ - Amount: utils.TestHexToFelt(t, "0x16409a78a10b00"), - Unit: UnitStrk, - }, - Type: "INVOKE", - ExecutionStatus: TxnExecutionStatusSUCCEEDED, - FinalityStatus: TxnFinalityStatusAcceptedOnL1, - MessagesSent: []MsgToL1{}, - Events: []Event{ - { - Data: []*felt.Felt{ - utils.TestHexToFelt(t, "0x3028044a4c4df95c0b0a907307c6feffa76b9c38e83088ade29b186a250eb13"), - utils.TestHexToFelt(t, "0x3"), - utils.TestHexToFelt(t, "0x17a393a5e943cec833c8a8f4cbbf7c58361fb2fdd9caa0c36d901eedec4938e"), - utils.TestHexToFelt(t, "0x776731d30bd922ac0390edfc664ed31b232aa7c7ce389c333e34c6b32957532"), - utils.TestHexToFelt(t, "0x40851db0ebaebb9f8a18eda25005c050793f2a69e9e7d1f44bc133752898918"), - }, - FromAddress: utils.TestHexToFelt(t, "0x243d436e1f7cea085aaa42834975488029b1ebf67cea1d2e86f7de58e7d34a3"), - Keys: []*felt.Felt{ - utils.TestHexToFelt(t, "0x15bd0500dc9d7e69ab9577f73a8d753e8761bed10f25ba0f124254dc4edb8b4"), - }, - }, - { - Data: []*felt.Felt{ - utils.TestHexToFelt(t, "0x6016d919abf2ddefe03dacc2ff5c8f42eb80cf65add1e90dd73c5c5e06ef3e2"), - utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - utils.TestHexToFelt(t, "0x16409a78a10b00"), - utils.TestHexToFelt(t, "0x0"), - }, - FromAddress: utils.TestHexToFelt(t, "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d"), - Keys: []*felt.Felt{ - utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), - }, - }, - }, - ExecutionResources: ExecutionResources{ - ComputationResources: ComputationResources{ - Steps: 5774, - PedersenApps: 24, - ECOPApps: 3, - RangeCheckApps: 152, - }, - DataAvailability: DataAvailability{ - L1Gas: 0, - L1DataGas: 128, - }, - }, - } - - // https://voyager.online/tx/0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519 - var receiptL1Handler = TransactionReceipt{ - MessageHash: NumAsHex("0xf93cd5994e1da0cea88f2310735746d049be9fa55f4a38d5545bc325bcaa49af"), - - TransactionHash: utils.TestHexToFelt(t, "0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519"), - ActualFee: FeePayment{ - Amount: utils.TestHexToFelt(t, "0x0"), - Unit: UnitWei, - }, - Type: "L1_HANDLER", - ExecutionStatus: TxnExecutionStatusSUCCEEDED, - FinalityStatus: TxnFinalityStatusAcceptedOnL2, - MessagesSent: []MsgToL1{}, - Events: []Event{ - { - Data: utils.TestHexArrToFelt(t, []string{ - "0x0", - "0x3580a65260563b5511ddf2eafb83d6b309dce7fc25271df8c040a437f09a399", - "0xdfd54233d96e4b", - "0x0", - }), - FromAddress: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), - Keys: []*felt.Felt{ - utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), - }, - }, - { - Data: utils.TestHexArrToFelt(t, []string{ - "0xdfd54233d96e4b", - "0x0", - }), - FromAddress: utils.TestHexToFelt(t, "0x73314940630fd6dcda0d772d4c972c4e0a9946bef9dabf4ef84eda8ef542b82"), - Keys: utils.TestHexArrToFelt(t, []string{ - "0x374396cb322ab5ffd35ddb8627514609289d22c07d039ead5327782f61bb833", - "0x455448", - "0x3580a65260563b5511ddf2eafb83d6b309dce7fc25271df8c040a437f09a399", - }), - }, - }, - ExecutionResources: ExecutionResources{ - ComputationResources: ComputationResources{ - Steps: 4230, - PedersenApps: 19, - RangeCheckApps: 94, - }, - DataAvailability: DataAvailability{ - L1Gas: 0, - L1DataGas: 128, - }, - }, - } + var receiptTxn52767_16 TransactionReceiptWithBlockInfo + read, err := os.ReadFile("tests/receipt/sepoliaRec_0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b.json") + require.NoError(t, err) + err = json.Unmarshal(read, &receiptTxn52767_16) + require.NoError(t, err) + + // // https://voyager.online/tx/0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519 + var receiptL1Handler TransactionReceiptWithBlockInfo + read, err = os.ReadFile("tests/receipt/mainnetRc_0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519.json") + require.NoError(t, err) + err = json.Unmarshal(read, &receiptL1Handler) + require.NoError(t, err) testSet := map[string][]testSetType{ "mock": { { - TxnHash: utils.TestHexToFelt(t, "0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b"), - ExpectedResp: TransactionReceiptWithBlockInfo{ - TransactionReceipt: receiptTxn52767_16, - BlockNumber: 52767, - BlockHash: utils.TestHexToFelt(t, "0x4ae5d52c75e4dea5694f456069f830cfbc7bec70427eee170c3385f751b8564"), - }, + TxnHash: utils.TestHexToFelt(t, "0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b"), + ExpectedResp: receiptTxn52767_16, }, { - TxnHash: utils.TestHexToFelt(t, "0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519"), - ExpectedResp: TransactionReceiptWithBlockInfo{ - TransactionReceipt: receiptL1Handler, - BlockNumber: 648615, - BlockHash: utils.TestHexToFelt(t, "0x3c9cd4649a5dfed63db676f6f7fd181975f8e85f10197a6665fd393d1c9c1a0"), - }, + TxnHash: utils.TestHexToFelt(t, "0x74011377f326265f5a54e27a27968355e7033ad1de11b77b225374875aff519"), + ExpectedResp: receiptL1Handler, }, }, "testnet": { { - TxnHash: utils.TestHexToFelt(t, "0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b"), - ExpectedResp: TransactionReceiptWithBlockInfo{ - TransactionReceipt: receiptTxn52767_16, - BlockNumber: 52767, - BlockHash: utils.TestHexToFelt(t, "0x4ae5d52c75e4dea5694f456069f830cfbc7bec70427eee170c3385f751b8564"), - }, + TxnHash: utils.TestHexToFelt(t, "0xf2f3d50192637e8d5e817363460c39d3a668fe12f117ecedb9749466d8352b"), + ExpectedResp: receiptTxn52767_16, }, }, "mainnet": {}, diff --git a/rpc/types_block_test.go b/rpc/types_block_test.go index 4cc1e65c..8a2fe48c 100644 --- a/rpc/types_block_test.go +++ b/rpc/types_block_test.go @@ -111,7 +111,7 @@ func TestBlockStatus(t *testing.T) { } } -//go:embed tests/block/sepoliaTxs64159.json +//go:embed tests/block/sepoliaBlockTxs64159.json var rawBlock []byte // TestBlock_Unmarshal tests the Unmarshal function of the Block type. @@ -147,33 +147,19 @@ func TestBlockWithReceipts(t *testing.T) { } if testEnv == "testnet" { - block, err := os.ReadFile("tests/blockWithReceipts/sepoliaReceipts64159.json") + block, err := os.ReadFile("tests/blockWithReceipts/sepoliaBlockReceipts64159.json") require.NoError(err) require.NoError(json.Unmarshal(block, &blockWithReceipt)) } else if testEnv == "mainnet" { - block, err := os.ReadFile("tests/blockWithReceipts/mainnetReceipts588763.json") + block, err := os.ReadFile("tests/blockWithReceipts/mainnetBlockReceipts588763.json") require.NoError(err) require.NoError(json.Unmarshal(block, &blockWithReceipt)) } + deadBeef := utils.TestHexToFelt(t, "0xdeadbeef") var blockMock123 = BlockWithReceipts{ BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "deadbeef"), - ParentHash: new(felt.Felt).SetUint64(1), - BlockNumber: 1, - NewRoot: new(felt.Felt).SetUint64(1), - Timestamp: 123, - SequencerAddress: new(felt.Felt).SetUint64(1), - L1GasPrice: ResourcePrice{ - PriceInFRI: new(felt.Felt).SetUint64(1), - PriceInWei: new(felt.Felt).SetUint64(1), - }, - L1DataGasPrice: ResourcePrice{ - PriceInFRI: new(felt.Felt).SetUint64(1), - PriceInWei: new(felt.Felt).SetUint64(1), - }, - L1DAMode: L1DAModeBlob, - StarknetVersion: "0.13", + BlockHash: deadBeef, }, "ACCEPTED_ON_L1", BlockBodyWithReceipts{ @@ -181,33 +167,18 @@ func TestBlockWithReceipts(t *testing.T) { { Transaction: BlockTransaction{ BlockInvokeTxnV1{ - TransactionHash: utils.TestHexToFelt(t, "deadbeef"), + TransactionHash: deadBeef, InvokeTxnV1: InvokeTxnV1{ Type: "INVOKE", Version: TransactionV1, - Nonce: new(felt.Felt).SetUint64(1), - MaxFee: new(felt.Felt).SetUint64(1), - SenderAddress: utils.TestHexToFelt(t, "deadbeef"), - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "deadbeef"), - }, - Calldata: []*felt.Felt{ - new(felt.Felt).SetUint64(1), - }, + SenderAddress: deadBeef, }, }, }, Receipt: TransactionReceipt{ - Type: "INVOKE", - TransactionHash: utils.TestHexToFelt(t, "deadbeef"), - ActualFee: FeePayment{ - Amount: new(felt.Felt).SetUint64(1), - Unit: UnitWei, - }, + TransactionHash: deadBeef, ExecutionStatus: TxnExecutionStatusSUCCEEDED, FinalityStatus: TxnFinalityStatusAcceptedOnL1, - MessagesSent: []MsgToL1{}, - Events: []Event{}, }, }, }, @@ -216,52 +187,25 @@ func TestBlockWithReceipts(t *testing.T) { var pendingBlockMock123 = PendingBlockWithReceipts{ PendingBlockHeader{ - ParentHash: new(felt.Felt).SetUint64(1), - Timestamp: 123, - SequencerAddress: new(felt.Felt).SetUint64(1), - L1GasPrice: ResourcePrice{ - PriceInFRI: new(felt.Felt).SetUint64(1), - PriceInWei: new(felt.Felt).SetUint64(1), - }, - L1DataGasPrice: ResourcePrice{ - PriceInFRI: new(felt.Felt).SetUint64(1), - PriceInWei: new(felt.Felt).SetUint64(1), - }, - L1DAMode: L1DAModeBlob, - StarknetVersion: "0.13", + ParentHash: deadBeef, }, BlockBodyWithReceipts{ Transactions: []TransactionWithReceipt{ { Transaction: BlockTransaction{ BlockInvokeTxnV1{ - TransactionHash: utils.TestHexToFelt(t, "deadbeef"), + TransactionHash: deadBeef, InvokeTxnV1: InvokeTxnV1{ Type: "INVOKE", Version: TransactionV1, - Nonce: new(felt.Felt).SetUint64(1), - MaxFee: new(felt.Felt).SetUint64(1), - SenderAddress: utils.TestHexToFelt(t, "deadbeef"), - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "deadbeef"), - }, - Calldata: []*felt.Felt{ - new(felt.Felt).SetUint64(1), - }, + SenderAddress: deadBeef, }, }, }, Receipt: TransactionReceipt{ - Type: "INVOKE", - TransactionHash: utils.TestHexToFelt(t, "deadbeef"), - ActualFee: FeePayment{ - Amount: new(felt.Felt).SetUint64(1), - Unit: UnitWei, - }, + TransactionHash: deadBeef, ExecutionStatus: TxnExecutionStatusSUCCEEDED, FinalityStatus: TxnFinalityStatusAcceptedOnL1, - MessagesSent: []MsgToL1{}, - Events: []Event{}, }, }, }, From 895f7c2ba8146b0f028ceabc38c6f283416dcd74 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Tue, 13 Aug 2024 00:43:35 -0300 Subject: [PATCH 09/28] Fix TestDeclareTransaction --- rpc/errors.go | 3 +-- rpc/tests/write/declareTx.json | 20 ------------------ rpc/write_test.go | 38 ++-------------------------------- 3 files changed, 3 insertions(+), 58 deletions(-) delete mode 100644 rpc/tests/write/declareTx.json diff --git a/rpc/errors.go b/rpc/errors.go index fcd9e578..2ff0c0a3 100644 --- a/rpc/errors.go +++ b/rpc/errors.go @@ -2,7 +2,6 @@ package rpc import ( "encoding/json" - "fmt" ) const ( @@ -61,7 +60,7 @@ func tryUnwrapToRPCErr(err error, rpcErrors ...*RPCError) *RPCError { return &nodeErr } } - return Err(InternalError, fmt.Sprintln(nodeErr.Code, nodeErr.Message, nodeErr.Data)) + return Err(nodeErr.Code, nodeErr.Data) } type RPCError struct { diff --git a/rpc/tests/write/declareTx.json b/rpc/tests/write/declareTx.json deleted file mode 100644 index 95630f1b..00000000 --- a/rpc/tests/write/declareTx.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "DECLARE", - "version": "0x2", - "max_fee": "0xffff", - "signature": [ - "0x0", - "0x0" - ], - "contract_class": { - "program": "H4sIAAAAAAAA/8x9SZbrOo/mXv5xDdg3a6kRxWYNtfw6BECAlOS4jsg8efIN7nPIskiRIPCh/7//Uf9P/+f/8L9q+7xfMbXgNRvg/w6/9Cbo0EMM3tmQgg82XNuvXAw6WmeiDznU6EIOHb4IIfh5wRrrraEnRhNN0DFvg+NX3oYedFRxjjGig4uWvoouzudbuqyv0q8STY+553YZn2Idzo3eLjNsVOoyKvrie+o2Fx+MTy4FU90V9Qg0FRy7d93Npa+UR6ou+2GU6i77YGIqrrlosx/dBDNMvLzpPgVfszeuqlRxes6HHn1oODVdQ0sqxa5UcMalPLJpJhldWuhXC96a0nSxV2jaJGtbCS0krWzWXuOC4OpHby0tmzUpNZ/dlYvzTfvrMqNeMSs7VKjtUuEycairpKRT6NXVUUpOVsV65Ujve2yQs2HEuay8wnn+GdZrzHmN7Kwx9urN+JCNj9mka8R4xZJCNEFd+rquXnpIpZqQkqnNlty08fCMio/GZcmXvVz2/mp1FBvzNaovLrusta6uj9Zi1iaNFGIYrqmUvdP5Mqab0iI8A6nKDG9StzVk3XX2o5YQXU7mCrmqVp1JbhgVqu3FtZCUMarnfPlstS8Z10Ij5TZbTCgxalOs9S4WV6Lr0WdXnAu1OKXqZUNR1VSr4pVNHyPXnswYCR9EtOtDn6saMqyuDjXkWIIPRK7xCr1Wq7MLyfpLtdyyqaa1WHLVbphchrJR+6hLj67oy5iUTLqMcTRjXEYTzJWcv67ehtPJqKuay7pWzShjEsBlx6Taloq+LpNM67X4nJorNhhcRk2H24YR+jxYQc+D5XRwYf7loyWq0HhKbbNxEm8ZlzVem2Zay76YrOMI19Au+dS6MdXEorV2Nhtn8jDdV+1p75wNdbKJaF2a/w+0fpUOTYx6mGZ7bNX25svosZfulG+jaRODzi6r1quPtZeijC41zXfPl6Wl8Tb4EEML8zS6yWjmp0AspsUrX8X7HMeoOqnhr6spq1qJ4Uqu16G7G9pqrZwtqmhvJi/ItVZ9IbVkOkZhRJy8yS02H6tyJSWVY+rxsiHlEYxO3as47NV19ClF5y6fWtUxBuNcLE11XBejmcOFAVsx2ayBJfIvWxK9TW+/eN6ZVVNG2eom43GhKeOS88bHEnrtlxnp8vkyufbojGrN66S8baa33htti9KtKptztq5WlUZRLYwwTCu9NNddsamWq/eiJ5vvelSTmmmh+9RzXhMOlph5UqlGpYtv2natVLm0vkJVZmQ9oje9lh77nI3Rlw81q15VcdHXGjsdgLX06+HaGloR+qYH70v02uq58LYW030PPpc896IZe42Qi7HG19aUzbEWe6WWgrtyoE25SBzSKbAhOquv1tvoKveSc+8tl9Zt60oNnX1rOU6e37yeosSZfl3Ot6t6lKiG/tdojsTJ6EzXHINW11WsnjTUY2+TkSTtywACTLmHYnV04+rVN++tMynpEEvFGVsSxX2eaV+CjyYM2sNYqr66z74m07OJ7Ro5uNEv033WIVntihvamW5TvK7sdLku30POw3cSBsQ4dO9qMjrTfXDeXr6F1FVuelKBD9Ymn6q+ii2xRzt6n/udQuy1N5rhgQnc5JaT93jkRAQLFvx4vXdRv44eGclksz/capwpV8rm0iHNe7Vt4RoudWN7GOYa4WpOe3/50i6fvI7F1977CLlfSAi2kBTOwQTrrlxzy67bqPqlavLZFHUpXVpN3Y+W3Ii66ZGuVI2t4zK5F9oOW4m04lXa8LWpqHrK3uo+YtLWqpK9d5dytbtejLbKXSEWq0q1zdk2kiskElqbSGOUcnWnrhRVN1ep+SrdKG3tSEV7VXOM83WVSn6CoVJcVzYQQdpFJEiYwEBCGOEK3o+JxvxYEiJcIOGQ3pC1BhPqP26MEWRiAuakY/QjAFzEpwAWDD3YkOZTptgMkdBjXAzOz0dPYBIVwco4R7cgaie5j2Dht5WnNtGYH6EFHV1YsibyYxeW9CM4gLNTEN4xZmCo6sd8zTUtQGUwJv3qvOyjfhvnwxgyV0IPeLnE7XXNZLmh+hH6xMVwb4tqve5c2LHujcHDHQfWw+E3tFd+3BraifX4kKP9aqvxrCBBtecS9uBjXFP2NOF4A/2w1XqS34sG8Vh0N6KfwiuMEIzaCWsfeD5eAcESGsMNcjn0qPABk9ICoMb5/BCNCmHSnlHzSSHO7UBcQQO8/ZjewcCMfv65pv8tSpvLHUawQGlEzmsBMpw0ApT7DetZ8XFcbg/RhLVwgzTpeJ2YCP6PRBHpgeaxii8bpSbZ+RGmKgBIkg5C6EEw0kJhcwHw2fZ9ZwHAEMNGIm0mm3a5MZQvOdtqdXJ2ipdQU0lWWRNCmVhEe12KSbX22mEyemgGSw+iMSHmqRd4U2tTtngbva8l68l7Yg5+XC3b7lJuI5jhh1PNDWWrcSMWeoY/1xwwmIfVny8yl2vqUwdfMuH9NzEaOIf+/Vck3/UGpuCQjLnyD/36vqzRRh/ev5rn2o+4Y4X1kJtmsHZnwcsfxl+A7IdbCAx677rzPnnlvLPeOe+cUc57440b3iz+2ObiAF8NeIRel2mi5XnAgenDJHl9cR7V6vf11VPqx5S6NTW5CQ11CrYl30e22V3xGjHoomrXOquRTMjJTXDvqyVWvx7IpLat3MuQ1q9fkUbkRyCdCDkrcC08Ve19l6ecxKOJN/MEXpdmCpxgdyUiGWW0bUYR4HrQBgGog20TzP7hXkZxIEr8kmbuN7+7MTz4acWRbV4iyUdg1ciYngtMqG3DNPP2Ka88LBav+9tyqXliYIXnxlzB0xrdD24gJe15Om4MR5upjagxtYRiw1WvK/TcTIo5VN1i12peGM33ppLtqrfuLm1G0NaTvvMY/D6kkAtN68QDPoLdbgosBk1zncM8HG9L2J9yVHZ0Sj/YhTRl7yGDJ+eHk7ikk7+a8kq1mlvsIZcr+xhHtCW16G1PMeirN62G8VdRQxtnvGvV9Xali4ZT/yCguGkDRAEmKZ1rHe1qVo1Rg89et+yuK/mau7mSs05rXZRSly+jeWtrD374xeMXovvIyMbw9P/zP5ReZDPAWxOdO5J9+J0nHEJInOwkZKwjmEEL4Ekfwv/RnYn2Av+HNO9w+xySvusEk3A8GnaZW/F/ixvj/8i2gAN5HMjjCKTJehzIk3EPByI90Q+iGgKuxOeIldMmEmHi/4il0MHGEci4vBAQQUkiyEGHFP9HUpFkz9o3/B+JW0JHdIzoKBMAxoEiHXxiFwTzcaBEpvIFmhTeW/FyxREHPqfjL8mwo4mMdMaJ6ETX6WjpZdij+eqwrHOKZLEmyY/rZxVBj7EM13jdNLJwXWRUKGRqyIS34rIykH2EyEB3AoeDMB+JJUPA0BCuTPj4RISMgye8N+Gr0ZslMsPgGiecRsK1SThYwjVOOETCmWU6KjhQJusVDkQvQWuYcaCMA5GBKeNAGQfKOFDGgTIOlOlM4gikPhfShQht4kAFByo4UMGBCg5EC1twoIIDFRyo4EAFByKD4YXjXTjeheMRT7twvAvHu0iDwvEuHO/C8cgGceF4F45Hm33heBUHqjgQeSUqyU4cgexEFR9Nfp6Kj65E1Pjoio+upMiRpRxHaDhCwxEavkrDgRoORPbehq/ScLyG4zUcj6yLDcdrOF7D8TqO13G8juMRqXcyI9J8Lb2opSW1tDM2L5xF3/uFXxanpe/jYqt43RFrc8QhHTFhO5athNgpgXFHqowjI7YnJcqTd8ErYtTkK3B9cWxi0iQjHC2go61ytKueFs/TpvlrMWL6nsjaL1a++DUdNk8czRMrDHSmAh3isPDZ4rvE4YNawp8YOAmcsADgUkZIUYvkUIj0vuFafHzxbGL9xBkD7XEk1hJJvkeSdnFx97CYDb5fov1IZI5MZARO5KZIipg8rVOksxKJY0ain0iEl2hdE52wRPSQ4uJgxMKImaTFhUgnS2SSTp0YEXHMTEIiK2JehEczvWcmWb2sPZkkXV6sb/E3Yk35WhyO+OU6ryQhcl9cjg4+jVsU8TtFTKYT5yKzQ6F1u+g4F7JHF9LQLuJKhSRVITq4aD0KgYZCdHOlxUOJUZLMvkiEX3S+SlrclVgawZtCDL0Q176IzsriuMxWaZ5EX4X4wKXoOjGrQhzpWutAbKTQOSxEl7SNHe+mL2lPO74KrRyJzI7v03E4kp9kchiEDXEoorwFFHGEga9PXGHgQMRjBo4wcARiOGMZaUly0/totZyZBLUJIWjaf037rulcajofWpHzXS1QQ4YhOvea1lHrBX5oPOIHelmv9LKn0XjEBzSdA73sTkRnehmg2Om3POY0Lu2rJiuUJvrWZI7SxG+1WXoVjUuWFb38m2b5ZmlcsnVrcuvo5dchb4wmd4wm+tfkTNFEf5rwvl5uEDofmhDTipbQBOErnfdK570SSK7En2tc/6dzTMCpEpKpxNdrWeIZx6vEtyrRde1LUtO5JzpptP5teblpPRq9byM9utF5bqQ0NIL9jeRTI7zUiD+2a/1N9xFSaAsOkAhvdD4anYVGZNyJTjrtU6d96LRunTShTvpKJ77SSWfoJBc64fZO4LwTxuzEN3tbh5bQA2GYTqhnEB0MoutBdDuIvga5ewbx6UG6ziC9ZhC/HjSPQfs2iHWMa/2fTjHNZxBeGgRuNK2nJfqzdJ8jZcWbpVyR3C1LiyS5Sfg5kaKViC6yXdgZr2eaZyZ5m4lPZ6KvTPtXib4raSKVYHqledYFF4mPNuIzTS+6ov0nNbAReG+ES9titMSnOvGDToaaTppPJ/mxLMqdNINO9NgJRwx6z0Ea1SA5Moh+BumFg+T6IE1oEO4aBOGToYVpSiUVlEmqKp3UNf+M8888/wzKKBXxk3bKKK3mlTr/ccSajTJOFaWSdvMfO78I9E9S8G2fX2i8pqsKylb6AolijqXTHDormzQM2I6Z6DD/8esWnBPeJ5PoOIKFiVZV5rWgwhww8Exw/OMWesIcQYbOyiQ9r+H4g4emhYn0RZv/kNqu8hw/uzUW/KmTnu9vLA4Nf8LE0nxMcsdKzAHNNf8pPKBRxeEXc3aG18lEnolRORHnoxWu29JbPf9RcxIDl+iav7vcsSY6maUj4HOv+aVONvA/sP517omZiwTvPydmrawOPKKooeiR9HD+x89/+vwnMzn0+cCOVESAez7M6YMQnFrzgp2HyeEMx/ynz3/mzbQQuMp6/kRrflV4c9l+enPn8GZV5z+JQMYkAaJ+bSp/Sk5IYF2jxZh/ugiLgZuh7doHbd2D8OCatmpNzvOyzPuIISqdvOazwRQpVAp/wlp5dVCpW6YpoH6YaFA649DB6biuKaN9nf+k+Y+b/yhv5WyEdXZTmCP4MTdr/ukTbo5OnqnIN3wPnXzV8/DRI7ICwlY4HZ2QIvBa1PMc6JT4FgXrRN/iSmQeIenC4yNvwpkE+CfqvF/zMPe1Eoud6cyfLsefFPAZFXRUgScbNi4xpxy0Cm6tBr3qnC9dc/ypT94zN8JneUI0a/3XqHVSzHw1feGahLLWBD/xcpCQ8BmZGqxwpXctKjoaTDd8tzB4ek7XStcWt1uzMJM9IUXrVmNg8mhroaJfSxH99iJRt7ReOaX9RZVOsaik1sxSWrNddFPWfjg4wTj0tYaOFw+d76vV16Fb+zGHJ0YbnB5rEdY1n9anWPTgKWVFR9TENYLh82B4rNj51ev9vlaXsaEYpdbaj7US8xpR66j87doPldcnXMx5APC5RtXENGI6f+I1SXpdS/pcieSMYnKYJER/1smh+ExYtZ9d+IIwFa/1/I3nk+nPQylfrBlrt8wgWpe6P53+nGfGE7EoY9ZiKZUSS/Jl5gZWYKxLVUY1piLfDGYKH2NQIOK38PyNUdAodo1iLI6cPK6J5TWx6VgJmxgL6JqVMCZj8S2iWdeiOZZEviB8R+8cF58wlsmCOOmaDYGioNcX5I9wdnGirBcNZnXsEJ5LmI4/p7M8G0qlPGVzNqotjrE+JafGen+9aLWuT4nDNCZYo5nQJzNRoPEpe2alxnhlw5oECORFl0MvFl1N4PPXmGFoFiCLWU3JliOABCYJQwuelOUDuwbMa8D5iY9JRnmxOKZKeYLbjAeDmNPcI1hC5Es1aH1KNvhzp8tIS1956eu59HUjm6hsP2THfPO+mIGJJ11Gpst40mVkujQ0bWRLMHw/h+/78FXntRrLPuVNVjfRHcYSrMXqxb6jSetbQwc9DJbklpkhYSHdU0ksxIgt5FrC7driEtYJnCiLVznmVe7kUPxFEUQSJuyjSZSL+dC8sTCDKifnKhuXuCakg1mVMeENMWhm5Obi1VGpNG0XvzbXghOXPZ6Of9La15QXh0qJhciSqVEteEev6Jj+1AIU8xNNpdaDUOriqQJqgGOlNb4L67CsrWhIN1mvW/ImOmiUtr3w44SYwHyqLXKAa0hWDJZK5jWhobvK/P7erPe/IjM1vYRod7QfOOLFI16nxOIveFMUw4nsmTvkRRSWT8H6dDlV1yfaRdzRySIuosdW+Y0PmSZfaLdk2uRxmVW4egEGnrrPRQoQnjVQnNMFYxv8R/5kvcOoUudM4ccpBNQsFH7Cu+E9KvzEAKgB3K8SmZv3x5qpckzha0YKmZ6AyNpfqNCtp1ZQ6HAlBmDM+fAIcHdCeaOCm5KWJlZ4YmU9AheYnMt+yr8I80OoCEpGS/jYgNgAtJ9ztoBp8RFrvnhybH6+MQgGWAmarW5rtrgf804AlPAc+BTgh47f20yNwehe18xACJT1iAg6/vwNfFq/KfUx83lLpWvVuPnE+L4hExPjn7CumYfGlZnPH/RGS3pEd96Y+EZe0Qkv5+oZ+LTWKSyimMqvVQgbYYowh+jXbGCG8CmU4xpZL/H7ueAG3sDIasz155eEAWK4bRau5fXcwtQnWItWpZQMHL25j0ZN4poobm6HEZwaQPuby2MUbxnKmTGXiJdjThL06W310cJRVa92Ag4zydfJe8J6zB0ERIGUd/E1PClkOJxCg85Hq7j2xmgeG0CPm2O3asMEdxn3SCmyGRrNd+Niq5T9lAR0ZJTDXX4cD7VgzZxvKkzHwGfjxhWQaV/zz5imeMCDC7x/xThoud1qOqlmvhwzoJInZojzjQxIYJyeiHMDT6hrK0ypa3to4m4eG9PnZK8p+vEFjWdpPneK7y51UU+pk8PTcrg0OXWdmAHlCD6anPtTNOa5hPAJl2tuZurbcsx9MshwQADh+y0zCQLwSS7WqMc2Wr3ez8I1XKa0H9F6WZNqtmAh1aky06lTrNlJalU4JcCsCXVrFrKi8VV9jm/XnBAivBAGTqLNX8OoTMK18vj9ZXxmahSVAhRvtoVDLHAdI07edp+AtZX8I8Y6J7Rt56FvSrjF3AD+MQilfTh6glqLa0HMzheGT3TNzQdWO8m9LYaGnzjWYX4l5BDXCzc+MYDM5r6nZvnaJgX/9b4+NW+9ahaUaut5djdmdazdF8tr4CQHYbotrzPRsp3YCocBjWkyHvh0Z4RqURUuEpNjY44m1yZbmVQW7ixpYRJYpH6DCvMaU0+raIZV+ImGmk8kn1vHVVp8M1hQploF7XhdC4qmbyO/kq+7IVJWyTzFzJt8qdomtWJt9LdUiDa2Y+PI12ATs4KU5gORCjszJfgUz2vItxlQqNSZMnVcVNjdc4ELo75uYYGFKhYZ5tqDza47XGDGCAYMobDAOe30gYt5f2MAZMcKx88rTG4qnlvmV863V7ZFPWhKznm/w8/5CCbLXhZN9SJDzSdGNZYSFezFGwKYEt74So8TYS+3kxTw2vOcg/33C5Lqw16pt8nYiHHbukAJfFp3O6tUGp9Yn0XTPbF+qxavr8JI1GJ9io9IdYNZ39AiPOCRwyxeP15Y33BPoht2lz/oB3H/ZPUtDW+bGsT6Gtso5m7RRLtaS9LVTRqM+LYk6wl88h0vSeclAXAOS9KdjDQfWO0KVdVpMK8ahVekvawI0x/YNSnO4g+qmx1pNDvUuGQzfqm7zTeNdlQdxamJuttch290t6nXXKqzPZZVgPmP5pMJ5tKpR+MnocVdwyKT0z7FOSGHX0dd4IFVn4+GT6BgkclJz2E0rzywFFAvojkgNihY+ropWMgvefHA0BlBz/L/UsUy7ROtJYsY+ASa03YNRBFoWJERblsa1uIRm8ROhJTv2HySpFPVGN4sVLHINuD0AI8HEle80ExgXMxPLRV0rLgtiAhiw8QNWqxW/2RYJs6DSEEOU8kwhkGu6FOivwjTNErUS3GWGzCLT8rUaKlHfXJyowz6pDZKxT61orqUsTQ1BQr8IBVg0rUBbtMeupA6EJkLN8oUrQ2gLOhCorXZuy6EZm8Q5yOtxAO9dAAwG6e03b4owKgBRmXSFdSEW6gL0fnwi17AiDffyBgGv4DVjd0IBRy1YLCg0E7gQpk3NDIkBXseXhtrkx2fBDC+2/AEA1N1Q3XPLp1OFDYQjWDkxSkrXs32nEDJzwmUEzvbvput4ATYCkpeyTA+mOgIjNAuGFAQZXygMsSpFyh9XyO0k9RJgE3JoFlPMLXOB6KwvBjkw6d4XlvMhvUiL+aPtSSKiS4yw71YlHnzauyxutZgtVOKtoRfvzFaOTXJm4xifHZXJWJ+gyukjH5Yxsq/QVWVVAmTliphRJSzHmqtmg/EZaz1UCzjeY00CaFt0UMFc9QXTUL00PoJ6E6lD5RMXEg+ZtayJuEYfRihiRN3QvTCgXF+gH0yiQrqJ+LOTTmdn/R5beG+ZjZkdcOdlvnGhvs8T95VVnkrm+lJ+2th/pjVQlS03AI5Lb1ovGtDfX2H4l/APjyh/dQky3wiLQmrjvBJj7s6SSGiS7tjqRJ4SVj0brgvimZYH5hkTq8rG2vr88egHahTH4UlGbIkD6LSoWqldMPN+Qb47fvJe/crm/3+BICzL1ZwxH26vuM+JmyQ7hNK5Ul+vzDZ35DVMoI3d0AiQFYCiUC96odx4Q145WUDj0GDu8gfj0YTfXEsOOZENaN5RFcI0NIO2uZb7aBtM21nFnOdbeD9sIE/MZEyjnkdGMHFvA+fEKXKNYr3U0ncEgC/aC1PGzjIh4cNHJDY3KuLzftRYFV0k4fosUzgeqoCYgIXoz7GkaTD0L/ZDwGYGfYSIH3+qM6paxmEN3M3y7XAyr0NT+ayATXFp6sCaMuTXaS6sB9BQQBgqqWsjE0aXIub1R75zPikMV9g9H0uq61zWZtEDaCdXEzpJwpTjML0FD6RJlbRa7BBbUFc4O7QaKZnFKYRfyr8hM+2Ykp1yCE2xOWXpDLx8FMg1g6H4Rl9q+45gcrXbBUUdqwHgUDiNEWM1wuFgQ/+Pj6b99Hw/GIgeRgv3/UNwoAT9C35dy1rAHw6rAHu03YT5lt+BkfEfOA7EpSbA+JS84EIVghOCtv3bCCpLwYSAXiGcTABvHXA6kP1ezWQ6Pl88DPY5TQgIczEcLPVfmGFXJStCKe9yXIAPujGMaqymwNwH7meKlPNhuUuaxjeGKYXs5w5co0MXmJWY3azwRv7Am/U8YQ3siF4N38NIlydkDAKnNyQwBMXg1XDba4tcCnfdo3QPrybO3wN+rzGcO5uO95dNgzdtvd1dQeJZMbbRloZpn7+Gt6XsVvj920vLLdttmPkl/n2woAeviHTCSdxFszu4RP6B+LdlhvcD7bc9mKO2sEi+weKDGUhtHOz5bLZHwAfgvr4YsuN/7LlqseavLOqNmxMrc3FpuQctq5W3vGqWdPZqGBKm815AWsCjyBb4oSnrF9CyCLat8VToNm+vQ2Fs3Amz1+jSd+Jx4FN+uppq8mHFI3Okg8d8QRB2InYj1W4oRRA1ZQZj8ZEPEOZYzjEm2A+oFdA1S8WRIxAH7qw8xycDoBU7fMICSQBUAHGRUDAOk8sShMrPLHCE2NYjY9oiw1GhuaCfTF69MUkC7h6JVZsqPgNrs+Ncc6ZxbIwPBMmS+Y/eezEKtoA8EOg19ci6F4jqxFo3IsQrCLICowx+NwxpVHckB4sgsSDnLqFyMDEi5DCYeR4W4Sk52yt2Ioof+RlEczcOOfnWiyLoFmTTRB/ElmVtX0+1oNdDhYBjIGwCMZNtW6Z5niuBD6XS5OeC8EcO4CDRVCMizHK1z6jQADFwYMFz9lPlOBgEYJeXpgoPpvHIgRYhMrIEcPuYLIZAvyiHNGS53OTyawNmKW5aeMyr0JlUhDsRwZEePAeWIFhcUAKYn2LH7ZsHfMjqOJTsNVl52wzA7gIwBLpKi5fgNjD4BP4ApS66ZmmMTh3abd6ASgDX0D9t4Vfl6VormS0TzdeEmx1i+QARVPgGeIacAVsN8KmwI0M3hBm1bSHi2x2UIjXcFGxHa5C7AfomRIFAp9Az6RrCM/sAXvAEVA3O+WhaMIA8W4d/yjsJsBS0UWHKAsFg1WHornzOxG4XqxtSd1RD1rg3MFqBD1IXJVYrETRFNQjiiZbrNj+Q1oKWJVu9uPD0gRcVTOgwKexfgGHEq+xCdLJ7FjZt1ECSSCIAZBKSyvkQ+epSRkJZhD1RvAAnOoVMzDFQxQxXwHhgYLcrFWpQchMJbjoxKrVNr4NYALcFN1+0JhggIeCvO0oYgnAp4IqsropyBB1AAoy4BDid+LbB9MmAhzBrJoBDu98D0tB7sfpKLUXW1wnL4Xop5lBX7mZWN1ujN3Gby/jMxAFqGWfwUVVkQsfx69Mx5fiAIL6GB+CCjZUgz6NXfMo9Qv9GJ4AMvK4s90DToAwjwgNTIBMd6hrHjeOu0qU7rcchlDAsfUDtv8YwnSPOphPHyxFqppPXPZytUc0aL72zmrYUmglJq8Jq6kcJ1H/we5GXIEKoJFI1MFg/YoqVOxL88W2AnsX/WqDVn/dVoFWf93WbTsKpsUq/HS3cXzeVjodY9No3KSE8cmbNNibNPLc/7iewId3cLjG4F0darA3SQIwRr0F713MtkeiyWfG1+JNynrc9M67YfpN83XJXcMlrQewAJdkdluiSroTgrtvib17TtC3+EJV5k5VIGSOhyn1sPZ8MLs9YgZju92yAXY4by7V06CRjfnC1Up0Oc+bY4Hh8opLcqyGutTmA2FXs1nyKXMFE08nLpunhyqb+NxWI5YPMr59YdBwxZvkcjOoRTq2aO4GI3VfPIAFx+JNvHxsK1VEe1/m80x+ZgEnYX4Rc/hgAbSYhRf64oVegEquLbONK+lhotjW+emMzabxY5etED/RUDSNYcb8Oaw0y1B3LRu3u55hqea09K+k+22lIfDh30F4mWrW/K86Y/VmNJww8XdnjOWcY9O2Y9O2q/BA3Hq7jm/maj3LC5zFeSNnTJw3svfW/+WMdT2B6fwx7HxXzzP2xU6Ar+bYebf5oP6yE9sZc/2xE/nbwJL1GsztOu8E+xRdhwfSThTeiXLKsGz7y0a0l424206/kmGj2e6GtxU3Qowe48ituPGnfreOP5CA7e8y7FcbcZ6v7JYJFT/t/MmrDyHCip3+N/7kWL64BT3xEw01n4jQ0yt3wEyvlobhX6LdvH6alb0+4HKq37EnF73Ozs9fw5ziG8K7b8VTAjz4hHbpAyF/hRdxTz17j7zx84FIyC7zEmberXtA95KDKrsXQnZ3Qp7XWEi58h7a421z3VvvkJI9G6684e2yzxj2B6d4kvJbMtoe2/OZktHVd2QcvEtjvxwG2S/Kxk/xuMbU7p4OA1k//8wByJ6p3TO1s7kuU1Fl7YP33mMSgOdIH+94Af0LvXt3SuNnjNmX5E6V3g7F8RFo9VjAN/+m9tkHPr7scYJP+ry2eLtPtyi+/fiyuUj8Ck7JU5drzocDmGhlfPS+zp9DbAGvt9JLyvpnQHn29eZwfqK8l+jhN+4uYQzGxw/OXvBHnLFs151fBLVoJiimmeHj8vZ6drnBJ31eo+UUiklPb69PT2+vKeof3t4cnE8NGhXCCgem/JLWCgf79PbeT+UzkeVnb69n9xV80ue1RVLBf/b2+vJ8X8/v6/OCC55TcXzOYRW9LvPn8MIMqIO88PUkKcmv/q+6e/2lKWRKh86Dr1jpHPqdVV0/+Xt11E9eFZnGwmC6GzKWv06Hr2fA6+uyvfn61Bt8fdLdnxy+OTpfWzS+OsK8OvrFwNkpiJ/icW1Zynxznz2+eUtaV7woiR8b16LEKEPRNC7f58+BgbMNxndelpd0Z99fIodfE1TkT1MgvnAzBxSY+OqA90wpwMg1dAb74ShVxbw4lfER4J3NUx/ZfbLiLGYGLtGfuhwcB6sA+JE27y/UKLmevms9xVYIqG/qPbYxx8FuZawMYC4FoYjiEYYB3Hi1mONs85EpgbOVYgH5GWK3sW9w1uSFxrAmAC7M4e/WESuI7AGHK9/w7s6aTGXKx8qe5vxhYaiq84s/F/Iz1rqARg7rMiDUv4rgX8nR+fAVLyeeRDyDRxh8b9dRjUB1EWTvrrm0rlWMEcRgUXm0JP7rZMWLJzGO4HQG55yxh7MIwkXN6ZyjuFLONkGnc03gdJbz8B4uurQ6cuOJjg2fwI0n10DLgnDRtCVdH4d0d+ORxvUS2HjN7XIcILl6i04RGIN2KyVlIGIiggM/nhI77sIdeO0u0yXuEK0j+Z8BozgJTjTx5vBMg1UaNnZTHuq6RskuOImgJacEXebgE9syebbkF+Nd1uuYU4lg0EHAJ+baB70IBngLGi3LMXaplbrDsYnoOz98YhcHjQ5TDjc+2q30LWLwmL2418FADD6xa0c3bxGDOBPHMT/6iCOl0ME1CRm/puf4lecEeT2PmFH0PBcLNiy7Qv/ge3SJt7oHHcoExCUuPHOVWdjJof4zEqsu/4PknSgOP1SbuIKg0T3l5JFCao/YX6qgkA5nNfgkOEzRqlrrmULaxJXVORpPP/0pEqUIVgmK1Tnet38ZNOpSm7KBGlEE8K9Tgv8z2ot/XG/LK1bJtrNsdaad3KJG3ZqidbVCPSvyfovPN3EAn/h8IReFnHxS/8Cn3Qe/eew3X6rkhiSJJ+BNTkcI2M8BfNWGiqkodeV94OSA0CN7CA/F6UGlEFe1w0eIN4Yl2fzOkGhC78tKGXzS5zWOGm0bt7u/r3KP991qIUROAop7ElC3UHdg/riuoACYHOS+AJludQeYTKkEdzkjvg4+8FiT9yygezkB3M/snvuZ1R/2s0ebU/fzx/BWwrjCD/sJpNO2yULO8WHmbOmxn3sxActaneWMWLm29pPiHbb9FFRoRXowKtxiGwpHAZe07+dWTGBOiUUf1EHA/XxakROVnJfiAvEe6/Bck0/7WV/2Uz1Rr4QIyPv9ez+HtZWiAepyvcPwQ537iZUB3Acp/lTv+PWIWzZeX8Z3trn5QHI1s0oPn+J2bcNlUhpA0nw4nHeIZM1Lso4tP6BAkOsWNq2A6/Y6iu1ukGRl5cFKBmhnmKt+X3zgtqFI/xw4qf9dfIB0u6Arl5CDMN5JvIEKGsGcgoTgqoeem0LW+Uiyg/w3GFBKAEhw9FYC4K50MlHoCysNEOqDqnJQRNlBLMNubfZVxQmRMNWMlcCncjdfWE1YnbkcXcTkufI8HVvC266Eqbkwkp9PSljF9LCUdnS4qrodBdxWVQZW48gAfR06oDmC8T4pJsFUqsqgMpQgxUjMuJki6UaLv4OiDFLfDXK+Md1NEtEHV70bsp+G7xSvMVrYDamWzGjeltJQZTfMAbxreajEbdfIwGkE0Gw6Hm6iSGv9oSYDaIDBurQHoEFVNqVb6nuwcU11ERtUZODKBviJNkMqDwivEH0F0uEwWfyVK8pagg6H6lu1y+RG7BU4hIJrh6lRQFWmwOWcBtcbiKjxxXTqx2yggFIGg2vx4VCgZ5ip/T/q0a2lnc/Xxj32c4tFzqsAm2h8oOcdBdjCwheSm7bloWE9YkhglDw0njyHSK8cNjmfK0Z7amWuGbSubkllhZOji5Q7gWiJtp8uGb7W5/As2jGFbxwuC4xxNq16+DEsEVNJqWv4TS+8FuU8igbUuzW7169QWfWctsL8vnK4a70bMUWXFCOmlQT9LDYL1iBZ9lVGjqJV1qMIHso5eyTjkwb5tGGKVkns8vHG6buQkFQlgLpumts4Sw7cI+HQiH86oVYS2D0Srn5KVYTyBVhXgaiKksC2knWc07/FN1ZOVRQ9cnUg5FRFKVkHceCodjKOAv8AbpsI1NWB4gut07vmUOvDMnaHPr+rkCceuxMq+rUOd59b+h+/cFDzgfTC6VAtb8Hgj4ppkkomLyypZJrx2JbJlj8UkoiOlEZ8Y84lw4p6mHOmHt7mVZLgTEo/KjE+1uR0Njc2JNQXQ4LULthecPxlR5Ojonf4funY0f4p7A9wa92SwwDln742QoeSaWZT7YZr4IkuyhVW9lD1ew288MSEW108SZhzpwr4sqNFkdpIAeXMebjsjNTF23f0RYu0B97+7FTatMgy9cSlRaZd39PntaXl9PywChTOnRWnW2fjFYsfLHGHWiQXgp2CvfZuqbC16ISdZU8fLwRHxZienoNbOqD8+VBw9lf4lA1IxTHmccRqG4d+s0FDLEUF2YDCebkYCHp5lttmU292ZVwcSqLU8hNu80L1xjmJfXO6zd998tBUf5Qe27WbHVxOvhCcZBhW8DG9uq427YaRhHFK52zZx4RtCNBD06EVwpbLuCs3uJuV8wPrFK+UGpc5NU7OQfqQGpfU0kQ2HeFTUthUGXJ2XImCuk9DSYmliYhiAJ+wAHd/uJMONpVulRfyreT0B38SlB87FPqPd4bNnXSW/JWyb7s/KR7+JMCG5Hc6fVF1+aIebAoigYOvVnIDuQS31NHIXIKbykjElTBJkKyvrLAtuvDmTtoqGv3bQkM+pADNPrp4k+YkgludcsxLGrZ4jtDFlE89otfdSlTTUUEMNEwEp3Lt+uA5ipW9PTlnVhAi1l8Djcc7SK90WllFuF+qoWmOqaRqGEbtlcjuGk95ajzi94ILl10aj5QQA6SfjuyAhWRXUYrTcqgqe9vUw2Fxy5EEjUeyJQHuxuU0UgzLcXJScVoqxmmpbEbsjocXH87mL5ECgdY9Kk7jhlZrKviMcHxWl2vi8a+X8cvN5havmwcDfcf/rji9Q3V7rzhdP+XI7ShtB3ZWyp2xJXF3GoFagRqW1CqjBqWDofqL6V28Ro6tA4L27fge2FGiYKNScupQnF61me+W1976FIDCgQWnp2rABacd+6OeRUxYXfgW3R8+I9FCf4nuj6zS1YP9a3SPfi90SJ0hb5hIepRDfvHRvzqkGvnoz5rZ/1CfblovESYQ4e4Smg+kBWZE15iTbqXObuUMBfXL+krRCVlfUUz6IwYd7Wl5eaAQH4kmoKSed30GJX2jLn4sZ4jaBQOvzvb77m/axeZzeilhLtmq8sb3bNV+aCboiKL812/SVTe7hnRLKOkoUPmFvnhQVL9sWT3XN/T+sqPt5f2YLZv3Hf1VNuzmYPhGXfx5R6sU+OEk7KruO/qSmCo7upW0Zn1xczF9TkxF7xnVTGdRCzml+MrtZUfbEbhGfqcv9cVjRykzdQMDUM6aymXfRdn4FPKvj0LPoi6Kh6mzKNtLaI/ETrHVqVySLdntOF5sZlJEe/OKHXAbwgt12KDVBCiH0mgheyXW0e1wA2P+yV8T0lZ05jcla/Zqgnd99F4Y5lUXdCGcBmUo/5IviSCEuEVruKyiTxTapwJ07azUblv0xYr64m8aIdET/IewQlQuo9IvhWbIG8aYxl+sszIPwB5k9fQy8U5SVyTci09Ka7xQDV0uuYpVrcklRxMjupxKK5SC5qI28YNHbqoDOTdWT5dfeCpvexHqpN49clea65L27kaoR2JTIQwrPBv0gEtONLrlkts1z10JtBxUaP8ZKxjicskxTX24MW0uua2WIjva0mbtgu/1WXXxLfgQ1T9zK5ojMYVV6Vw0t0+K4PsAl5wUYlTcYUoN6YwpjaW4BqXam00dZdLPsKdDJX8Bt8Y5Z5VuxaBfjKxEdixqo3DWembIVHtqi1KYUip8aPHJLR3QiXao41Qedq8TWCLgPfJhhtpimkB3DKly1CE24IPoRfEQOpZJoIJCe7p9JcBJhdGLnxwLMMBPFT2wGuJLXcQzerEuJeCy81RSLfizoDg6Efxz9uLNQtUSohf3NgVQaxC1UbscPjRbxhBcTwe7cp8VPbbxy3N88UeBC++looeqpI2SZnTU7sHxpYUSjw/uqF15cnflKekvghdxLbnmfO13Z5v9EHZHfrJFlxBAiGqOIKPBzjbp6ITFe9DgbE/vGdbMgBdWLwhGSMRxWI87DG+QivqNmrPVrVklCx9FgXG224//vcDLBCmxiX4F4oGrakkS8EyBb+9RIxGVQGyVRNWpxQPFMOtII1M39XS5InmRwmk2dWfNa89WeX8gZarhYwMFJzJlNG5LsrVQcmwxqHcTySNT9Pp1FtnWUukTFTKuvNcVqVypcFcQ5xNpgUVHTc9KSCR+hArT2WsRFjil5wKfnqtX1cgthRSj51g4dM1e/3B3tqAB5KGJ/Uyoq+nRS4F1USEhDAhVMQm05MK9VFbxJwtPcT1BRydSNaVG0+JjL1rHI9bxuaNYgyvsMnAsXZacVPUe6lg+iCSKEaO7GamK4woVRzgOu+OqF3YU4hOG0FJjpeMlvEacVwJVyXn1OeXvdXmrI1+Z6BzvTkBb9/e9a7qchCj7OSBkkk6DdHCq7AS814ZYmu67E1ByzGR9pQYS14aQGkigVSbb6gjzx3WVzcHJcQjMeFaG4BpIP4daHkvyHoOC6iYpsXef5/hUgIGWlziuRM4Ofl0uwHAotiOzEnu3KI+6Eir1i99T9NrAx3VscdpfqbCQR5y0HtD5iYoIMR75qw67scs/6rATQTumCNBhi7/rsC591GGbBm0ErQKgxJrfK7F7+ORHJTanH5RYxSVJ/qzFgpcYHvFnLXYrxfELLbZE0WK1VKT/Wost6tajt5BG/kclFhaHiOpXSmxZ3b6ghD8+4cOd6V9arByvP2uxQlWixV6/0mIfx+vXWuwWNv+jEls/KrEQLnozjLffKbHyGocW69X3WqzlqiYhXO4vWqwUxfqzFgshmcT3/6bFmtMm/RctduP7f9RipXzsn7XYTY38qxq7I+2/qbHgNEVO8xc11h+NYf6sxsIneo+/qbHSIvvPaqxEYW6H1P9Kj5VU27+qsQLW/6rFPvoU/FqLhbK34lT9ixYLahG+xl+1WCjRT2f0Zy3Wu3ctdrNv/FWLlaZ9f9ViLRej+qsSq7iJ1Scl9mcqpeXdKPsPSuzGMf+ow0KA5ql0fNBh/b180LPW9R912E3p+KMOe1M6/qLDbhrgH3VYcI8+bGaosfn0lRIrTPvPSuwO+P+mxMqG/lmLve3HBzXW/yqs6Ndq7COs6NdqLFTwxZX4qxoLwakrXOCf6YNvaux2vr7uXRyuZ78RfMTvmhcjeXK/kaV3vHSxY1Xh08yg4UgZu+3vbGK3ac+TtkNV7/1GiN29NLHTe+9azOnzh55qLokQfm1i96pRVe603OCBVb9Jjnnjpnptrem40bKU+aX4j/cmdofeDL5fbLT82pIZuthd9tbFDnQvbmtCEVQlHde6kwCrZxe7m+6lh3pP6rvZq7Yudkq3y+26eo3jbLO8NZCaSnJtU3FJEhjEjQlEhZbGBI84Foz+DW1vg2xWG+R49vUFGpcY5rTas/2tDbKoDKIt/7INsgSk4u1/aIOsb2Xcf98GGSrZoPYkOaUcJ7m1Qe4f2yBDLuTujfxNF+RbBONt/K0Lcv+5C7JwzN91QZbxIdB2P+Q/VgP9qNRsGsOWylgXSJJrS6Q9ei5vGoNEJpuPkckvPZdRlf0yNFm9NV3uIjmeVTm/acBXKSXxtcPxbeUZhN4Lim7a8LZI1IHvgyKC7WKwA5+rSbThR4vjI0oZFH/WhqXdgTq14bPDMXXg45lsHfj4Lbfoqn9rw1h/Zv66rp4aOLsjV/beIeK7moyoRsoL/6GjMumA/qXl4Jcdldnno/7aUZntwVv89O8qMpLeEiCamaJ5y6FTx/PaCoX0H8IwMVy6PRHVVg2HTU7t2k1eSVEHPMoVlFhjNnnFl5zduPazfqpw/lUo5JqEpBO6qlnD0oceHM9rZJRCym5HmqCkE4ravKUTSpaieaYTzvmtAjSFlNA925HTCQ/5cVKVzTpUFUObA3pOqAEk/skRdAJlbsgspXYAt0IqUzkr2p4NmfUVaQcqleMAr8FW79GvrBx5OIbuFtF9StpLMqL6FlZb6p+RK4nA8s8bQ1eCXDW/OeWYYj2KLaF5OQ302UMK7tNnbnA0H+MFJpTOV+am1pHUbrdnDAq3WmA/Lai6IzTzqMT74iZ499Rhn792FQCEDFXnzToyVCW2PZRxLR7peIYbIAnGnKQ4ORhjXIH81H1PJCjATcm4WwzdRD1UbHOlKgl9FfvCynstQzR3mrNKhrnDzevWsKgBoEUUCfB6R5uGO9eCu4nv68ZKHGU7XDnYPhAWmDEJgugdbWYsQLdkOS2cwGTwIbblU9q0ImAXVopG4EoA/LVQbyZIzQ5MdgNoKctqVpU87hy4t4sw/h7onT8yU6IbValJAiGxcCJbQGJ6K9KXmZluXas9+dAW6DrVPux7nZ9UJfD8tbAotHuuDvsWArcRV1Rg2JuPdQB/ERi/N89Rvncqas+jJVbM0/j9gLLsOeJUhL1X4n7GP0HZtYCS53dxcvuF9uB6SpmbA0pWUJ3di4C8LumJWROgVqvnq4CtSrJNpVKUOKCs2xWXvbP0i2X8wGfv4RsISJncMbNvtYRmEWgYn5nDNra7GcRRNF/fBrdXcMQcbXfCXA7ErA3bER7tn+ut/fNBJuKnspkNA7eUdb+ZMaAm11H/uClpPr3EF4ZSXBclr/+iJNcSXxxL8bSf3SxXj3LLr/YNNFCNrRoXiMJmVkNczTWQKX5jN7FBdSyVbtWPf+iHi3PYQik+1YVWU6I2ztjHQsuQxb9UHz4cAIuwRhebRaWnrpiJxIYsJxRDKW4luhYtY9GtVWiZRBim8TO6W7EUcDr0OOShtk8VEsxSYSSzFTQDO1Erh8UIJPBrVbU+V2aYrQWJ+hD4AVYkIHC2IgUE7SpRYeSd27UF1zaxR8ZHiZXInMaft0izXXp+QmZRLeMjFcrCNH57g7nzxs34KMLTMjDbhacUMZE7Hee6uy0hluM+xs34uMHcaln2Rq3Y+qiOTGbEsSKPF70taJbSTQof1kf1NDWsII+X5H5q2NuqM0G5BV9q9kfox0MMQ+hHeZb93+oZgw3svabYBtc3W49EflzPyA+xRm0xkAgfsHEDpkasw+Qw1IKqayk3KW4vZ5xWAOOkxLecebAgRe24+lUFmxrGmGw+GzKeAHqxiiw4XMjJL7BY740ZhCYOKeUoZf7Wstecue0oTe1W3Xs3yRR2ZW+57Y4lPG+aC2qrLzA4YGQ8aQfyyK1V9aIYXbfLVaQI/Rx/k4Uy/riND7Jwp8ufiwzjBNwRd7FHGP/oSkcaO4p0gZWhPSKMHXtn3aOG86dSRGqPisXm1e6w8VBp5HSz8VQuRdQQmW3p4p4NOi9xVmLkcexLa0dDM/cBhN6X11eyKcnpqr8PHjErdX1tRuD6zJDZvoJHKgeP1OdLnRky/yxXrE4b0vN0KfcS2/ChXPEaaT5wr6r9c7litH21w85D0QioL+z1me2X/vJUO5bE2o7GX7aEOxGgcUqCNBwbp9zNYGfys6biwlV7xMUWXbFlnnM2uiS+792YqVC8FJzKXCi+PJ0bUhNr98Ed+fdf1jeg1s04iU+dYb9YYTIsnDEXnTvDbl2cKy9wvS2wWP+2QsgSvjJeFpi1BYzXeCkmptTQkBRPQXiSD88LXJ/Wvzje6mn/zEXvgnxPNVfP4KL6Er1Vj7DW11xzLINsqTLlYAobXGBwL4O827PUvc78saPp6Z3FsAUu+DHu5fxs++A0AaUQkloQ3rFE24IiuOCHxGBArMjSUc9GlJT7Dts1Xs6DKCASsNIP+zpYH784EJTGPn8Nc+o72labwt/C2wsf1RJ2DocroQc3e+XeStxRf2uIvJq9nvFxOAvuTiTBALzC2TCrvZiEufdyXkEDxmGHX4gQkU7AiZu95meLApducanm0a7sviwfmjYZz564rVkwuQDcC5d9W2P2xGXDjQ5N4v623KTJRJeXY8pxuTT4tHni3PXywmwyl6rp0n0XrOzknf1HKkg2zV3aXPPHMCVpyLvn/oqr6667YqG9VgMGP7yU3IswHUgF0ZlCbygVxIMDj8wXL+E/IYvegT6Jzdz/Kb4GMk+iruEWN1cj1GwgN4UEqALiKYddfum4evdgSUwOWhLATRHdP3Vco+4WxE83ui3AhlcDgnxWrykJEgjLTRHP0MlHKM7ScVdRltNy4JTOtdxKAKKG249YGilVh01/buE3FF/zScPl3Ia7wekNSFF7qFavVWYct68pX8ny1vphGYGtBgU3vTj7JRLGRIF4+L7YRyqm3VCkBxP7lbCDFdIruAuM2M2Me9YAElT9pqOi+cWqxBkqR8G9eKvrRi4GxYXEqxhcVlQPRk9wZNM2eRE86DIgNrZMFItHUGnw1VcGZ1KXxHZnSUW0GEiw0CIq7x7jS1yO4TpnH90MdRXyxhfkcGQJy9mGl5QjtTXCuQcKHIjoQymIuDJNcBJOiyFaH3XA9XltKZZ709rlcFnlvaXiOEaguTNrhlvb31wVpa6oHtgTcTRgP6V4+jCYyMs9ShjPxA6j8hNGfc7kXkYZ+gmYZxb9YWzNUHul8U+pBFz+Gz7p89rSBpW6ofvdxi/JMVJ3SEvPKK47xO4o8GvghmZLTSU2b4MEBpXT0dKO1BkqeWTuYAnEyzfqoFllerbQG3bo1Hu1Yms/8BJ8xHja8cUdURtH+WyRP/OJewfMNwuM5LLsOS/qEfRyY9tfFp+iGoLWVrKz7GYTVsV5TZq94a0jMOfeAHNLY5GQi8YaLMbV9KOo+bLVbHaTLQHFc9JAeFmUcBzSGK17hCB/l3vbVjkTiXoAugazcz88uq/RwxNw0QEDILMXD16cXx5dGNzkA9wsXLWAjC7/BjI2rUjhzHmeH+6sgmSk0ywgPAyj2CslXAvJhDO4Au4MZ2nGaI7AjC1LUzelc1OM4bDRCmZp3rHegf8e4O4GXf6dLUH7ifEWUDe5NT3hL9vmoz9Dg/0B7gyzO0Q7bUCExJOzSl6yuXf/oLeYwic6icuoEHIAJvANUbLOC+6reN2KBWEfvXTEgdysLtjE7IdiQZiDDCLv7N55BEyI7ct0w+G5EvwhcQIS/CGzF/wHqA/Cc2/dV1KGVCms/La14+Q+ERuEy+oRnivjC0iT8SWDOL6H52L4Rq8WM2i21F/2sm8gjcdXnMqNhmKOSXP3mDSJ9rh74s+YbbFKSeCH49BQgX1Oa07L0Zs3cXACJKxZeCqkEgwiZiQAhTIJ3b6zcuQOfi1DoZK5H16bhWEg9HoBEuy8Mo6Q6Q+AZENl1rGn6g5Iyj35ZgMkm6+LOe4Wec118yXyGiK0cSEgm5gxFC461/QVZ5fjoAOJBtEfOtI9bB0fsG6rfiNtjJn+EqQB1lWPMiJSBH8DaVwE/yNIQ9s2duKELi7fgbQtevs9bgG2I7o64UndBDMEm4IHP4hgRhvNdYRsgJGom6MsAzyi67Mqx9wdMvOb60Bm3UJY5ps7efdUZgAlHMOYjxYCwCK3qiCgzEDtAHdQnk0fM1T8lAPeST4UvGQhw8aSskE8YD3cYiPRMXAIZU5Y2a7BO7u1mMAOJLqxJCxdu0lbzLa61RkJi08Ai+jpaON2W0IdnlyEqmjSUpDgJbsxjjqlO8xkqyQiM2m3zrKr2da2jXfH+KP4tcpbMkH0ssy49JCmA+lrEHaJXBmz0GxxO2Sj86XcERgLGaa7kQye/0jTEZsZAgZ/kDa8wb7Jcw+iJbua3npeLLN0qMtUN1d1LlSevGBPLOMM8S1k1d1KhUMJ5hdzCMiK6Cvbq6pmvEKJbFvdFQfH2l7u6JXeoWF77dcticwWOV9iHamrlMHWnkJaeWwmIIdumKOrgX5Wi98MVrliqJgghQptNmU7pD2FFmBzupOGusX2q/skVnt1SkMzboEthF3gPjobpHOQMU4iPWniloF2TIJf+vBfEXeAmNnJmhxZeXAWwHSvehR/cS8FhyB2RD0LxJyOc5JSt/h32kZ9DzKiSPilFuJj5j8DmTgyGtHdAnJMXauiofHX6oxMhV+rrYhHyHdOn0+27bA277CnPAFPGhW7s+3e/mXhiXAEMdqmDuVQHKsZHW3PfNQVp+dbwhjDQkc56oCBhnureqhMvQemZ17gUw7hOSlnPwB3spqMydRvimHYTNx671hs+2FNR4Z9m1Opzzl5LhmLvCSI7bsCUsf8yHAoTqNQOCFNuK3XgIJej/zUcbIWGOA9QfJr/rLt9DiEz7jXaoHIez0qRMyrejKYuYKj3ZJNafwrPcY36pm6ZNSLu/44EmDyRv2MdS3RE8dpYY8Hm4AjIXS7ujLBkdgjZeFIrANzVqrjJJIb+eOReDF0qFJfa19sJ+LaOzxNvbw7g+BF+TaXebEJFKLmkLkoRA9TRQaDQSg3yPJw+E/cR3+GuuMOIuh6HIFyoKINgp2T0jwpofJ5BLPRWxjIJrCnMHZpjsXZUDATh3kncgQTzelh6UGH0Ks8ryrE6KLk4StR4SQW/WxGm40/C6y5ee0ssLYXSwgOOK2El0bOfjgFPbpG8oGs0HKg9wOeTXweOojcRanOtL4oE8aX8mgy/lZ5Tca/jhzCjSjiczMVbyaUE8d0mrrigclmsixWE+NHYbzQ/Sub/GxmjM3GoiuKCIyOx7y9PtyFGUJ5hT1CJpMp75Hj+ShN4670cBy6C6Owydaku9NbTsStYxfmw8vujDn02LZjQWcQxH356nfAFevR9Mv05zWVwdjkqhKEeHgzrao7xoRPcI0dpejSdHVpYJMDZjDcIdl3pbO1j9R8UHU3zAefqBYWbHEoT8MW9jwOP+uUj0MKtOjaS1FElSEkbrUks4dlO9VljhWT294ojGfWuVlafzHH2vmyXXPYeMRQ8nYWH2hcNK+dRfOUhTIAzZ6JUbCEZi+H2D4UzZMUyUlCfX1doZgfbMwWRc5kQ9fQLbpZxTh2/GywBBvj1NvG/ODwnzzq075Y2RecRDjMdbAvMrHseV8k2luvfcn6RQpm2BfHJryIxd3aacI7e9Ptfk9fXV77Is7PScbZbr5GeL44/N/cBGVy+e7XxlS3NkbSxCoGPPKGAmyUEHYIXMd9YdlR2EtQHq5ZdHTY+u7oADfsp30htm3XgFsvNnZfyMRKXfeJ99ahHuhfQr1gOa44lyNyTljEQgrQvvwsWyRGM6ohqAOq7Qp2IR7+VJBvNtzdiTytyrQv17SyerHHN9PgIgox702K7ur0wSZimVK+AD7JEzTuNqOmyvno4oStXBBl6wqdxGyF3ZDN4fl854+QFhanBITVlXIHb9ud5RjeurXBqbiVwm/MHySiHuLo4Ri2V/5AzuBs0XYWrVvHcO/kzANurttKmSUysc2oG27nEIscvKSWQIx8LCsynh9Rm1/ncPOlchssueavOQ4Rieel2DqkrZ05mrG97QwYK8uWD/CD4Nrg81E7cOdXWyw+5wdJU2cI/caduQP2LXivN+7nFqFCAe5NPKoW4N7INV/3rB8NTFI6pdV5wvfOpvYllXtVIdyKHuTeF5Psam2O9HDu3NFKrtkMtQbRsstRYRL+jmUOzK3MwVewAoLzP+3O2HbnDMnsLL62wHwuCHVrvAy7U95q8fa5hkNxoYQI5RFwb/JR/g/3Jp+WXYhNB6+6LWrykcocJdsN4cLzX2EFfl1WWtxeCDBjx2UmKuAi5t6Feavy99nTzjW5ViFAjRbgE9rMG7e0uFvAOS4sc8VeJS1O7hyM7LZezpwW139IixuW49UjRKnjJnC8Ol6DTZBrENcuySbh6KGGzTz386E+VOWybNGESn0hHxHg8ETw2Ix4GPAxzPuhUsamOPa7DuCgdUWzr4aU3WEAeDYQDNLPdhH1KIg3iLYVfsJrZT62vYR0X/yIrfbe6JARjcyV9VyILp8kvcWZwyfSYV6OL5TYi22RE8Rsu3pEb8Mn2tOtU7Fj4wCEXsNOOi4wakZdDYjHqV4bSwc4G/vOWiCUPFv3RvlLv+YRtwDwRTvbzLLi+86QfPdygHFBpsIaWzOLuzTjUcdV2fhTFjaTiN3uMduJI+KZ4sxEZLRd2xFh1+DUnvFI4acf+K0rToXY2eMMf39gt2ODKRIk7krdhaE2lWexqqRnVoUx3hu36xVAEWEUtxozRsPVzw1TpuHq53INZiSH3ThmAzqDpxeVCCIBeP7rhlXe1JdwfTvVbrDPwoZZvTbMLrmGn25KxMRI6+slhPDTRfohbZe1r0qEax9Sm139jF2oe6G2iUdkqoL5TPG4zyzyfZGv0SkDv8OLGjGlmM6jucWh4sTluF3ulrZixgL0RqwfxbPenUXvBovcjit/UG/XROZ0ByOXqy3kcm1mf5JiQ8LFMqdiZ8vkysE3k4WundnrhHlFnkjj1Qfp6sZTvcO1dAsWZbegUpZrMB/cGZ4ZGwQyRS8zawPd/G1fnFO6KOU5ldyrdYzwCZ5VJ69X2qRcUz47v/bF+cN6ar34How3P6OL7OKciF4nxoG8sy+WAmXSlnSfXeG3z/z2nN3ikviSjGeLkp8aH+6L+aB2e73MIbQbbbFjVuozK/r7tbL2ZZvZiijUQ+3seH71knOI6zHmeli/VLq92Zx3ToUJG1B6eqdIenoOxPCc7i7XdsJ0ixl7Tkr2oNbBZrkPbOTwoeyi0+uPojNp8a1l7/ZJ+MWJPecwe784tudKW96vaFDv3woP+ADLkf1iW83HtVmeWZRntuXJ1zoPZVbMkH0h8z58ekUIMMLRRArM616ybcIKMvOifrUVHu7ZP+jeC6Fn353Kfs4fsp48MxgPNvSJ5tXWyBrfI3AyXNh0ejfmIn4qFu85Whzxql/JcEGS79NyQRSWB0F5Lhbvb2WS/URh4ILwEgVRlt/Rp/pco3Szrm4xDHAAXk9G8D7rqY1jZljY0JEO8b4AH1Pjxj1ShuquaQ5OymGtAHyia9FzbpxnLwN82oxQ/npZgfKyApK8zFTC9A3M+X0Jmr90uDwlxwXmPgEcbEurPDrahXtFypcFuDW9o3e71rv5a9cq+5zIp/bucReD2wlgsOUrpRQaz/22/dXCau+ewyDnHAOPqNcZiE7OADmrcpSAxJX/nHevb7iXNnX9Axaf58/52qLZm6Qdmdvt3i2PQ2L4lnpbTB0ftPmodrxnxBy7R8FTmh2YOTJtRqbNGOcjiTY50Rg+7bQ5Xmizv9Bm/4k27b0XAdFmUdEPHa/56zpFGDPg+N9Km2ZB9tuN4JrdtwZzCc7dI4/rMh9m5W9bk8yHAGawFUvYEfPNopbMKCrTzhQO1cnKzydSRq0+jT/JJOKbybrHziSrHjuT7u1udr4JLsjXjenJBlXnj2Gae5Y2rbq7t8H8ZmPI+H+/8zc7Q5qY/rjoj2e91inWsOoc01TUmI/EVU9sloZP+rwG/GyT6Mk9z0Nyz/OQOE8p3WMLadW1T95oO388p6QXpRW9uFnR7ibRf8leaDHrWWpy7c99C9+Yy9tiUgmhfVDwhBzPKvfIQ6KDXQ+TBRTDuCygl678lQSCKPiwgCWFoFPCNO6i+ZxBawNcwPwQB0WnnbKf87y/s33Jp8G3eJRy/s0xOTfjL6dkh7uHiAW75J7t9vGYbLuRQlOWRGzhaKHCRf/LVq0PWaHjZlJGDIEsYovuD1tm4cCgouvihbpuCgzGbsWuMQElsf0uxYUhU3pKqRtl3xfzSbD9zguXNvgUCd+eOJxDf5MI3x6500hxMrp7ocr3I0ekvfhGMTalJfgTA234pM9rBNwK5XaZlF8YXT4yEvCcssEz5QXcDqt/MTkVTFyGc8oVJorx65yKZZLO6WMxvzmoMb131f/zQX0BeL88qDvf7w+u+c05JUTCmpy6a3KpfACL6OXmeDg+hJIA4u1S5LxlQAJaHQGSW23eVOo6hFd6ApLrqeymS30EJJRI+wJIzEhXMS1h5lEx4w5IfiX2hGCWE+fXck8I5sa2v5Z7D07z6GCB3tY9VOgTwbADplh9J4b6CSlBeMPJaYAa2GBcwDQNLNkavqbnE4l/sIqWuLMWUUN7oYb2Qg1N7fzjXMvrAzxNY6RWrJ8/BlfT4MlRz7k/UQNVnHowml9Rw43R2EdPjsew/pV/LIA516irG0e28ZMqfSmd3VY7jTgyq2cJwhknR07sAEzd2NVbobA9v1hCRWCOB55s2xM7SQiayHl73TwORzHE+EGVTqPYloaxWO0xnT1o/6L84Zq5d1bzlfL3Jdt+qBjPsxwk7eOosqLutIUZLfuzJtj1ateoiwPHLB7CzCwZPunzGpPMHl1/O4RZ1YcQzxwGnNUimcyWyMmSXcg6ODd/DFNa3sjizCIYsfILwTj3I9h+ln0b/wNg+/0MfgG2Kbj/oJrtDP5ML/CE09CY5lbfC8mdtUSf+NC4lDWTA5sjsmFyMHdycPHNKUjkYF7IgavFZsPkYA7jhHE92+BqJqOB60wQzEHcCwdxdaPMZ1Li+4F+S2F7QYj3hX8crpugEFbz1ZG+P8ywpT479VxDNiFA3Lvorzc5gUYSpQtDsOLGWkFvnivo9Y0HIxwwELM854TJw2cXr1thDki3zq57k13w93a+EIpySzKu+imY5+kt3kGlCNIDX3OHi/fi95cMGEwUSyvhZtPA5KLQAOQOS9EPLNGW6l4nhF8DmylC8rDkn2pMHj6uwUZA/SrzqEbEwZ2SJoNJxi/OrLkTxSODW7zmEcgTHzV9JWcOE48dZarRYvYjNwRSDyVVAWkZKm1JZ12d9vI3kF5TsDgb1rZfyQhuFYY3SvnmzJG5Qio/PsJDEsGoJnJh/Papwz9QceTMhJX9f0vkiu6ZyAWcUKs9RwbGPPn2qguwkrvy6qwC30JIt/NH3kT05KP1Z0UOL0kr/NaNq3RI3RHwtdxwqv4QyfBTainNwt27+PukcIW3Sh+OfMxnsbbV+8drd9Tg4B3fCqUxD7q1g7kdcyhjcuSVQoC0wepsUAcElnjvmrhLc6Bei4lunlsg4q6kI4VUb2XiaDHPPDikY3eWZLBnvlx3ez3yd1YTXLjmouYcFPV4Qr5YII8Pcne1uP45C+tMI8X1PA+nS880Um1emKIyec8Z3bJMgcOMex7pI4muPiaFRz2fGetcgoAS1o4MKMyUskemFGZFmbOaz0fHPSZ3PwrmUF5p8YU50d5+QZLIbpnpLh8VGFWmYDjMWdoMgD9kpoNI3Do4YXmWBqWHNq2Br25ZWeYlef2eR0eT2IqCbrT8Q/I6aMCQM4ei3AMlvtHyWabsqCtEB/Ljbqx0RU6MzqFSLzUkcHe2FZYjQ/nHbhe6lBN95CQDgUt2ctgSMu/0HdWWE31W2wD6JmfFKqxxFEHd87SfPU10fcryvcDCScv2cb6Qvo8iqOZD+CIIxzf6NoBqGhw1oon89LTteXVM3/0oA++yekmplR4sy06xkWM40kp3W6gcBUaC+1Hgwt5ShQszI7eu2x8wMdU0knxFoms6qMviRyEQvJqcCxrOsgMwi60ztpHmOKx6AJMG/qyjN+mgBasW1BH6NEciz9umaWBKneksouCICUQInBStlFWsecS1aRvrrWvTzrq6ex4xozOBj8iBmK9Iub/4Uu4vbjEpp06g9npsUBHGLuIiLWI5QIC44AkyvhCNjL8hOhlfUP21cwrNYDLXWPVwxqFyls/00XzUnT3s/KQODO4fhdoItDtSUKV0cdW6OiuR2jBfI7u3NkFzV4Pa8UXFH0ZvzsRF4Cveno0YdeXSPSf/O3s8ImlnDLo7q/W9M+GqATxk5nprEmVNYqMgnsS9MIV7Igq62A7Nx9un9quio2I3S+RxWfXJuPKq+iDc0p1kitKiHmRK52vT/NS9vK9nzMe1D1h6JYAbS3qYEPRZPTvqQJWuQHpEb+ujbggs1AJ4aYd+BMoO/c+/1fcuqx/8LrLS3gr+aJ2Z/dmKzFz3ICXsWDvcIca4iPkNunl3WBd2qDXHOvnCnEn29pxTkzmdigcwdP+ieMydLpA5RwcPCMh7d/ar3isQscS6STF1SDFWO4AlIFWJfHEsseqpOrabFFuhC3tuOUgxZJPjRK0vpQ12fKdYjYdC17GTxDpKF2O9A5FioR4gE45VzooLpOE58quUT10KkSWa3+O95g48juPc+pzdAcngdxByerMiAiXks4I8H0cRp3AOgWuHzWCxJnFKzffELJKzyIdv9brKmsRmluBJ3I6DVrfCpuw+2vGXwlDZp2xuus4nghM+nolIVDb2rOvhoVB9Uk823p4V8TZGaR6WdVRxpdMwwQuDVhMqMJ9zToCq7ao/Uf1FEms+0Dd1GsT8tdbJc0fe3aB0r1oG+/3SH5C2ZydMVULc6q3UQ93z7lne6Fb/U3MtuM1qJXM66rJkb+6UKfZK74/1hpl4d84pHnPafSaJArYf52RudC6K5VAF2eShnIonw/KjnhGVW5GiCnmVW4l3Ub1YDVCVRDBk9cAuWFl3nI0BNuPbOFyapNPWE9+/WCAmfBLpgyH9Rjlsq5hX1RB8jWXm3bRSvUkfeuJ8lVy47aBeCXFK35qPq/3aIb+4hrA/GtxBSP9LMbOfQ/rhNT6E9Oeyydmz7ZsjitnVYG7TcFRcWgWeQ33rJVhgOapUK0SB7cWGu7gWNpbAEzrqs7AzZGFtLBii8E97/x7R/2byg0NGJCLn1N5U7nK8SORe0LtBeEqJ/WzfYtLLkd4ATHfc6iU2bLBzqMnUP2QsnWY/o9T/dS/05qO7EYRSC7AQX6DTAcCO0B9kIMDCbeIPf+JUergdCBelE5aXpeLdqmb5WM9a39l3xuu4jDteN0W9OZPQKhjXUEuKIoiM9bby/VHHG+y06dhVnERbI1DFosVaoEVuUIco1VKONNycDdHDr2GIvaCVVKrcFiDc2XZcTHfOGUfdTIGcbb/7JKDWpGzo5BHQFSdY5LSJ3wVEs3KHmyGtfK8JwjZsZrjf214HC8faaixBE+MWthK1Ev9AdUTH0doE1wAMJ0Rzxs3JIxWJCZGs3mZr7TExJZbaFOQax2T5tNpjNWxByo5THI3DM6Beqk4Cg2n5qCS3CisBq6cm8VatslhWB6eOSpEZLO/Q8/dW0khCKkAytHzW8+73fsPXJOPsqP3LZp8Yaih7qTkff+u6wodLnAkAovfewo5KVWxlu7Ezyq532Yi5NuDaoPrlpNhnDf1S5q/rqvQjhlWsEG43d8hqsa5vx2Mvl5wv9VW5ZPB43vXZ35VLvpnOflMuuUDmzV4Y6Y5Tvy2XrMqbGASdNF/pq3rJ0j/hz/WSd9fNrTnBuDtLNNdb2gsM+iipcYA7/tWIKoJWywXKwLz7Ie8z180i/WhEdROTYqo5WJpaDbLSBzykOVOatTgyoJzAFIpE/KvvFU3iJTAKbW+rTP2msPt8lHjbPNU8k43FUZbarpw/6lIju6qrzvNDRaK2VpUctGIQhqkAGiaScPpWXNZyRzR76rPpNVhLhxe9MRQ0FZsQ9bIXmwuMuGgH7E5tZWFB6xHsY8QOaw4XQTjdFmjKi88Tpko0myp2U4WuQypv/evOqrK3SQUxzqrdEpJD209YOloT+Kse8hPUsysd6jAoXJd6LX05N6y+dJ2bpJRrZfKFotY5qg3ZuCdRoS7GRIXlMN1h8dkF4Q8ehU3Fas96mAsSnJVho3tWhuWw87cIoci9/bKH6h+rRmU+K8Nq1sU2symZ6dMJS9/ZFZdKDxFM53kDFeIZE8FRWVE/2wjiml83g8/mDQHB4dJbO/ES90Abf3NWm7Mc+8ukQCreJqXjHmSkdImBuX1EOBzTqe6scq2bWiR+RfK8qJ8kQPjQMH3jeS+el/BSVxYdhf7meYmfDI0rJgYMZueJu7leDn/ITYs5y71zRIG+9VBtN+2LK/Zv0Xq+1neXIfqa50TzUpaQiWd/K73NxoENceibLlg+LDhMPrfK9AjQnbyxkV2CyAD0p4KfgSNmNvo3vol92qqHhZ1MOOqhSaPh+mbNfHWlVSwrq/LSupkv41Hf/cRgdkdrdnieUeHq6s2YttmWt0X37bTSqAxrAB6a6MnweYhzKq9ujp5aWDf6LLmOdaMPy00QrPtWXp0NnCEmdIb6VV4dM7m2isWFS5mXujuikLL9UR2YQglusaGn/TF8LK+e+15efSs6RuXVT6Zyn5OUV/eHq4g45hQqucs+AYTE8uoi/oEuoLz6TiHL8bLKq6sDzY0TZsIAH8qrA8MAe9DmapEQn1s0Xz6i+TbfzcZioM78S2fKVat4Eah4BKEOeyaDo0htNCCJdN9KdVcBR8udd6hHVCZd6G/SKZK7cTdyj0NsFBGLl/vlAXSxPkgbyV0Mlb4eoaHutBt9cnwItV/Sf05MfxiGdSLTeHZ009yw7Oj9do8Ny+mzMK4bfGTLMpZfN6eF6XrOybzMicBAJvIrsTEEjWiXh76wp4UeK6fHW8cYNGC7hw6EkvnsQ+P7swjRZogPZ6yBxCRcT9gb9zMuV+t+vt4lMzd+I8UIqQobDdDVtNuMSDQfSYy3Pge0mIuq+Wjf2VScS93ZvgCzC7671zYnGk0SN1M7moTPA2PHHh8EsiLHsjxNK8CSuS8+wh1eMWAEm+qSF9o5e4Fk82ath9caggXYHPK6Ae/v5ZgR4FIktbDvEi6IbFq8Pr4YPuPebUVXDmw9YoP8+NTTewo0Ph/KFLXJlnBopgX28Aa8EU1eYkgkcin1Ie9E3sCrAGJ8Ox8QFs4B4gKGsvIn7g63OW1At7zVsl8RT0kAU0RwVBY42tdS4uvOjuDJ1EcAVDLpcBYsv92nwJKi6hOF4/m/2yhuXMHcuQJxwqLazcCdufMF0ZMJqr8xBVGakz0tw0JuydaHpc3pF5/+3O75dps/j4KSOvqGzeERLthiMR9EBdfIS/zq7thFWdH6Fjsn6X7L9uYOYnTPOM4EASh+C1SBxiF2PcFvjg6jnnGAYHVRcYVoMP8uJEQ54GG+aU9utUgR7QDWL56QAbVIUslRaNb6DJNdcVn1jCzSr35q2Pbk6g/5U4wH5kFM/pFkz4PedAzMRTgWNirdHHRGOsKVf9Ax3Ik0JTBvRcSIcgmxIps5R2LGNhXq8LkuMY7M1r4Fz01lPYVbVJCmPi5kBxWoA5R6+N3tKkmn+905dohxOXQQt7mZesBaY8+0jq230OJSBd0zqOauFJW+vOZxcIqK9MhgR9NqLoKpF0Q1YMN5S1FJk9HOfWJRnsWIKRa+wSkq7vB7AFlsqR04ZnP2aT0c6A3BBAppE885Kvawqi0Di6Ra0NWj7UPkFJXNQRQgReXmqvh4EKB1vq3UglMc8UDzC9AcjSSioxQVrY7oZkhR2UMCMNiGo/f0c8el574cPOm5r9U6eDuqerYtpCSg1XF1jiw997OGBWaODRWu86daZMDmjrbgmLsjHcg1lbfcOkpo4/KqRbZ1lHDi0so3GQ6NI2DX3Yt5upxGc9jf4h4esHPi0Jd/Z5/wG5WgDX/BiC9zhwEURmvr01Qf682tlbzaQzBe0iC3/JrAMXg7XKIQhtUF9nDBA4esKRxqEKxJMg+4tJLRDp8nZx9hcNkjEnVP/N/6etyy6ADooJ/tJYvu8AWJy59YFKjbEKytavLuprWiULRnzPVLHSg41SUlthhGkAPpFj2l0d5PNmnQe9bae87aWoGiXEkBdX+6bw6QvJQDgYSWldRXnx20QeVJRz51PU4HsHZh9/CJrv2zg/YmQ41TkDqncjEO3OXk2zU4mxo9ZG0dxvm0e1WN7FiTjtWc1PKp9vGuLJgtcGlrtBOXYr5x3LSg7CoMBhIBlYWxyYY1JdZBQZrcjAVyxJ1eOS3StAdqEoOxYJvTuM3ppKnXBtV6ktiluZYvsn4wFiipTsZdsoF5o52V2Tgwb3eycWTZXPtbgylAuuFYNmEImwRZCHxPuDKlXp6M5kNP6KyqQw5sVwscnF447OrS2kYGFOYruZ7CfEFymKcf0FzKDVOqazgiF7QxZSVkbB16ej1CUaQRDmXB1bcAVXXfPJyEXcYVdQYrYJfteHi54QW9uXu5D10/1ZsJY7Jf6JejoNU2GipuNQg3Kdzqw4ShWjpTzVcP/Xek3erDgqHeTJmg23D/cFHvKzl/EW/gW9QUnqntiDn0pnm9+bQOR5uWSJvTSUeEKcvYbsvoVJXMPJvZQL/Bn83NkeLTEpSieixjCvVZBAMV2Pg0BKX40zLu9ktYB4WvJkajGE+jkUnxWMbNUcJR0dB3cnvO/Ge4p9q3W4+XOfndUSReJ0obKXYPTUDz8V0T1hLIe7or7qYaNh+fZokPWY7F1s18VHZTTbrGTtrSCvPMaLzPactiqfdogQq6I/jVbqkgIBH0kRO4zMfEthk+Ke5CebZCjC++F7Af58VzzwRH/eKvULfUELYf7zrgo9DFHtOiKZ1c4gT2uq//SPUVA118MSpzqidGfq0kkQ26WQqAuAGB3X68UNHDelrUi/kNWAEEtO2sYGmS35pP0Up1MgN6F/0UDO/m03TLLdYSi2+eBxQOo1zTZMfCCda9EMCOl/Np78zqLOFTjH0LIhJ0dNbCQWiKZrTdSNXNaRYlc64U7nhrO7qXpVxSfc+rWU4XDCVy61Ss/Lma8tFEVrEd4+YygUBS9lEU/ZamNJciix0ngnEWkPz9nOkO0TYdLO17E/hnDj560cglafJxBiTvV1wogTN2zga1xaTbSYP5vtmWIQM/kpVgHBCGpIiU/5uIN0F6gnoWfNtKfHDKIz1BNMbTa+6UOr3maRHchRlfRBVCBskcQhtIOu64SmwInNy/8+9bmF9YCuNu2WRy1WkPyWQjKkWRsYBgVRm6sN8ibGDCm8O+Z7unU1ZVDyvq7QTvpxoe0dVT5qI17zpwo33Jm34JLwLvv3rxaE5JWvy9rsY9C1iZ4t2b5MSIU/NIjUodTXj6cIdgSO4ZuofBt/r1tNABi+5he1RnDwYMvi3pNAAwwrJZPdDkXZo1WIitjzG8ZCFBdi3DxhYDn9eub96Pl7j8Va5GPXMjZVc5rm/1aUArBAfGbwYCZG7mNNx9YaR9sVJMzbvkyAcfLadopaCUcYpEArstG2UfJlW2A3DHjE3lR8YiRoqdqoISqtq6+jIHSP3Norp5hG8Ggm1KUnwHuE15Fgh7pwTVq+3ziXlpu6hyBixzyxYCTB6oH/cS+3HvZy7es4/mG6O0EEsA0f9WJ8iwEZ6N1OJYTf0WYI/6J01FugLbAcKCWhEvQ8Qi7hfjAgT549ibNVeRXGCrA9lb/CdjbL7rwxC5pp7mktNSMR9IxljpPRzYGLtXouD0I5Sjm6WC5ah7Sb8VS0VOIDFxLWgHkLsDjNMR88InfzZBFWe1cmSMFUtFTDvPrMpXfoJ2SRJPPz56jy+af5fgJK8+lO3G7dHG2dujv3mLEtIPj/7wFibXL96ihHq+RfxpKH50e3sLHoUszusn9GeJ9V9vccwsfbOeRUIdiGGW+wq/vnb68JprO3rx8mAAJ3gPldBQ9CzfweDvL0huljApM6UPj6z2kTOaX+a38B6lUPtEt0I2RD2fWmoo+ZhJ9NtSyExghcuxFKvgCuAtWZPm9pmRP//5jyDEeXb+P2FXlOQwCELvsidAko3lMPsBxtz/CDvywLRpOv3JjxqQJ+Io88CQppqv/yWSBkkyk4xE9XGSymQSR8haWfcbJdwvYwoL61XPgBQFYstBpU6R4+Cu/cvkeJ0Tcd6DX2THBX2JNrodDKVIHKR5AWaosg52LZipG99iw1i6PFeJBV00CdZuId1xWvcD5/iorTNLvqbX4CWFzr2Grb4LSzm82fbJIOKEVRHFSniQaKBYOf+FhqqdLkKi4QlUQVPp1jI7dwRItcnvMYKdml40hilkRvAKRHCh1a1nd3nAFn2N3VYPaBsl6kdEGBB+9I5zabl3HC+WgTnbkuXW1cbf+OzgV8sIjgv5W2BAYvRCEQlh5kM88rZGm5U1uO6s0DsWE4AAJF2oGccBi9IynuHR6pNee/qb5wzHPOSuw8/ffwAAAP//ae+NpWmAAQA=", - "entry_points_by_type": { - "CONSTRUCTOR": [], - "L1_HANDLER": [], - "EXTERNAL": [] - } - }, - "sender_address": "0x1", - "nonce": "0x0", - "compiled_class_hash": "0x68ab16f796735f8a31987c41f042890eb0f497815de13c022402d3b4c290bc2" -} \ No newline at end of file diff --git a/rpc/write_test.go b/rpc/write_test.go index 8354f5aa..005d367f 100644 --- a/rpc/write_test.go +++ b/rpc/write_test.go @@ -2,9 +2,7 @@ package rpc import ( "context" - "encoding/json" "errors" - "os" "testing" "github.com/NethermindEth/juno/core/felt" @@ -32,29 +30,7 @@ func TestDeclareTransaction(t *testing.T) { ExpectedError: nil, }, { - DeclareTx: BroadcastDeclareTxnV3{ - Type: TransactionType_Declare, - Version: TransactionV3, - Signature: []*felt.Felt{}, - Nonce: utils.TestHexToFelt(t, "0x0"), - NonceDataMode: DAModeL1, - FeeMode: DAModeL1, - ResourceBounds: ResourceBoundsMapping{ - L1Gas: ResourceBounds{ - MaxAmount: "0x0", - MaxPricePerUnit: "0x0", - }, - L2Gas: ResourceBounds{ - MaxAmount: "0x0", - MaxPricePerUnit: "0x0", - }, - }, - Tip: "", - PayMasterData: []*felt.Felt{}, - SenderAddress: utils.TestHexToFelt(t, "0x0"), - CompiledClassHash: utils.TestHexToFelt(t, "0x0"), - AccountDeploymentData: []*felt.Felt{}, - }, + DeclareTx: BroadcastDeclareTxnV3{}, ExpectedResp: AddDeclareTransactionResponse{ TransactionHash: utils.TestHexToFelt(t, "0x41d1f5206ef58a443e7d3d1ca073171ec25fa75313394318fc83a074a6631c3")}, ExpectedError: nil, @@ -70,19 +46,9 @@ func TestDeclareTransaction(t *testing.T) { }[testEnv] for _, test := range testSet { - if test.DeclareTx == nil && testEnv == "testnet" { - declareTxJSON, err := os.ReadFile("./tests/write/declareTx.json") - if err != nil { - t.Fatal("should be able to read file", err) - } - var declareTx BroadcastDeclareTxnType // AddDeclareTxnInput - require.Nil(t, json.Unmarshal(declareTxJSON, &declareTx), "Error unmarshalling decalreTx") - test.DeclareTx = declareTx - } - resp, err := testConfig.provider.AddDeclareTransaction(context.Background(), test.DeclareTx) if err != nil { - require.Equal(t, err.Error(), test.ExpectedError) + require.Equal(t, test.ExpectedError.Error(), err.Error()) } else { require.Equal(t, (*resp.TransactionHash).String(), (*test.ExpectedResp.TransactionHash).String()) } From c7b2521fa17e4d95b3af0c7971bffb1a34a1e534 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Tue, 13 Aug 2024 01:46:56 -0300 Subject: [PATCH 10/28] Update trace test data to sepolia --- rpc/mock_test.go | 10 +- ...b1dc4fc6a88272bc6c67523c9baaee52a5ea2.json | 14641 ---------------- ...155ad0a2f7e2a0fd9b057b90cdd64eba7e12e.json | 245 - ...9b499437049b0084c3296da9fbbec7eda79b2.json | 10144 +++++++++++ ...1f090a70d1e3bbde80998fde11a08aab8b282.json | 204 + rpc/trace_test.go | 8 +- 6 files changed, 10357 insertions(+), 14895 deletions(-) delete mode 100644 rpc/tests/trace/0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2.json delete mode 100644 rpc/tests/trace/0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e.json create mode 100644 rpc/tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json create mode 100644 rpc/tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json diff --git a/rpc/mock_test.go b/rpc/mock_test.go index 06a76d99..42dbbf5d 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -1146,7 +1146,7 @@ func mock_starknet_getBlockWithReceipts(result interface{}, method string, args // The function first checks the type of the result parameter and returns an error if it is not of type *json.RawMessage. // It then checks the length of the args parameter and returns an error if it is not equal to 1. Next, it checks the // type of the first element of args and returns an error if it is not of type *felt.Felt. If the block hash is equal -// to "0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2", the function reads the trace from a file +// to "0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2", the function reads the trace from a file // and unmarshals it into a struct. It then marshals the result and unmarshals it into the result parameter. // If the block hash is not valid, the function returns an error of type ErrInvalidBlockHash. // @@ -1168,12 +1168,12 @@ func mock_starknet_traceBlockTransactions(result interface{}, method string, arg if !ok { return errors.Wrap(errWrongArgs, fmt.Sprintf("args[0] should be BlockID, got %T\n", args[0])) } - if blockID.Hash.String() == "0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2" { + if blockID.Hash.String() == "0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2" { var rawBlockTrace struct { Result []Trace `json:"result"` } - read, err := os.ReadFile("tests/trace/0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2.json") + read, err := os.ReadFile("tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json") if err != nil { return err } @@ -1224,11 +1224,11 @@ func mock_starknet_traceTransaction(result interface{}, method string, args ...i return errors.Wrap(errWrongArgs, fmt.Sprintf("args[0] should be felt, got %T\n", args[0])) } switch transactionHash.String() { - case "0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e": + case "0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282": var rawTrace struct { Result InvokeTxnTrace `json:"result"` } - read, err := os.ReadFile("tests/trace/0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e.json") + read, err := os.ReadFile("tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") if err != nil { return err } diff --git a/rpc/tests/trace/0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2.json b/rpc/tests/trace/0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2.json deleted file mode 100644 index 0eca0817..00000000 --- a/rpc/tests/trace/0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2.json +++ /dev/null @@ -1,14641 +0,0 @@ -{ - "jsonrpc": "2.0", - "result": [ - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x2", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", - "0x3", - "0x4", - "0x7", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x71afd498d0000", - "0x0", - "0x4", - "0x0", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x2", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", - "0x3", - "0x4", - "0x7", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x71afd498d0000", - "0x0", - "0x4", - "0x0", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x2", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", - "0x3", - "0x4", - "0x7", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x71afd498d0000", - "0x0", - "0x4", - "0x0", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x1" - ], - "calls": [ - { - "contract_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x2", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", - "0x3", - "0x4", - "0x7", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x71afd498d0000", - "0x0", - "0x4", - "0x0", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1", - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "calldata": [ - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "calldata": [ - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff" - ], - "data": [ - "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x71afd498d0000", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "entry_point_selector": "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", - "calldata": [ - "0x4", - "0x0", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "class_hash": "0x42f75b00684c9478a1680f70a9777e2bf186bbc8edc24fd367c58d913049d3e", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "entry_point_selector": "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", - "calldata": [ - "0x4", - "0x0", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "class_hash": "0x59bc2204b484b34b3bbcd742791ea76f2155f56e65d8ecaa84983741c9f2d09", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x41b033f4a31df8067c24d1e9b550a2ce75fd4a29e1147af9752174f0e6cb20", - "calldata": [ - "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "0x3dc7651e449431bef33e4f7691c4a0574f90e072e346400d8fc9c44c0108a5c", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x41b033f4a31df8067c24d1e9b550a2ce75fd4a29e1147af9752174f0e6cb20", - "calldata": [ - "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "0x3dc7651e449431bef33e4f7691c4a0574f90e072e346400d8fc9c44c0108a5c", - "0x71afd498d0000", - "0x0" - ], - "caller_address": "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "0x3dc7651e449431bef33e4f7691c4a0574f90e072e346400d8fc9c44c0108a5c", - "0x71afd498d0000", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x0", - "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "0x24b6", - "0x0" - ] - }, - { - "keys": [ - "0x211a3f2ef712c467116d6dd4f005881792447d02d48cb5da714f29a4e730807" - ], - "data": [ - "0x24b6", - "0x0", - "0x1", - "0x0", - "0x0", - "0x0", - "0x71afd498d0000", - "0x0" - ] - }, - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x0", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd", - "0x24b7", - "0x0" - ] - }, - { - "keys": [ - "0x211a3f2ef712c467116d6dd4f005881792447d02d48cb5da714f29a4e730807" - ], - "data": [ - "0x24b7", - "0x0", - "0x2", - "0x0", - "0x4", - "0x1", - "0x1", - "0x0" - ] - }, - { - "keys": [ - "0x360bdcf566faadcee08589736f65d5a869d38fa57e891aa58a8512698148b0f" - ], - "data": [ - "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "0x24b7", - "0x0", - "0x24b6", - "0x0", - "0x5ef092a31619faa63bf317bbb636bfbba86baf8e0e3e8d384ee764f2904e5dd" - ] - }, - { - "keys": [ - "0x189e95951dad148f4e1222eaf73c75f72e02b0e50909e9c209b4d9f662fb465" - ], - "data": [ - "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "0x24b6", - "0x0", - "0x71afd498d0000", - "0x0", - "0x0", - "0x0", - "0x0", - "0x0", - "0x24b7", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x259f0a269ea8", - "0x0" - ], - "caller_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x259f0a269ea8", - "0x0" - ], - "caller_address": "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x4d1085d194e2f228ea8bfd3cf341217784dc6cf28dba2319d71264b4e7c94c7", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x259f0a269ea8", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x5f5739f0fc6041f39f4bc08bc308dd44318e3caecfc63850f171d54170d16c3" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x2f5f55ec9295557716537c1f0ee5bbc717846259863eed458f5dff5d60044ea", - "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", - "0x0", - "0x2", - "0x2", - "0x3a0fef7e2d260405eba03c1ce0c721d8c3d5543c5dead1f1a3c452ac7769387", - "0x2fdb5115ef12930ad57f1f3580ab1e36570bb8655971603114a7fcd1a2c928e" - ], - "caller_address": "0x0", - "class_hash": "0x4189defe07cb5c3ae9fd57d88a339bd99785d44690dc83484998b0fd769d3c4", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x2f5f55ec9295557716537c1f0ee5bbc717846259863eed458f5dff5d60044ea", - "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", - "0x0", - "0x2", - "0x2", - "0x3a0fef7e2d260405eba03c1ce0c721d8c3d5543c5dead1f1a3c452ac7769387", - "0x2fdb5115ef12930ad57f1f3580ab1e36570bb8655971603114a7fcd1a2c928e" - ], - "caller_address": "0x0", - "class_hash": "0x4189defe07cb5c3ae9fd57d88a339bd99785d44690dc83484998b0fd769d3c4", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x2f5f55ec9295557716537c1f0ee5bbc717846259863eed458f5dff5d60044ea", - "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", - "calldata": [ - "0x3a0fef7e2d260405eba03c1ce0c721d8c3d5543c5dead1f1a3c452ac7769387", - "0x2fdb5115ef12930ad57f1f3580ab1e36570bb8655971603114a7fcd1a2c928e" - ], - "caller_address": "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "class_hash": "0x3ac37c03ad09fcaa7f56239bba1e2aa29dbc6a41c62a58d9de47edf7ace198c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x47ea6282670", - "0x0" - ], - "caller_address": "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x47ea6282670", - "0x0" - ], - "caller_address": "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x219937256cd88844f9fdc9c33a2d6d492e253ae13814c2dc0ecab7f26919d46", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x47ea6282670", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x3753eac54df4258d99734fb079907e80d34a927353584b68aea30d4c36c8da2" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x72df4dc5b6c4df72e4288857317caf2ce9da166ab8719ab8306516a2fddfff7", - "0x2d9216304c3e598694ca48b525083fb32dad6bde996f422f32a4e998ceecd3e", - "0x0", - "0x2", - "0x2", - "0x3635c9adc5dea00000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x72df4dc5b6c4df72e4288857317caf2ce9da166ab8719ab8306516a2fddfff7", - "0x2d9216304c3e598694ca48b525083fb32dad6bde996f422f32a4e998ceecd3e", - "0x0", - "0x2", - "0x2", - "0x3635c9adc5dea00000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x72df4dc5b6c4df72e4288857317caf2ce9da166ab8719ab8306516a2fddfff7", - "0x2d9216304c3e598694ca48b525083fb32dad6bde996f422f32a4e998ceecd3e", - "0x0", - "0x2", - "0x2", - "0x3635c9adc5dea00000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x72df4dc5b6c4df72e4288857317caf2ce9da166ab8719ab8306516a2fddfff7", - "0x2d9216304c3e598694ca48b525083fb32dad6bde996f422f32a4e998ceecd3e", - "0x0", - "0x2", - "0x2", - "0x3635c9adc5dea00000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x72df4dc5b6c4df72e4288857317caf2ce9da166ab8719ab8306516a2fddfff7", - "entry_point_selector": "0x2d9216304c3e598694ca48b525083fb32dad6bde996f422f32a4e998ceecd3e", - "calldata": [ - "0x3635c9adc5dea00000", - "0x0" - ], - "caller_address": "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "class_hash": "0x1af17f2f2c5dac7074015a3be3ef86d76ca753d69bb643cfe39a26dad8e8aa7", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x0", - "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "0x3635c9adc5dea00000", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x427d48dba283eadced699cc6f4b89bc6cdbd8540dcfee8a864b5ee6c430a20f", - "0x1", - "0x1" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x5a1aff6a180", - "0x0" - ], - "caller_address": "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x5a1aff6a180", - "0x0" - ], - "caller_address": "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x3bcebeb3b64f27f070c8a2fad436298db4cbaf90f5d60fcc9c6baa797563056", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x5a1aff6a180", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x427d48dba283eadced699cc6f4b89bc6cdbd8540dcfee8a864b5ee6c430a20f" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x98774738bc822200000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xeebe0b40e8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1c6bf526340000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x98774738bc822200000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xeebe0b40e8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1c6bf526340000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x98774738bc822200000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xeebe0b40e8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1c6bf526340000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x98774738bc822200000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xeebe0b40e8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1c6bf526340000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x337" - ], - "calls": [ - { - "contract_address": "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x337", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x337", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x98774738bc822200000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0xeebe0b40e8000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x98774738bc822200000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1b726b0a569f6e41d9ab4e014ea1807e90e0877b182b5bb35b8cba71caa6778" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1b726b0a569f6e41d9ab4e014ea1807e90e0877b182b5bb35b8cba71caa6778", - "0xeebe0b40e8000", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1a" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x1a", - "0x1b726b0a569f6e41d9ab4e014ea1807e90e0877b182b5bb35b8cba71caa6778", - "0xeebe0b40e8000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x1a", - "0x1b726b0a569f6e41d9ab4e014ea1807e90e0877b182b5bb35b8cba71caa6778", - "0xeebe0b40e8000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56", - "0x58d15e17628000", - "0x0", - "0xde0b6b3a7640000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x3a" - ], - "calls": [ - { - "contract_address": "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x3a", - "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56", - "0x58d15e17628000", - "0x0", - "0xde0b6b3a7640000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x3a", - "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56", - "0x58d15e17628000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1c6bf526340000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x405fdf7e5af85e00000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xf88666f601869551e6137ccc248a4676a56026db138816ac4018882b596334" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0xf88666f601869551e6137ccc248a4676a56026db138816ac4018882b596334", - "0x1c6bf526340000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x9" - ], - "calls": [ - { - "contract_address": "0xf88666f601869551e6137ccc248a4676a56026db138816ac4018882b596334", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x9", - "0xf88666f601869551e6137ccc248a4676a56026db138816ac4018882b596334", - "0x1c6bf526340000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x9", - "0xf88666f601869551e6137ccc248a4676a56026db138816ac4018882b596334", - "0x1c6bf526340000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x2c4ca14921510ac1f48b6bb6932d091be687b9de7ff8d01ef4ebbee58c21d21", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x277597238fd0", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x277597238fd0", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x277597238fd0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x2c4ca14921510ac1f48b6bb6932d091be687b9de7ff8d01ef4ebbee58c21d21" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x0", - "0x1", - "0x1", - "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9" - ], - "caller_address": "0x0", - "class_hash": "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x0", - "0x1", - "0x1", - "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9" - ], - "caller_address": "0x0", - "class_hash": "0x2c2b8f559e1221468140ad7b2352b1a5be32660d0bf1a3ae3a054a4ec5254e4", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x0", - "0x1", - "0x1", - "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9" - ], - "caller_address": "0x0", - "class_hash": "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x0" - ], - "calls": [ - { - "contract_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "0x0", - "0x1", - "0x1", - "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9" - ], - "caller_address": "0x0", - "class_hash": "0x2c2b8f559e1221468140ad7b2352b1a5be32660d0bf1a3ae3a054a4ec5254e4", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x0" - ], - "calls": [ - { - "contract_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "entry_point_selector": "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "calldata": [ - "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9" - ], - "caller_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "class_hash": "0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "entry_point_selector": "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd", - "calldata": [ - "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9" - ], - "caller_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "class_hash": "0x2c2b8f559e1221468140ad7b2352b1a5be32660d0bf1a3ae3a054a4ec5254e4", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "entry_point_selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd", - "calldata": [ - "0xa66bd575" - ], - "caller_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "class_hash": "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "entry_point_selector": "0x12776a647d4f1a00968b94506ca4f11d94dce59f1c0176d42b47799b3a7f709", - "calldata": [ - "0x3030302e3030302e303130" - ], - "caller_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "class_hash": "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3" - ], - "data": [ - "0x105c0cf7aadb6605c9538199797920884694b5ce84fc68f92c832b0c9f57ad9" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x48cda0a4a58", - "0x0" - ], - "caller_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x48cda0a4a58", - "0x0" - ], - "caller_address": "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x38af214897c68e2b142c8823f6b1ef1f05aaec4ceb698760dd972c5f8fa9226", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x48cda0a4a58", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x29313f3f74802720a3d3eddee64a93c09ed196d5c21b798bf285bbbd24d88c6" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5150ae84a8cdf000000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x19a56a3578ec000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x96fd865af44000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5150ae84a8cdf000000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x19a56a3578ec000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x96fd865af44000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5150ae84a8cdf000000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x19a56a3578ec000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x96fd865af44000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5150ae84a8cdf000000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x19a56a3578ec000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x96fd865af44000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5150ae84a8cdf000000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x19a56a3578ec000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5150ae84a8cdf000000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1e11440014c80e2bf50bad343160c1cce02543e4078b244a96c7b997bd6885e" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x1e11440014c80e2bf50bad343160c1cce02543e4078b244a96c7b997bd6885e", - "0x19a56a3578ec000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x65" - ], - "calls": [ - { - "contract_address": "0x1e11440014c80e2bf50bad343160c1cce02543e4078b244a96c7b997bd6885e", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x65", - "0x1e11440014c80e2bf50bad343160c1cce02543e4078b244a96c7b997bd6885e", - "0x19a56a3578ec000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x65", - "0x1e11440014c80e2bf50bad343160c1cce02543e4078b244a96c7b997bd6885e", - "0x19a56a3578ec000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x9a8b04ffbac000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x41" - ], - "calls": [ - { - "contract_address": "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x41", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x9a8b04ffbac000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x41", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x9a8b04ffbac000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x96fd865af44000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x96fd865af44000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x42" - ], - "calls": [ - { - "contract_address": "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x42", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x96fd865af44000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x42", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x96fd865af44000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x9a8b04ffbac000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0xa968163f0a57b400000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x9a8b04ffbac000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x43" - ], - "calls": [ - { - "contract_address": "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x43", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x9a8b04ffbac000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x43", - "0x34dd1d6a6836eb673145c1f48d215f39c400d89cc722bc17ffaa843ce912356", - "0x9a8b04ffbac000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x4625d8c97ef0179006f0ac87c6d6565f867d1f2224da641b53089a783f68bf8", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x230cd3d19850", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x230cd3d19850", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x230cd3d19850", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x4625d8c97ef0179006f0ac87c6d6565f867d1f2224da641b53089a783f68bf8" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "0x8c3bba700788da00e373386640006338bc3ef7ec96291f998977238013f3a", - "0x0", - "0x169", - "0x169", - "0x3c", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0", - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5ae38", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5f488", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a4740", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33e1400", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36f6cd0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x1500d0d80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26211e0dd80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f5b9f0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x25a71d38600", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x22b4d13ea00", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270181ac40", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x7a308480", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x3e95ba80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x5d3b30", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x33e", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f7dcd0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x545553442f555344", - "0x4c50220", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x424e422f555344", - "0x791267df0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a2be8", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33f2188", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x370ad20", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x165a0bc00", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26143ad159f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f77b28", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x261f6c21dc1", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x231b849d722", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x27013d0220", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x8271dc1f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40c2ac9f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61abe8", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5a668", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f598bc", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x425553442f555344", - "0x5f60382", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f4d584e", - "0x2995ed824a6", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x1999f47", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33dd967", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36ed477", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x152f8bbbf", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0", - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x54e2c7f1dfeabb51e76c30d639787eb827be90a3bbca7906106838790a85f0b", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "0x8c3bba700788da00e373386640006338bc3ef7ec96291f998977238013f3a", - "0x0", - "0x169", - "0x169", - "0x3c", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0", - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5ae38", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5f488", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a4740", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33e1400", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36f6cd0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x1500d0d80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26211e0dd80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f5b9f0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x25a71d38600", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x22b4d13ea00", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270181ac40", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x7a308480", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x3e95ba80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x5d3b30", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x33e", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f7dcd0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x545553442f555344", - "0x4c50220", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x424e422f555344", - "0x791267df0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a2be8", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33f2188", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x370ad20", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x165a0bc00", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26143ad159f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f77b28", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x261f6c21dc1", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x231b849d722", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x27013d0220", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x8271dc1f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40c2ac9f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61abe8", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5a668", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f598bc", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x425553442f555344", - "0x5f60382", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f4d584e", - "0x2995ed824a6", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x1999f47", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33dd967", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36ed477", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x152f8bbbf", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0", - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x54e2c7f1dfeabb51e76c30d639787eb827be90a3bbca7906106838790a85f0b", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x0" - ], - "calls": [ - { - "contract_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "entry_point_selector": "0x8c3bba700788da00e373386640006338bc3ef7ec96291f998977238013f3a", - "calldata": [ - "0x3c", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0", - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5ae38", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5f488", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a4740", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33e1400", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36f6cd0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x1500d0d80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26211e0dd80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f5b9f0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x25a71d38600", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x22b4d13ea00", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270181ac40", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x7a308480", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x3e95ba80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x5d3b30", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x33e", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f7dcd0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x545553442f555344", - "0x4c50220", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x424e422f555344", - "0x791267df0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a2be8", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33f2188", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x370ad20", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x165a0bc00", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26143ad159f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f77b28", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x261f6c21dc1", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x231b849d722", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x27013d0220", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x8271dc1f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40c2ac9f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61abe8", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5a668", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f598bc", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x425553442f555344", - "0x5f60382", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f4d584e", - "0x2995ed824a6", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x1999f47", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33dd967", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36ed477", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x152f8bbbf", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0", - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0" - ], - "caller_address": "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b", - "class_hash": "0x639a9186c8d9daa7c44186e7cf987cc458a46965e2658d27020554f9671677b", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "entry_point_selector": "0x8c3bba700788da00e373386640006338bc3ef7ec96291f998977238013f3a", - "calldata": [ - "0x3c", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0", - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5ae38", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5f488", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a4740", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33e1400", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36f6cd0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x1500d0d80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26211e0dd80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f5b9f0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x25a71d38600", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x22b4d13ea00", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270181ac40", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x7a308480", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x3e95ba80", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x5d3b30", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x33e", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f7dcd0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x545553442f555344", - "0x4c50220", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x424e422f555344", - "0x791267df0", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a2be8", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33f2188", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x370ad20", - "0x0", - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x165a0bc00", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26143ad159f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f77b28", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x261f6c21dc1", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x231b849d722", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x27013d0220", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x8271dc1f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40c2ac9f", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61abe8", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5a668", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f598bc", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5e100", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x425553442f555344", - "0x5f60382", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f4d584e", - "0x2995ed824a6", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x1999f47", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33dd967", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36ed477", - "0x0", - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x152f8bbbf", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0", - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0", - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0", - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0", - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0" - ], - "caller_address": "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b", - "class_hash": "0x7a65fee06e3fd15ab961e68f5f868ab6ddaf01b16876886a9098cda64f0dce", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434558" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x434f494e42415345" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x455155494c49425249554d" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x455155494c49425249554d", - "0x4249545354414d50" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5ae38", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5f488", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a4740", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33e1400", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36f6cd0", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x1500d0d80", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26211e0dd80", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f5b9f0", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x25a71d38600", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x22b4d13ea00", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270181ac40", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x7a308480", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x3e95ba80", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x5d3b30", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x33e", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5e100", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f5e100", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f7dcd0", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x545553442f555344", - "0x4c50220", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x424e422f555344", - "0x791267df0", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x19a2be8", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33f2188", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x370ad20", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434558", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x165a0bc00", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x26143ad159f", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f77b28", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x574254432f555344", - "0x261f6c21dc1", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x231b849d722", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x27013d0220", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x8271dc1f", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40c2ac9f", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61abe8", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f5a668", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344542f555344", - "0x5f598bc", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x555344432f555344", - "0x5f5e100", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x425553442f555344", - "0x5f60382", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4554482f4d584e", - "0x2995ed824a6", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4144412f555344", - "0x1999f47", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x5852502f555344", - "0x33dd967", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x4d415449432f555344", - "0x36ed477", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155b", - "0x434f494e42415345", - "0x455155494c49425249554d", - "0x414156452f555344", - "0x152f8bbbf", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f555344", - "0x2615d46bc00", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x574254432f425443", - "0x5f14d20", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4254432f455552", - "0x23190715700", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4554482f555344", - "0x270190ee80", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21557", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534f4c2f555344", - "0x82a52120", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21558", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x415641582f555344", - "0x40f3f5d0", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e2155a", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x444f47452f555344", - "0x61deb0", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x534849422f555344", - "0x345", - "0x0" - ] - }, - { - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x64e21559", - "0x4249545354414d50", - "0x455155494c49425249554d", - "0x4441492f555344", - "0x5f27600", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x3e41065ce508", - "0x0" - ], - "caller_address": "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x3e41065ce508", - "0x0" - ], - "caller_address": "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0xcf357fa043a29f7ea06736cc253d8d6d8a208c03b92ffb4b50074f8470818b", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x3e41065ce508", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x674386df15ba107c2be9003d83896f35e19baa93ca5b419c8d60ee4d6119890" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x9513ea9de0243800000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x44364c5bb0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x947e094f18ae0000", - "0x0", - "0x195026560650000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x9513ea9de0243800000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x44364c5bb0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x947e094f18ae0000", - "0x0", - "0x195026560650000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x9513ea9de0243800000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x44364c5bb0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x947e094f18ae0000", - "0x0", - "0x195026560650000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x9513ea9de0243800000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x44364c5bb0000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x947e094f18ae0000", - "0x0", - "0x195026560650000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x9513ea9de0243800000", - "0x0", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x44364c5bb0000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x9513ea9de0243800000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x6250a0decb6e7fa4de0c897532e1554d61274f28bb41feb6e90db515cea402d" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x6250a0decb6e7fa4de0c897532e1554d61274f28bb41feb6e90db515cea402d", - "0x44364c5bb0000", - "0x0", - "0xebec21ee1da40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1e" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x1e", - "0x6250a0decb6e7fa4de0c897532e1554d61274f28bb41feb6e90db515cea402d", - "0x44364c5bb0000", - "0x0", - "0xebec21ee1da40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x1e", - "0x6250a0decb6e7fa4de0c897532e1554d61274f28bb41feb6e90db515cea402d", - "0x44364c5bb0000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x338" - ], - "calls": [ - { - "contract_address": "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x338", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x338", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x339" - ], - "calls": [ - { - "contract_address": "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x339", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x339", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x947e094f18ae0000", - "0x0", - "0x195026560650000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x653b6e00", - "0x5ede20f01a459800000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4bc490053860a888727551de91b4b56abb8dccbaed2cbe1de259d28f8f02767" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x4bc490053860a888727551de91b4b56abb8dccbaed2cbe1de259d28f8f02767", - "0x195026560650000", - "0x0", - "0x947e094f18ae0000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x66" - ], - "calls": [ - { - "contract_address": "0x4bc490053860a888727551de91b4b56abb8dccbaed2cbe1de259d28f8f02767", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x66", - "0x4bc490053860a888727551de91b4b56abb8dccbaed2cbe1de259d28f8f02767", - "0x195026560650000", - "0x0", - "0x947e094f18ae0000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x66", - "0x4bc490053860a888727551de91b4b56abb8dccbaed2cbe1de259d28f8f02767", - "0x195026560650000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x331581ca792babacf94a241f32157e23c110de77aa0d5850cfead4ebcb739f1", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x253b9ef7a350", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x253b9ef7a350", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x253b9ef7a350", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x331581ca792babacf94a241f32157e23c110de77aa0d5850cfead4ebcb739f1" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x54b40b1f852bda00000", - "0x0", - "0x1", - "0x26db992a3b180000", - "0x0", - "0x4a9b6384488000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0xde0b6b3a76400000", - "0x0", - "0x6a94d74f430000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1bfa45519b30000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x84231b97924ea600000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x101925daa374000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x54b40b1f852bda00000", - "0x0", - "0x1", - "0x26db992a3b180000", - "0x0", - "0x4a9b6384488000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0xde0b6b3a76400000", - "0x0", - "0x6a94d74f430000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1bfa45519b30000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x84231b97924ea600000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x101925daa374000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x54b40b1f852bda00000", - "0x0", - "0x1", - "0x26db992a3b180000", - "0x0", - "0x4a9b6384488000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0xde0b6b3a76400000", - "0x0", - "0x6a94d74f430000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1bfa45519b30000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x84231b97924ea600000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x101925daa374000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x54b40b1f852bda00000", - "0x0", - "0x1", - "0x26db992a3b180000", - "0x0", - "0x4a9b6384488000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0xde0b6b3a76400000", - "0x0", - "0x6a94d74f430000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1bfa45519b30000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x84231b97924ea600000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x101925daa374000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x54b40b1f852bda00000", - "0x0", - "0x1", - "0x26db992a3b180000", - "0x0", - "0x4a9b6384488000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x54b40b1f852bda00000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0xe54b2a292b8e09bd4db74b674200d52f132ae83febb6dfbcc8c1d91bce5801" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0xe54b2a292b8e09bd4db74b674200d52f132ae83febb6dfbcc8c1d91bce5801", - "0x4a9b6384488000", - "0x0", - "0x26db992a3b180000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x19" - ], - "calls": [ - { - "contract_address": "0xe54b2a292b8e09bd4db74b674200d52f132ae83febb6dfbcc8c1d91bce5801", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x19", - "0xe54b2a292b8e09bd4db74b674200d52f132ae83febb6dfbcc8c1d91bce5801", - "0x4a9b6384488000", - "0x0", - "0x26db992a3b180000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x19", - "0xe54b2a292b8e09bd4db74b674200d52f132ae83febb6dfbcc8c1d91bce5801", - "0x4a9b6384488000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0xde0b6b3a76400000", - "0x0", - "0x6a94d74f430000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x581767ba6189c400000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x66424d01002ec2c21fbc67da1ef7917c31aa4cf43c472f6ee19e7bc97d6a87b" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x66424d01002ec2c21fbc67da1ef7917c31aa4cf43c472f6ee19e7bc97d6a87b", - "0x6a94d74f430000", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x36" - ], - "calls": [ - { - "contract_address": "0x66424d01002ec2c21fbc67da1ef7917c31aa4cf43c472f6ee19e7bc97d6a87b", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x36", - "0x66424d01002ec2c21fbc67da1ef7917c31aa4cf43c472f6ee19e7bc97d6a87b", - "0x6a94d74f430000", - "0x0", - "0xde0b6b3a76400000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x36", - "0x66424d01002ec2c21fbc67da1ef7917c31aa4cf43c472f6ee19e7bc97d6a87b", - "0x6a94d74f430000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x1bfa45519b30000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5", - "0x1bfa45519b30000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x5b" - ], - "calls": [ - { - "contract_address": "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x5b", - "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5", - "0x1bfa45519b30000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x5b", - "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5", - "0x1bfa45519b30000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x84231b97924ea600000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x101925daa374000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x84231b97924ea600000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x3bf35575f05dce8773c5a694b0a8a961cebd0d0ea069e4d848c8598a03eef43" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x3bf35575f05dce8773c5a694b0a8a961cebd0d0ea069e4d848c8598a03eef43", - "0x101925daa374000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4d" - ], - "calls": [ - { - "contract_address": "0x3bf35575f05dce8773c5a694b0a8a961cebd0d0ea069e4d848c8598a03eef43", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x4d", - "0x3bf35575f05dce8773c5a694b0a8a961cebd0d0ea069e4d848c8598a03eef43", - "0x101925daa374000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x4d", - "0x3bf35575f05dce8773c5a694b0a8a961cebd0d0ea069e4d848c8598a03eef43", - "0x101925daa374000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x591a146110254940f8767f3e67de87d958ae0b5af21f201f77b2a78ab46751f", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x591a146110254940f8767f3e67de87d958ae0b5af21f201f77b2a78ab46751f" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "0x24707f0ebe4d449ae0d3890da5bfd14d7af11e8309d8b27b2af7ee93dcd3020", - "0x0", - "0x119", - "0x119", - "0x28", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376", - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15", - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0" - ], - "caller_address": "0x0", - "class_hash": "0x808396477a4296946bf6574afb2e14723f8d9a37bba25a1e104315ca89b1f7", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "0x24707f0ebe4d449ae0d3890da5bfd14d7af11e8309d8b27b2af7ee93dcd3020", - "0x0", - "0x119", - "0x119", - "0x28", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376", - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15", - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0" - ], - "caller_address": "0x0", - "class_hash": "0x808396477a4296946bf6574afb2e14723f8d9a37bba25a1e104315ca89b1f7", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x0" - ], - "calls": [ - { - "contract_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "entry_point_selector": "0x24707f0ebe4d449ae0d3890da5bfd14d7af11e8309d8b27b2af7ee93dcd3020", - "calldata": [ - "0x28", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376", - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15", - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0" - ], - "caller_address": "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4", - "class_hash": "0x639a9186c8d9daa7c44186e7cf987cc458a46965e2658d27020554f9671677b", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "entry_point_selector": "0x24707f0ebe4d449ae0d3890da5bfd14d7af11e8309d8b27b2af7ee93dcd3020", - "calldata": [ - "0x28", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c", - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376", - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15", - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d", - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466", - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc", - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb", - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0" - ], - "caller_address": "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4", - "class_hash": "0x7a65fee06e3fd15ab961e68f5f868ab6ddaf01b16876886a9098cda64f0dce", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4259424954" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4259424954" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4259424954" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4259424954" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4f4b58" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4259424954" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4259424954" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4259424954" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x454d5049524943" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x5cb0afa98435de7da6da7fad3b40c9d17e747a57bca28feb1c41f05e391f54e", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x454d5049524943", - "0x4259424954" - ], - "caller_address": "0x446812bac98c08190dee8967180f4e3cdcd1db9373ca269904acb17f67f7093", - "class_hash": "0xad4deb95c1cdc16e5ff52394a21b4deb05a36b12741de68b63f21dec3e4668", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26157e97180", - "0x18a2bb50c00", - "0x105" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x2615750db00", - "0x18a4fc19000", - "0x5d" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26509d66d00", - "0x18adff3a000", - "0x185" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f55534454", - "0x26dda782e00", - "0x18cb4965400", - "0x10f" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x26ff3dd6c0", - "0x18a2bb50c00", - "0xc38" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x270dc8fbc0", - "0x18a4fc19000", - "0x376" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x271f9b5c80", - "0x18adff3a000", - "0x1d15" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21564", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f55534454", - "0x2789587400", - "0x18cb4965400", - "0x9a3" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26186ffe300", - "0x18a2bb50c00", - "0x2d" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21562", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x262874cae00", - "0x18a4fc19000", - "0x1c" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x264874dad80", - "0x18adff3a000", - "0x207" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4254432f555344", - "0x26c7f920700", - "0x18cb4965400", - "0x108" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x270bff3840", - "0x18a2bb50c00", - "0x5d6" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2712cab8c0", - "0x18a4fc19000", - "0x466" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21566", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x271b5ffcc0", - "0x18adff3a000", - "0x2bbc" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21565", - "0x4f4b58", - "0x454d5049524943", - "0x4554482f555344", - "0x2787f98040", - "0x18cb4965400", - "0x7c5" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f55534454", - "0x26122448880", - "0x0", - "0xd0f9" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f55534454", - "0x26fe86bbc0", - "0x0", - "0x41f73" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4254432f555344", - "0x2613092a480", - "0x0", - "0x85225cb" - ] - }, - { - "keys": [ - "0x3cba4bf3c7927a18934ab2c6b812a768d586eb481cef0b0ff1534b85613dadc" - ], - "data": [ - "0x64e21563", - "0x4259424954", - "0x454d5049524943", - "0x4554482f555344", - "0x26f984fec0", - "0x0", - "0x271c4f0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x1b7c5ffbf268", - "0x0" - ], - "caller_address": "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x1b7c5ffbf268", - "0x0" - ], - "caller_address": "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x121108c052bbd5b273223043ad58a7e51c55ef454f3e02b0a0b4c559a925d4", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x1b7c5ffbf268", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x47ddcd57dbe76c53791d369e4622694a6432688af3c8a2cb491b070784c980d" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x62417d8af6a38200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x278620e92050000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0x1ff973cafa8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x62417d8af6a38200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x278620e92050000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0x1ff973cafa8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x62417d8af6a38200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x278620e92050000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0x1ff973cafa8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x62417d8af6a38200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x278620e92050000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0x1ff973cafa8000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x62417d8af6a38200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x278620e92050000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x62417d8af6a38200000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x21f3dd6e40b2ffdeac6ab525aa4f3b76f8830b35ee2f19fbda3826aff1c838" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x21f3dd6e40b2ffdeac6ab525aa4f3b76f8830b35ee2f19fbda3826aff1c838", - "0x278620e92050000", - "0x0", - "0xde0b6b3a7640000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x43" - ], - "calls": [ - { - "contract_address": "0x21f3dd6e40b2ffdeac6ab525aa4f3b76f8830b35ee2f19fbda3826aff1c838", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x43", - "0x21f3dd6e40b2ffdeac6ab525aa4f3b76f8830b35ee2f19fbda3826aff1c838", - "0x278620e92050000", - "0x0", - "0xde0b6b3a7640000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x43", - "0x21f3dd6e40b2ffdeac6ab525aa4f3b76f8830b35ee2f19fbda3826aff1c838", - "0x278620e92050000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1", - "0xde0b6b3a7640000", - "0x0", - "0x58d15e17628000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x472698b413b43200000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56", - "0x58d15e17628000", - "0x0", - "0xde0b6b3a7640000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x3b" - ], - "calls": [ - { - "contract_address": "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x3b", - "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56", - "0x58d15e17628000", - "0x0", - "0xde0b6b3a7640000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x3b", - "0x394e5d4ce50b1f3345612d95cbb200a5ab5d6ceefdebdc3c5a99f9945a2ee56", - "0x58d15e17628000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0x1ff973cafa8000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e31980", - "0x5b7ac4553de7ae00000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x11aeebded9af8c2799ce8643e39fbb17edc40c8ce9b5732a80863cbe154df49" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x11aeebded9af8c2799ce8643e39fbb17edc40c8ce9b5732a80863cbe154df49", - "0x1ff973cafa8000", - "0x0", - "0xde0b6b3a76400000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x3c" - ], - "calls": [ - { - "contract_address": "0x11aeebded9af8c2799ce8643e39fbb17edc40c8ce9b5732a80863cbe154df49", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x3c", - "0x11aeebded9af8c2799ce8643e39fbb17edc40c8ce9b5732a80863cbe154df49", - "0x1ff973cafa8000", - "0x0", - "0xde0b6b3a76400000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x3c", - "0x11aeebded9af8c2799ce8643e39fbb17edc40c8ce9b5732a80863cbe154df49", - "0x1ff973cafa8000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x18fae27693b4000", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x54b40b1f852bda00000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x33a" - ], - "calls": [ - { - "contract_address": "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x33a", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x33a", - "0x40d05bdd792a1fd1abad3d6abe074e903119431ce7e6d4a299b71a6bb68f4a5", - "0x18fae27693b4000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x720989ee8a8ad3c0a600788500255305eb41a411995a91717bf32b6107791e5", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ], - "caller_address": "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x24cc121dacb29dbba2fc1775f4784df7c22b52766478a0b41ee6ca7191a5404", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x720989ee8a8ad3c0a600788500255305eb41a411995a91717bf32b6107791e5" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x11164759ffb320000", - "0x0", - "0xf46d3c488c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x2bda9341f23c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x6124fee993bc0000", - "0x0", - "0x1c331d3be798000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1", - "0x1bc16d674ec80000", - "0x0", - "0xbc4b381d188000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x11164759ffb320000", - "0x0", - "0xf46d3c488c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x2bda9341f23c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x6124fee993bc0000", - "0x0", - "0x1c331d3be798000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1", - "0x1bc16d674ec80000", - "0x0", - "0xbc4b381d188000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x11164759ffb320000", - "0x0", - "0xf46d3c488c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x2bda9341f23c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x6124fee993bc0000", - "0x0", - "0x1c331d3be798000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1", - "0x1bc16d674ec80000", - "0x0", - "0xbc4b381d188000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x11164759ffb320000", - "0x0", - "0xf46d3c488c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x2bda9341f23c000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x6124fee993bc0000", - "0x0", - "0x1c331d3be798000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1", - "0x1bc16d674ec80000", - "0x0", - "0xbc4b381d188000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x405fdf7e5af85e00000", - "0x0", - "0x1", - "0x11164759ffb320000", - "0x0", - "0xf46d3c488c000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x65168400", - "0x405fdf7e5af85e00000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x7de7e82130d2ffedf180b2df6c3ef418bafe5666cf72137449d8a7f96b14404" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x7de7e82130d2ffedf180b2df6c3ef418bafe5666cf72137449d8a7f96b14404", - "0xf46d3c488c000", - "0x0", - "0x11164759ffb320000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x30" - ], - "calls": [ - { - "contract_address": "0x7de7e82130d2ffedf180b2df6c3ef418bafe5666cf72137449d8a7f96b14404", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x30", - "0x7de7e82130d2ffedf180b2df6c3ef418bafe5666cf72137449d8a7f96b14404", - "0xf46d3c488c000", - "0x0", - "0x11164759ffb320000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x30", - "0x7de7e82130d2ffedf180b2df6c3ef418bafe5666cf72137449d8a7f96b14404", - "0xf46d3c488c000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5ede20f01a459800000", - "0x0", - "0x1", - "0x4563918244f40000", - "0x0", - "0x2bda9341f23c000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x667e6d80", - "0x5ede20f01a459800000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x7209fbf58312c0a39cb58da08d047489399428e8d2a15ae9340141655be1560" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x7209fbf58312c0a39cb58da08d047489399428e8d2a15ae9340141655be1560", - "0x2bda9341f23c000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x47" - ], - "calls": [ - { - "contract_address": "0x7209fbf58312c0a39cb58da08d047489399428e8d2a15ae9340141655be1560", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x47", - "0x7209fbf58312c0a39cb58da08d047489399428e8d2a15ae9340141655be1560", - "0x2bda9341f23c000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x47", - "0x7209fbf58312c0a39cb58da08d047489399428e8d2a15ae9340141655be1560", - "0x2bda9341f23c000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1", - "0x6124fee993bc0000", - "0x0", - "0x1c331d3be798000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x581767ba6189c400000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5", - "0x1c331d3be798000", - "0x0", - "0x6124fee993bc0000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x5c" - ], - "calls": [ - { - "contract_address": "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x5c", - "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5", - "0x1c331d3be798000", - "0x0", - "0x6124fee993bc0000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x5c", - "0x584cbcbe0a9b581bfc6d8cb55331a26db679bb9a1603e162f2cdefc6abf39c5", - "0x1c331d3be798000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1", - "0x1bc16d674ec80000", - "0x0", - "0xbc4b381d188000", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64e85f80", - "0x5b7ac4553de7ae00000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x510d34a5fed0369309f3f565e69ee783b07ca989f6fd9ab4d8072a47b3c4dad" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x510d34a5fed0369309f3f565e69ee783b07ca989f6fd9ab4d8072a47b3c4dad", - "0xbc4b381d188000", - "0x0", - "0x1bc16d674ec80000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x59" - ], - "calls": [ - { - "contract_address": "0x510d34a5fed0369309f3f565e69ee783b07ca989f6fd9ab4d8072a47b3c4dad", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x59", - "0x510d34a5fed0369309f3f565e69ee783b07ca989f6fd9ab4d8072a47b3c4dad", - "0xbc4b381d188000", - "0x0", - "0x1bc16d674ec80000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x59", - "0x510d34a5fed0369309f3f565e69ee783b07ca989f6fd9ab4d8072a47b3c4dad", - "0xbc4b381d188000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x69537f813f37f2952138442ee5b77b28a4f54a760d262ed2d27bbb7ec9708cd", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ], - "caller_address": "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x8b4b957e686a122950f23da1bbd3f9297bc8543710bbd243d2623bc3f8c141", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x2780c4297150", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x69537f813f37f2952138442ee5b77b28a4f54a760d262ed2d27bbb7ec9708cd" - }, - { - "trace_root": { - "validate_invocation": { - "contract_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x5d2c72a2ac16a300000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0x14fbb3fd3464000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x4c3ba39c5e411100000", - "0x0", - "0x1", - "0x53444835ec580000", - "0x0", - "0xe90eda3944000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x581767ba6189c400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x7c585087238000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5ede20f01a459800000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1b16e5a86990000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x5d2c72a2ac16a300000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0x14fbb3fd3464000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x4c3ba39c5e411100000", - "0x0", - "0x1", - "0x53444835ec580000", - "0x0", - "0xe90eda3944000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x581767ba6189c400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x7c585087238000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5ede20f01a459800000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1b16e5a86990000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x5d2c72a2ac16a300000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0x14fbb3fd3464000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x4c3ba39c5e411100000", - "0x0", - "0x1", - "0x53444835ec580000", - "0x0", - "0xe90eda3944000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x581767ba6189c400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x7c585087238000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5ede20f01a459800000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1b16e5a86990000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x4", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x0", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0xa", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x14", - "0xa", - "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "0x1e", - "0xa", - "0x28", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x5d2c72a2ac16a300000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0x14fbb3fd3464000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x4c3ba39c5e411100000", - "0x0", - "0x1", - "0x53444835ec580000", - "0x0", - "0xe90eda3944000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x581767ba6189c400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x7c585087238000", - "0x0", - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5ede20f01a459800000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1b16e5a86990000", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x5d2c72a2ac16a300000", - "0x0", - "0x1", - "0x16345785d8a0000", - "0x0", - "0x14fbb3fd3464000", - "0x0" - ], - "caller_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x5d2c72a2ac16a300000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4ca57e74f02f1ec8aa5c360a69e1ece1bae014d22ad455dfbb60a0d2415bdd3" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x4ca57e74f02f1ec8aa5c360a69e1ece1bae014d22ad455dfbb60a0d2415bdd3", - "0x14fbb3fd3464000", - "0x0", - "0x16345785d8a0000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1eb" - ], - "calls": [ - { - "contract_address": "0x4ca57e74f02f1ec8aa5c360a69e1ece1bae014d22ad455dfbb60a0d2415bdd3", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x1eb", - "0x4ca57e74f02f1ec8aa5c360a69e1ece1bae014d22ad455dfbb60a0d2415bdd3", - "0x14fbb3fd3464000", - "0x0", - "0x16345785d8a0000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x1eb", - "0x4ca57e74f02f1ec8aa5c360a69e1ece1bae014d22ad455dfbb60a0d2415bdd3", - "0x14fbb3fd3464000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x4c3ba39c5e411100000", - "0x0", - "0x1", - "0x53444835ec580000", - "0x0", - "0xe90eda3944000", - "0x0" - ], - "caller_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64f19a00", - "0x4c3ba39c5e411100000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x17d4d460668a7cb6732eab54a279db2a69bd383ef322c434d7b94019c1b88b1" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x17d4d460668a7cb6732eab54a279db2a69bd383ef322c434d7b94019c1b88b1", - "0xe90eda3944000", - "0x0", - "0x53444835ec580000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37" - ], - "calls": [ - { - "contract_address": "0x17d4d460668a7cb6732eab54a279db2a69bd383ef322c434d7b94019c1b88b1", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x37", - "0x17d4d460668a7cb6732eab54a279db2a69bd383ef322c434d7b94019c1b88b1", - "0xe90eda3944000", - "0x0", - "0x53444835ec580000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x37", - "0x17d4d460668a7cb6732eab54a279db2a69bd383ef322c434d7b94019c1b88b1", - "0xe90eda3944000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x581767ba6189c400000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x7c585087238000", - "0x0" - ], - "caller_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x64fad480", - "0x581767ba6189c400000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x3e1b6badeb8fcb9e0281d81ac6215431bbb36f39bfe394129be08c45de3219c" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x3e1b6badeb8fcb9e0281d81ac6215431bbb36f39bfe394129be08c45de3219c", - "0x7c585087238000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1a" - ], - "calls": [ - { - "contract_address": "0x3e1b6badeb8fcb9e0281d81ac6215431bbb36f39bfe394129be08c45de3219c", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x1a", - "0x3e1b6badeb8fcb9e0281d81ac6215431bbb36f39bfe394129be08c45de3219c", - "0x7c585087238000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x1a", - "0x3e1b6badeb8fcb9e0281d81ac6215431bbb36f39bfe394129be08c45de3219c", - "0x7c585087238000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - { - "contract_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "entry_point_selector": "0x228b70e310d4c999bf43872e1e739cf5bc4eb7d78456cc91815540ba186ccc5", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5ede20f01a459800000", - "0x0", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1b16e5a86990000", - "0x0" - ], - "caller_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "class_hash": "0x22ca1f317987a1fc26172430b74f76f9a5d7d9a34467d3d955dfcd92653b14c", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x44762c13593f4aab1e5e8a021bb2ecc8392238fab96c414d4f13525e5e2a09f", - "entry_point_selector": "0x11dd528db174d6312644720bceeb9307ba53f6e2937246ac73d5fb30603016", - "calldata": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "0x43da6a8015704847b9824351e96c93a36ef18cc2482d05580f330d006ff91a2", - "0x66067500", - "0x5ede20f01a459800000", - "0x0", - "0x0" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x1a6416439d52e67285e4eb2eb51e6b702761b0d86e6637f9ef0929e97434f3f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x2d7a903d1669cfdf8ba208de3e0a980d6d89b5c8bc759ac3306b94be23c9fcc" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "entry_point_selector": "0x205cf5d458bab54198b81578273c8ad7af38e581ac763751e83c1439fdb28b1", - "calldata": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x2d7a903d1669cfdf8ba208de3e0a980d6d89b5c8bc759ac3306b94be23c9fcc", - "0x1b16e5a86990000", - "0x0", - "0x4563918244f40000", - "0x0", - "0x1" - ], - "caller_address": "0x370f2bcbee32a4af36fb3acc7e5b385cda66529063719262e64c21841a907ff", - "class_hash": "0x40645e290fefba7e3cb6e112a2c25881f297944614e1b273b010bfc504290fb", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4a" - ], - "calls": [ - { - "contract_address": "0x2d7a903d1669cfdf8ba208de3e0a980d6d89b5c8bc759ac3306b94be23c9fcc", - "entry_point_selector": "0x1df55a3b6a1d2abd763d45b4030db26c72c06460c242249cf946fdf9f1622a", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x3b47f3ee9ba20ddd18370eb2c8d989d2a4134092cc5baf077b349bb6b82c384", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a" - ], - "calls": [], - "events": [], - "messages": [] - }, - { - "contract_address": "0x470cd80f799919de43a0bdab1f1e1781f46dc0ce2b43f24863ad6abe142687a", - "entry_point_selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9", - "calldata": [], - "caller_address": "0x711d8fa4b2c6175d4989c7a185251f28591a6b7d62776488495ff82636e228a", - "class_hash": "0x7ab44bee2f0b93446499c96c6eca3911196f042b07777bb6dfd3bf216ffcb16", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x12" - ], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x427a14e41141e7a2bbb2630701b83d9c51827c934e3b0b7cf4bcfa98e03e5c" - ], - "data": [ - "0x4a", - "0x2d7a903d1669cfdf8ba208de3e0a980d6d89b5c8bc759ac3306b94be23c9fcc", - "0x1b16e5a86990000", - "0x0", - "0x4563918244f40000", - "0x0" - ] - }, - { - "keys": [ - "0x23cf4e7e1644ae3631c2663dbb9dd46a0b7eef0b1d9a5e72e71f44aa944682c" - ], - "data": [ - "0x4a", - "0x2d7a903d1669cfdf8ba208de3e0a980d6d89b5c8bc759ac3306b94be23c9fcc", - "0x1b16e5a86990000", - "0x0", - "0x0", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x71ccf84ccb6670a8820d05708055752ee52d52c2c091e4aadff1fcd5aaf5af9", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x289dfbda3198", - "0x0" - ], - "caller_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x289dfbda3198", - "0x0" - ], - "caller_address": "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x5770e91782c4529921fb7ca8493a19ffc63d68e5a287892f13971ca25975b8e", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x289dfbda3198", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - }, - "transaction_hash": "0x71ccf84ccb6670a8820d05708055752ee52d52c2c091e4aadff1fcd5aaf5af9" - } - ], - "id": 1 -} \ No newline at end of file diff --git a/rpc/tests/trace/0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e.json b/rpc/tests/trace/0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e.json deleted file mode 100644 index d27a3588..00000000 --- a/rpc/tests/trace/0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e.json +++ /dev/null @@ -1,245 +0,0 @@ -{ - "jsonrpc": "2.0", - "result": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", - "0x2", - "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "0x29a82e0d28fd72bfbafa6bb5cdffd9cdb00bf2145f0542d2de771fe640b49ba" - ], - "caller_address": "0x0", - "class_hash": "0x55c0c1e3c04fb72c602d62e1c9d2c07bf2932cb8cb0d72f210fa259272a1e21", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 675, - "memory_holes": 41, - "range_check_builtin_applications": 22, - "ec_op_builtin_applications": 3 - } - }, - "execute_invocation": { - "contract_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", - "0x2", - "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "0x29a82e0d28fd72bfbafa6bb5cdffd9cdb00bf2145f0542d2de771fe640b49ba" - ], - "caller_address": "0x0", - "class_hash": "0x55c0c1e3c04fb72c602d62e1c9d2c07bf2932cb8cb0d72f210fa259272a1e21", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x0" - ], - "calls": [ - { - "contract_address": "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "entry_point_selector": "0x19a35a6e95cb7a3318dbb244f20975a1cd8587cc6b5259f15f61d7beb7ee43b", - "calldata": [ - "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "0x29a82e0d28fd72bfbafa6bb5cdffd9cdb00bf2145f0542d2de771fe640b49ba" - ], - "caller_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "class_hash": "0x3ae2f9b340e70e3c6ae2101715ccde645f3766283bd3bfade4b5ce7cd7dc9c6", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "entry_point_selector": "0x3d7905601c217734671143d457f0db37f7f8883112abd34b92c4abfeafde0c3", - "calldata": [ - "0x29a82e0d28fd72bfbafa6bb5cdffd9cdb00bf2145f0542d2de771fe640b49ba", - "0x7e5" - ], - "caller_address": "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "class_hash": "0x3ae2f9b340e70e3c6ae2101715ccde645f3766283bd3bfade4b5ce7cd7dc9c6", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 115, - "range_check_builtin_applications": 1 - } - }, - { - "contract_address": "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "entry_point_selector": "0x26813d396fdb198e9ead934e4f7a592a8b88a059e45ab0eb6ee53494e8d45b0", - "calldata": [ - "0x29a82e0d28fd72bfbafa6bb5cdffd9cdb00bf2145f0542d2de771fe640b49ba" - ], - "caller_address": "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "class_hash": "0x3ae2f9b340e70e3c6ae2101715ccde645f3766283bd3bfade4b5ce7cd7dc9c6", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x7e5" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 119, - "range_check_builtin_applications": 1 - } - } - ], - "events": [], - "messages": [], - "execution_resources": { - "steps": 2045, - "range_check_builtin_applications": 44 - } - } - ], - "events": [], - "messages": [], - "execution_resources": { - "steps": 3433, - "memory_holes": 11, - "range_check_builtin_applications": 83 - } - }, - "fee_transfer_invocation": { - "contract_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x30df144f446a59", - "0x0" - ], - "caller_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "class_hash": "0x6e7226605869c2bd8cb86a647b451adc0b90e1e4f00b1c45d502dcd2ba6d41e", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", - "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8" - ], - "data": [ - "0x30df144f446a59", - "0x0" - ] - }, - { - "order": 1, - "keys": [ - "0xa9fa878c35cd3d0191318f89033ca3e5501a3d90e21e3cc9256bdd5cd17fdd" - ], - "data": [ - "0xca46d96b37266650e0a8b79938d9300037337cad82ea4f45a921ad68b6a5f9", - "0x477bd3017f2b1cec6", - "0x0", - "0x477ee0f2c41f6391f", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 4876, - "memory_holes": 135, - "pedersen_builtin_applications": 7, - "range_check_builtin_applications": 140, - "bitwise_builtin_applications": 4, - "poseidon_builtin_applications": 3 - } - }, - "state_diff": { - "storage_diffs": [ - { - "address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "storage_entries": [ - { - "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", - "value": "0x477ee0f2c41f6391f" - }, - { - "key": "0x2752ca5adc5b7283939990e78f0c2ad01c3394a4f0029df0de0cdaf8843e326", - "value": "0x2cb7" - }, - { - "key": "0x726c8bbcf545d8f818f9af08edb856c3039ed29ade3ac61ffc0114734c2b265", - "value": "0x65e81e0500000000000000000000000000000477ee0f2c41f6391f" - }, - { - "key": "0x21894759e00509af176c850d579cc207ffe30b1abcb72dd930c819a0244de20", - "value": "0x219c829e117bbd8e9d1" - } - ] - }, - { - "address": "0x3b73e1773ce95172c5f525f29d4d1eb2b407429559bceaa7dec815deb6c0028", - "storage_entries": [ - { - "key": "0x29a82e0d28fd72bfbafa6bb5cdffd9cdb00bf2145f0542d2de771fe640b49ba", - "value": "0x7e5" - } - ] - }, - { - "address": "0x232438a37dc1e45f6cf278b308db7d1868016a5a6a2f6c4d3da746b4d13d891", - "storage_entries": [ - { - "key": "0x29a82e0d28fd72bfbafa6bb5cdffd9cdb00bf2145f0542d2de771fe640b49ba", - "value": "0x7c7" - } - ] - } - ], - "nonces": [ - { - "contract_address": "0x14c5c28581c68f64c9a3d86b919094a5209fe0ccb454f776b3be2c3968cd91d", - "nonce": "0x2aee" - } - ], - "deployed_contracts": [], - "deprecated_declared_classes": [], - "declared_classes": [], - "replaced_classes": [] - }, - "execution_resources": { - "steps": 8984, - "memory_holes": 187, - "pedersen_builtin_applications": 7, - "range_check_builtin_applications": 245, - "bitwise_builtin_applications": 4, - "ec_op_builtin_applications": 3, - "poseidon_builtin_applications": 3, - "data_availability": { - "l1_gas": 21, - "l1_data_gas": 384 - } - } - }, - "id": 1 -} \ No newline at end of file diff --git a/rpc/tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json b/rpc/tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json new file mode 100644 index 00000000..0baafbc8 --- /dev/null +++ b/rpc/tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json @@ -0,0 +1,10144 @@ +{ + "jsonrpc": "2.0", + "result": [ + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x2b", + "0x6", + "0x0", + "0x66bae3a7", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 3255, + "memory_holes": 768, + "range_check_builtin_applications": 65, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x2b", + "0x6", + "0x0", + "0x66bae3a7", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0x6", + "0x0", + "0x66bae3a7", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x454b55424f" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6079, + "memory_holes": 64, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 185 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 63779, + "memory_holes": 3068, + "pedersen_builtin_applications": 360, + "range_check_builtin_applications": 2024, + "bitwise_builtin_applications": 18 + } + } + ], + "events": [ + { + "order": 6, + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x23f6c7b23412cd66f493dc2d9e76483e23d02782d6558ef40459c6e96f4f350" + ], + "data": [ + "0x1", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 67747, + "memory_holes": 3075, + "pedersen_builtin_applications": 360, + "range_check_builtin_applications": 2101, + "bitwise_builtin_applications": 18 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x349441b59790", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x349441b59790", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x678964bc451f6096b5161ad239a1d6c49bb3405f5069ed8e84e2f10781728d6", + "value": "0x5484b8000000000000000000000000066bae3a7" + }, + { + "key": "0x680131c5e053c3144514aa641c32c25670cf87073f54285de1adb38f88eacd9", + "value": "0x5e31c50000000000000000000000000066bae3a7" + }, + { + "key": "0x353a8471031e468050a4fdc2e6fed90ecf09a6d3183749b63412a7d246593e3", + "value": "0xaba9500000000000000000000000000066bae3a7" + }, + { + "key": "0x142b698dd5e2c66e5228f779c73e335b082e5d244269207b9305815e8274bbe", + "value": "0xabb339a000000000000000000000000066bae3a7" + }, + { + "key": "0x4f9d4d8d73d1b93cc7e5dc52ed35a76a1f1d2b7d3f63faff7fa2e7435d7248c", + "value": "0x1595e10000000000000000000000000066bae3a7" + }, + { + "key": "0x32458b65a2f0b1a025a62db5957a6caf050ff13e74827eabbb37bcf288add87", + "value": "0x159229b000000000000000000000000066bae3a7" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", + "value": "0x89857bf189589417" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeed08e8fb0ef518" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "nonce": "0x373dc" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 72180, + "memory_holes": 3866, + "pedersen_builtin_applications": 364, + "range_check_builtin_applications": 2203, + "bitwise_builtin_applications": 18, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 9264, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x23f6c7b23412cd66f493dc2d9e76483e23d02782d6558ef40459c6e96f4f350" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x63", + "0xe", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5623d637a61", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3deeaf8160", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5621ab65de0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec756a85e3", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ee1de", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f368d1", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4333", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262f747", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x1596632", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3ab", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3ded26f3f8", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5446, + "memory_holes": 62, + "range_check_builtin_applications": 117, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x63", + "0xe", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5623d637a61", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3deeaf8160", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5621ab65de0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec756a85e3", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ee1de", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f368d1", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4333", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262f747", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x1596632", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3ab", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3ded26f3f8", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0xe", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5623d637a61", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3deeaf8160", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5621ab65de0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec756a85e3", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ee1de", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f368d1", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4333", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262f747", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x1596632", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3ab", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3ded26f3f8", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5623d637a61", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3deeaf8160", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5621ab65de0", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec756a85e3", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ee1de", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "order": 7, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e4", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 8, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f368d1", + "0x554e492f555344", + "0x0" + ] + }, + { + "order": 9, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 10, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4333", + "0x555344542f555344", + "0x0" + ] + }, + { + "order": 11, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262f747", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 12, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x1596632", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 13, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ab", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3ded26f3f8", + "0x53544554482f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 73681, + "memory_holes": 6440, + "pedersen_builtin_applications": 308, + "range_check_builtin_applications": 2441, + "bitwise_builtin_applications": 42 + } + } + ], + "events": [], + "messages": [], + "execution_resources": { + "steps": 79936, + "memory_holes": 6443, + "pedersen_builtin_applications": 308, + "range_check_builtin_applications": 2570, + "bitwise_builtin_applications": 42 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x66f34f78a4c1", + "0x0" + ], + "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x66f34f78a4c1", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x5c8f047efa25ed6202a9d6af9b64f2a7fb47111040b16dce8362e0ea20809e0", + "value": "0x262f747000000000000000000000000066bae3aa" + }, + { + "key": "0x1b3f3d264a9c63c581333d4b97c556b6f20f9a1abf64c7f71e04b35df62cc70", + "value": "0xf4333000000000000000000000000066bae3aa" + }, + { + "key": "0x7b4de97b546ed17a0d490dab334867e9383e029411c268a8902768b6da6a2eb", + "value": "0x5f5b6c7000000000000000000000000066bae3a9" + }, + { + "key": "0x437f038e1991939def57775a3405a3b6f0c0830f09d0e6cfc309393950fa773", + "value": "0x48e58ee1de000000000000000000000000066bae3a9" + }, + { + "key": "0x678817f315f1e297a5f652fb09285db75338ef9d9c221bbcc07817f2196b988", + "value": "0x1596632000000000000000000000000066bae3aa" + }, + { + "key": "0xb4ee84f18d73fe6a23ce3be0cc905d5e2d3c0897f1f85cbf0e2a4611f2d310", + "value": "0x3ded26f3f8000000000000000000000000066bae3ab" + }, + { + "key": "0x2d04b0419a0e89f6b4dabc3dc19b087e71f0dec9f1785606f00517d3468636b", + "value": "0x5f5ec9d000000000000000000000000066bae3aa" + }, + { + "key": "0x55c3ad197a2fa1dce3a999ae803099406fab085f187b926e7e1f0e38592043d", + "value": "0x4ec756a85e3000000000000000000000000066bae3a9" + }, + { + "key": "0x143dae8bc0e9898f65cb1eb84f16bfb9cb09431972541141677721dd541f055", + "value": "0x5f4e43e000000000000000000000000066bae3aa" + }, + { + "key": "0x8653303a2624a587179380e17d7876d346aea7f02dbd57782950500ea7276e", + "value": "0x5623d637a61000000000000000000000000066bae3a9" + }, + { + "key": "0x56041f8991ff7eff841647cfda1f1cfb9e7321c5a96c53d4a5072497de6b50f", + "value": "0x24f368d1000000000000000000000000066bae3aa" + }, + { + "key": "0x28e86558bd7c5a9c26fceeafb9570eb7b3011db4a9ff813b318f91129935c37", + "value": "0xf41e4000000000000000000000000066bae3aa" + }, + { + "key": "0x6a6414ca66551a2324e436ed37d069f1660ef01bc3fe90497fc729ee60781b8", + "value": "0x3deeaf8160000000000000000000000000066bae3a9" + }, + { + "key": "0x6f64efd140d53af83432093bb6c3d5e8db645bd89feead6dda806955f68ef2a", + "value": "0x5621ab65de0000000000000000000000000066bae3a9" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x7b3303ee433d39925f7c289cd2048052a2d8e2d653bdd7cdfa6a6ab8365445d", + "value": "0x71cdd8f5a17dd69e" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeed6fdc4a8799d9" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "nonce": "0x2b024" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 86560, + "memory_holes": 6528, + "pedersen_builtin_applications": 312, + "range_check_builtin_applications": 2724, + "bitwise_builtin_applications": 42, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 18139, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x28796e7da8b36f06cb0f6bcc957cc711e147cb8695ff9de8ca3c883a84200a0" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x32", + "0x7", + "0x0", + "0x66bae3b1", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5d98bf2", + "0x4c5553442f555344", + "0xa4479", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 3584, + "memory_holes": 768, + "range_check_builtin_applications": 72, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x32", + "0x7", + "0x0", + "0x66bae3b1", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5d98bf2", + "0x4c5553442f555344", + "0xa4479", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0x7", + "0x0", + "0x66bae3b1", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5d98bf2", + "0x4c5553442f555344", + "0xa4479", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x454b55424f" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6079, + "memory_holes": 64, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 185 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b1", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b1", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5d98bf2", + "0x4c5553442f555344", + "0xa4479" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b0", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b0", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 73880, + "memory_holes": 3567, + "pedersen_builtin_applications": 420, + "range_check_builtin_applications": 2342, + "bitwise_builtin_applications": 21 + } + } + ], + "events": [ + { + "order": 7, + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x2843f035b68b733e4b36c40af5db144b8a7eec51b2311e18014afc4a82564d2" + ], + "data": [ + "0x1", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 78177, + "memory_holes": 3574, + "pedersen_builtin_applications": 420, + "range_check_builtin_applications": 2426, + "bitwise_builtin_applications": 21 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x3b0102fef594", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x3b0102fef594", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x3f5387c1b7249455a72c9a51b7d9414bc2e9b695bc4c6758cfaf975eaaffc65", + "value": "0x5d98bf200000000000000000000a447966bae3b0" + }, + { + "key": "0x32458b65a2f0b1a025a62db5957a6caf050ff13e74827eabbb37bcf288add87", + "value": "0x159229b000000000000000000000000066bae3b1" + }, + { + "key": "0x4f9d4d8d73d1b93cc7e5dc52ed35a76a1f1d2b7d3f63faff7fa2e7435d7248c", + "value": "0x1595e10000000000000000000000000066bae3b1" + }, + { + "key": "0x353a8471031e468050a4fdc2e6fed90ecf09a6d3183749b63412a7d246593e3", + "value": "0xaba9500000000000000000000000000066bae3b1" + }, + { + "key": "0x680131c5e053c3144514aa641c32c25670cf87073f54285de1adb38f88eacd9", + "value": "0x5e31c50000000000000000000000000066bae3b1" + }, + { + "key": "0x678964bc451f6096b5161ad239a1d6c49bb3405f5069ed8e84e2f10781728d6", + "value": "0x5484b8000000000000000000000000066bae3b0" + }, + { + "key": "0x142b698dd5e2c66e5228f779c73e335b082e5d244269207b9305815e8274bbe", + "value": "0xabb339a000000000000000000000000066bae3b0" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", + "value": "0x898540f086599e83" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeedaadd4d868f6d" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "nonce": "0x373dd" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 82939, + "memory_holes": 4365, + "pedersen_builtin_applications": 424, + "range_check_builtin_applications": 2535, + "bitwise_builtin_applications": 21, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 10396, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x2843f035b68b733e4b36c40af5db144b8a7eec51b2311e18014afc4a82564d2" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x119", + "0x28", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3ddf4758c0", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x3d5308775f", + "0x53544554482f555344", + "0x8c05", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x3de1452eaa", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5fcbed0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f657d6", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x6351231", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5f442f0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f4eced", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5f56214", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x562080cf200", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56196cd3f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x560a3424f25", + "0x4254432f555344", + "0x26f24", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x560c0c8f5e4", + "0x4254432f555344", + "0xf634147", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5617e5d2480", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560d24dcfa8", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x560d0936d8d", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae387", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x4254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x4ec5bdcf400", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x4e9248b4cc0", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x4ecc6662f26", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x4ec3016787f", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0xf4001", + "0x555344432f555344", + "0x49994", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0xf3f07", + "0x555344432f555344", + "0x21399e", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0xf4114", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x7f", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5e05d30", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f41154", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x5f01ecb", + "0x4441492f555344", + "0x4c6720", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f49ed2", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5fcbed0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3a8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x488a6c5200", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae391", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x48a7de2980", + "0x5753544554482f555344", + "0x40b2e79", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56202171100", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4b55434f494e", + "0x505241474d41", + "0x56842798d80", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560c14a9fe3", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5608d8a0277", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x55db6b61278", + "0x574254432f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 14441, + "memory_holes": 768, + "range_check_builtin_applications": 303, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x119", + "0x28", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3ddf4758c0", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x3d5308775f", + "0x53544554482f555344", + "0x8c05", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x3de1452eaa", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5fcbed0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f657d6", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x6351231", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5f442f0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f4eced", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5f56214", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x562080cf200", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56196cd3f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x560a3424f25", + "0x4254432f555344", + "0x26f24", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x560c0c8f5e4", + "0x4254432f555344", + "0xf634147", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5617e5d2480", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560d24dcfa8", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x560d0936d8d", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae387", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x4254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x4ec5bdcf400", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x4e9248b4cc0", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x4ecc6662f26", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x4ec3016787f", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0xf4001", + "0x555344432f555344", + "0x49994", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0xf3f07", + "0x555344432f555344", + "0x21399e", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0xf4114", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x7f", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5e05d30", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f41154", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x5f01ecb", + "0x4441492f555344", + "0x4c6720", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f49ed2", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5fcbed0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3a8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x488a6c5200", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae391", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x48a7de2980", + "0x5753544554482f555344", + "0x40b2e79", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56202171100", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4b55434f494e", + "0x505241474d41", + "0x56842798d80", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560c14a9fe3", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5608d8a0277", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x55db6b61278", + "0x574254432f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0x28", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3ddf4758c0", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x3d5308775f", + "0x53544554482f555344", + "0x8c05", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x3de1452eaa", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5fcbed0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f657d6", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x6351231", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5f442f0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f4eced", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5f56214", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x562080cf200", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56196cd3f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x560a3424f25", + "0x4254432f555344", + "0x26f24", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x560c0c8f5e4", + "0x4254432f555344", + "0xf634147", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5617e5d2480", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560d24dcfa8", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x560d0936d8d", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae387", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x4254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x4ec5bdcf400", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x4e9248b4cc0", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x4ecc6662f26", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x4ec3016787f", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0xf4001", + "0x555344432f555344", + "0x49994", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0xf3f07", + "0x555344432f555344", + "0x21399e", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0xf4114", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x7f", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5e05d30", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f41154", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x5f01ecb", + "0x4441492f555344", + "0x4c6720", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f49ed2", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5fcbed0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3a8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x488a6c5200", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae391", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x48a7de2980", + "0x5753544554482f555344", + "0x40b2e79", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56202171100", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4b55434f494e", + "0x505241474d41", + "0x56842798d80", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560c14a9fe3", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5608d8a0277", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x55db6b61278", + "0x574254432f555344", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4f4b58" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5177, + "memory_holes": 42, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 152 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4f4b58" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5177, + "memory_holes": 42, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 152 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x454b55424f" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6079, + "memory_holes": 64, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 185 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3ddf4758c0", + "0x53544554482f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x3d5308775f", + "0x53544554482f555344", + "0x8c05" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x3de1452eaa", + "0x53544554482f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5fcbed0", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f657d6", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x6351231", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5f442f0", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 7, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f4eced", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 8, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5f56214", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 9, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x562080cf200", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 10, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56196cd3f00", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 11, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x560a3424f25", + "0x4254432f555344", + "0x26f24" + ] + }, + { + "order": 12, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x560c0c8f5e4", + "0x4254432f555344", + "0xf634147" + ] + }, + { + "order": 13, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5617e5d2480", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 14, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560d24dcfa8", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 15, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x560d0936d8d", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 16, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae387", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x4254432f555344", + "0xa88031d" + ] + }, + { + "order": 17, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x4ec5bdcf400", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 18, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x4e9248b4cc0", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 19, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x4ecc6662f26", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 20, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x4ec3016787f", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 21, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 22, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0xf4001", + "0x555344432f555344", + "0x49994" + ] + }, + { + "order": 23, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0xf3f07", + "0x555344432f555344", + "0x21399e" + ] + }, + { + "order": 24, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0xf4114", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 25, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x7f" + ] + }, + { + "order": 26, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 27, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5e05d30", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 28, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f41154", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 29, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x5f01ecb", + "0x4441492f555344", + "0x4c6720" + ] + }, + { + "order": 30, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f49ed2", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 31, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5fcbed0", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 32, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 33, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x488a6c5200", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "order": 34, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae391", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x48a7de2980", + "0x5753544554482f555344", + "0x40b2e79" + ] + }, + { + "order": 35, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56202171100", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 36, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4b55434f494e", + "0x505241474d41", + "0x56842798d80", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 37, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560c14a9fe3", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 38, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5608d8a0277", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 39, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x55db6b61278", + "0x574254432f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 400963, + "memory_holes": 19897, + "pedersen_builtin_applications": 2400, + "range_check_builtin_applications": 12602, + "bitwise_builtin_applications": 120 + } + } + ], + "events": [ + { + "order": 40, + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x7d5d8006ef56236bc2e96be861bce28d76c6bf899bcaab4826ad66418fa9232" + ], + "data": [ + "0x1", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 416117, + "memory_holes": 19904, + "pedersen_builtin_applications": 2400, + "range_check_builtin_applications": 12917, + "bitwise_builtin_applications": 120 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x10ef8d9d327ed", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x10ef8d9d327ed", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x7754b2348b2e60dbe87013a742a4023766e09c26ad717eb823b2ea722f81cbc", + "value": "0x5f4eced000000000000000000000000066bae3bb" + }, + { + "key": "0x7555be05447f857763cb59c5b8ed70f8c4bf6d19b72466651fbf2730441434f", + "value": "0xf3f07000000000000000000021399e66bae3b2" + }, + { + "key": "0x4c41e5106825baefa90558d41ab6a81d91e0c0899b274745a592d2e0bfb62c6", + "value": "0x5f56214000000000000000000000000066bae3bb" + }, + { + "key": "0x4492f8245907e2ed6e43b48df8bdcb1e08685473c1d31ae41c18652575dac1", + "value": "0x5fcbed0000000000000000000000000066bae3ba" + }, + { + "key": "0x1cebdb571b27f4fea8ede8f7aa82ee989bec1c5575007e03e02f331ad9bd273", + "value": "0x48a7de298000000000000000000040b2e7966bae391" + }, + { + "key": "0x28cc96d34f67705b366fcbe985cb6cf21102f4a86f661b28ad4b93ca3c04da2", + "value": "0x56202171100000000000000000000000000066bae3ba" + }, + { + "key": "0x2fc0a8893b3ddf518ebc793154784db100730ee0630c6b7c202fc56862aef39", + "value": "0x5f49ed2000000000000000000000000066bae3bb" + }, + { + "key": "0x7033d7d9a7711f0d29f1e47c203fd896f9aac13f46c4ee3fc75e956c6a226b8", + "value": "0xf4001000000000000000000004999466bae3bc" + }, + { + "key": "0x709445d4e16bca1594cdd01b40fc9de94f35064ce5ae3f4f7fe0287f040dca7", + "value": "0x488a6c5200000000000000000000000000066bae3ba" + }, + { + "key": "0x2e909151a1ef3ca2ab4e239be49a3187fd526017d7917ae2b3f65ce7c34b128", + "value": "0x3d5308775f0000000000000000000008c0566bae3b2" + }, + { + "key": "0x3309deb6ada9ac40531872b53d9913a3194d93f8d3faaa4dcff7e2414ab935b", + "value": "0x5f01ecb00000000000000000004c672066bae3b2" + }, + { + "key": "0x1b5bc0e146d8ea7165ec68fda771b2fcceab4a27d579ccec48677813ea38518", + "value": "0x3de1452eaa000000000000000000000000066bae3bb" + }, + { + "key": "0x495891978e3ad0f2abe12ad7db7970a9b52fc4d873516bc87903f48a9315ea8", + "value": "0x560c0c8f5e4000000000000000000f63414766bae3bb" + }, + { + "key": "0x22e21dbc1c3a6968d0bac8ea39fdf87f2ab6f8dc0d095e5c9b2a6a7cf4d9a84", + "value": "0x5617e5d2480000000000000000000000000066bae3ba" + }, + { + "key": "0x681929d9be47dff5f6b0107e8964e871058d76c365311b14b4810053cac64c0", + "value": "0x55edecc5dc0000000000000000000a88031d66bae387" + }, + { + "key": "0x64e55314f5906dbba90c20aa6e46d009f213ad2fc4777af1d0adaae63c4aebd", + "value": "0x5f41154000000000000000000000000066bae3ba" + }, + { + "key": "0x9fb37bc3a972dcca9b8c653ee138815097a5c2382ec9fb3330d02751e2b7c7", + "value": "0x562080cf200000000000000000000000000066bae3b9" + }, + { + "key": "0x5ca5b6289bf69f172b7997d274aad1f6ac9f1b6386055c755373c6fbe9004d6", + "value": "0x5608d8a0277000000000000000000000000066bae3bb" + }, + { + "key": "0x4fb7080f4cefd6e12dfe0b274bf550c0009eaeaa95d4c37dbe4e76c65b68f06", + "value": "0x560d24dcfa8000000000000000000000000066bae3bb" + }, + { + "key": "0x7e0892589fcd9989c4dc4757b36fc4eaac58d5001ef1d5d85c192878919ffec", + "value": "0xf3fcf000000000000000000000000066bae3bb" + }, + { + "key": "0x23dd311416ad34d6bc3e98b66fa90be1a7299a7a504c107d87065ab6bfd7e03", + "value": "0x4ec5bdcf400000000000000000000000000066bae3b9" + }, + { + "key": "0x339d325f215405e9af2b88afffab53bcb2d249ea2a4bb916a4c492945089d4b", + "value": "0x56842798d80000000000000000000000000066bae3bb" + }, + { + "key": "0x6a32a4b37dd40587a64c6d565b2c44cb5bbf6b25bd32f473cd9a36d53deea36", + "value": "0x560d0936d8d000000000000000000000000066bae3bb" + }, + { + "key": "0x24cae1e31d04befb4f59016640bb792129882309edbc3d27c7a98520ab302c8", + "value": "0x66bae3a8" + }, + { + "key": "0x4444fc5993677e9bcde336925ea67baf2ee4526c46bc8c7771208dc8040eb7e", + "value": "0x4e9248b4cc0000000000000000000000000066bae3ba" + }, + { + "key": "0x56842ecacca2d6b00944d6a744e3a5aa7184aba1bbdb98e51bcefbf1a6e6b01", + "value": "0x3ddf4758c0000000000000000000000000066bae3ba" + }, + { + "key": "0x20819e88ebf0a32b6d8cfaa187ef967267f94b60debd9da25d513204a30da40", + "value": "0x5f657d6000000000000000000000000066bae3ba" + }, + { + "key": "0x3d54e60b9c626a6698e8a4d780d7db66389360a41a327521d2f80dd62abb636", + "value": "0x560a3424f250000000000000000000026f2466bae3bc" + }, + { + "key": "0x5c154dd0cedc8da61215147dddc9a0937f7c7559b4c1cba6776662e84d79d89", + "value": "0x6351231000000000000000000000000066bae3bb" + }, + { + "key": "0xb74ce762470904c73c2a792221b6d714bdacab58b371d406239b7864112d16", + "value": "0xf4114000000000000000000000000066bae3ba" + }, + { + "key": "0xed858c85e7601e1cf13182dcd167d454e36e3b585da4b29596510ff68153d0", + "value": "0x4ec3016787f000000000000000000000000066bae3bb" + }, + { + "key": "0x72059902c0ad80f9b2111070eb74badc483d9a0f8160f58389b96235341c167", + "value": "0x4ecc6662f26000000000000000000000000066bae3bb" + }, + { + "key": "0x59eb3739e8a075a7c052cab839a146eaa4ad5a3f96118c32b99c4446c748e64", + "value": "0x560c14a9fe3000000000000000000000000066bae3bb" + }, + { + "key": "0x15029ec472c7fc3e12874531883f36fd7aa41f2692e3c407a1408b812b9799d", + "value": "0x5fcbed0000000000000000000000000066bae3b9" + }, + { + "key": "0x622cba05e94fd763c7ccf83a97ec0e05ce2c2bd647e9878cf3e1bcd9e357856", + "value": "0x55db6b61278000000000000000000000000066bae3ba" + }, + { + "key": "0x3c0adf89ce026db32a6ce6c542734d7d57e03210a1895aab5013aa8667f32ee", + "value": "0x56196cd3f00000000000000000000000000066bae3ba" + }, + { + "key": "0x2b5275e9dd1803a8f68e99a525e8eb2f3f12341af66df7063368fe9a0f5041", + "value": "0xf4236000000000000000000000000066bae3b9" + }, + { + "key": "0x30862a78bb76a8f0a5478ac44513b6294b7a03d663e824f73ab90e51f6e3e57", + "value": "0x5f442f0000000000000000000000000066bae3ba" + }, + { + "key": "0x30608c87a4d0737cb010aab79b1b7453a420bbcc646d713bf87115901777da0", + "value": "0x5e05d30000000000000000000000000066bae3b9" + }, + { + "key": "0x7fb1abb517ddb78b1ed112b07654e63d8a39333fdadf7930030ae938781ae47", + "value": "0xf3fcf000000000000000000000007f66bae3bb" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeeeb9d62759b75a" + }, + { + "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", + "value": "0x898431f7ac867696" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "nonce": "0x373de" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 431736, + "memory_holes": 20695, + "pedersen_builtin_applications": 2404, + "range_check_builtin_applications": 13257, + "bitwise_builtin_applications": 120, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 47743, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x7d5d8006ef56236bc2e96be861bce28d76c6bf899bcaab4826ad66418fa9232" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", + "0x1", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x450f568a8cb6ea1bcce446355e8a1c2e5852a6b8dc3536f495cdceb62e8a7e2", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 550, + "memory_holes": 35, + "range_check_builtin_applications": 22, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", + "0x1", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x450f568a8cb6ea1bcce446355e8a1c2e5852a6b8dc3536f495cdceb62e8a7e2", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x1", + "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4" + ], + "calls": [ + { + "contract_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "entry_point_selector": "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "calldata": [ + "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", + "0x1", + "0x0" + ], + "caller_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4" + ], + "calls": [ + { + "contract_address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", + "entry_point_selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", + "calldata": [], + "caller_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "class_hash": "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "entry_point_type": "CONSTRUCTOR", + "call_type": "CALL", + "result": [], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 231, + "range_check_builtin_applications": 7 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d" + ], + "data": [ + "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", + "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "0x1", + "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "0x0", + "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1588, + "memory_holes": 2, + "pedersen_builtin_applications": 8, + "range_check_builtin_applications": 29 + } + } + ], + "events": [], + "messages": [], + "execution_resources": { + "steps": 2952, + "memory_holes": 33, + "pedersen_builtin_applications": 8, + "range_check_builtin_applications": 68 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x175c6625e77c", + "0x0" + ], + "caller_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x175c6625e77c", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x1f1ab06f2192611d82a43fe635c2c992a74352bdd33cd4723bb5db9157067a6", + "value": "0x7cf83c74ff56fb64" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeeed1328d7f9ed6" + } + ] + }, + { + "address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", + "storage_entries": [ + { + "key": "0x23ec0bb4210edd5cba85afd05127efcd2fc6a781bfed49188da1081670b22d8", + "value": "0x187623be1669117f3bd4de38e86b01e2493a28ccba1f669ff0d7a9d9d6ca571" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "nonce": "0x19" + } + ], + "deployed_contracts": [ + { + "address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", + "class_hash": "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff" + } + ], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 4680, + "memory_holes": 91, + "pedersen_builtin_applications": 12, + "range_check_builtin_applications": 127, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 4116, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x558bbb319d3b162d25d5487a2ad0e00ae637ec674f4c2fba5bd55cc00161542" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x9b", + "0x16", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x56debd24480", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x574254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x26232f0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2606bdc", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x2622f0b", + "0x5354524b2f555344", + "0x456ca1e", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x2625618", + "0x5354524b2f555344", + "0xd9c900", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x262a050", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x2665ade", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x261bdc0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x3df1383e00", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3de13ee2ff", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x3ddcd4b70c", + "0x4554482f555344", + "0x2ca27c", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x3de7440640", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4259424954", + "0x505241474d41", + "0x3de08e208d", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x3ddf9a0dbc", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x3df1754700", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x3de0235852", + "0x4554482f555344", + "0x4b7be9e", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x3dcf01b280", + "0x4554482f555344", + "0x4465e224", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf43d0", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x44455853435245454e4552", + "0x505241474d41", + "0xf41dc", + "0x555344542f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 8519, + "memory_holes": 768, + "range_check_builtin_applications": 177, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x9b", + "0x16", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x56debd24480", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x574254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x26232f0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2606bdc", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x2622f0b", + "0x5354524b2f555344", + "0x456ca1e", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x2625618", + "0x5354524b2f555344", + "0xd9c900", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x262a050", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x2665ade", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x261bdc0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x3df1383e00", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3de13ee2ff", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x3ddcd4b70c", + "0x4554482f555344", + "0x2ca27c", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x3de7440640", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4259424954", + "0x505241474d41", + "0x3de08e208d", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x3ddf9a0dbc", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x3df1754700", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x3de0235852", + "0x4554482f555344", + "0x4b7be9e", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x3dcf01b280", + "0x4554482f555344", + "0x4465e224", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf43d0", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x44455853435245454e4552", + "0x505241474d41", + "0xf41dc", + "0x555344542f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0x16", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x56debd24480", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x574254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x26232f0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2606bdc", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x2622f0b", + "0x5354524b2f555344", + "0x456ca1e", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x2625618", + "0x5354524b2f555344", + "0xd9c900", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x262a050", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x2665ade", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x261bdc0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x3df1383e00", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3de13ee2ff", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x3ddcd4b70c", + "0x4554482f555344", + "0x2ca27c", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x3de7440640", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4259424954", + "0x505241474d41", + "0x3de08e208d", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x3ddf9a0dbc", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x3df1754700", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x3de0235852", + "0x4554482f555344", + "0x4b7be9e", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x3dcf01b280", + "0x4554482f555344", + "0x4465e224", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf43d0", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x44455853435245454e4552", + "0x505241474d41", + "0xf41dc", + "0x555344542f555344", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4f4b58" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5177, + "memory_holes": 42, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 152 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x454b55424f" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6079, + "memory_holes": 64, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 185 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4f4b58" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5177, + "memory_holes": 42, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 152 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x56debd24480", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x574254432f555344", + "0xa88031d" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x26232f0", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2606bdc", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x2622f0b", + "0x5354524b2f555344", + "0x456ca1e" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x2625618", + "0x5354524b2f555344", + "0xd9c900" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x262a050", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 7, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 8, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 9, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x2665ade", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 10, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x261bdc0", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 11, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x3df1383e00", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 12, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3de13ee2ff", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 13, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x3ddcd4b70c", + "0x4554482f555344", + "0x2ca27c" + ] + }, + { + "order": 14, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x3de7440640", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 15, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4259424954", + "0x505241474d41", + "0x3de08e208d", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 16, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x3ddf9a0dbc", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 17, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x3df1754700", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 18, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x3de0235852", + "0x4554482f555344", + "0x4b7be9e" + ] + }, + { + "order": 19, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x3dcf01b280", + "0x4554482f555344", + "0x4465e224" + ] + }, + { + "order": 20, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf43d0", + "0x555344542f555344", + "0x0" + ] + }, + { + "order": 21, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x44455853435245454e4552", + "0x505241474d41", + "0xf41dc", + "0x555344542f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 222935, + "memory_holes": 10992, + "pedersen_builtin_applications": 1320, + "range_check_builtin_applications": 7022, + "bitwise_builtin_applications": 66 + } + } + ], + "events": [ + { + "order": 22, + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x54b7768164ecbc22689e2c084201b5dc07a488b3b08c1a692d1d986659e6354" + ], + "data": [ + "0x1", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 232167, + "memory_holes": 10999, + "pedersen_builtin_applications": 1320, + "range_check_builtin_applications": 7211, + "bitwise_builtin_applications": 66 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x9b5bfa6b2917", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x9b5bfa6b2917", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x4284ad9838adf91d3e8334b1e4917bf45876b6737d01b704a218b32d217bd1f", + "value": "0x2616bc8000000000000000000000000066bae3bb" + }, + { + "key": "0x7f8b72b9ee8253bd67f2a3d4fb7bd8d69b837f4454342356742a97f96ecaf8a", + "value": "0x2665ade000000000000000000000000066bae3ba" + }, + { + "key": "0x402533d4b23ae34cdbe811d39c25c645dbb513785c261d6b2cbf8fbde29645a", + "value": "0x3df1754700000000000000000000000000066bae3ba" + }, + { + "key": "0x4375ecfc66e2bf27dfab4f3f823fcc7aacb076952c06432c2c012580145d418", + "value": "0x26232f0000000000000000000000000066bae3b9" + }, + { + "key": "0x1d3031beda8746da5df938eec534834e56deef0938b88f1ca4c2bdefb36668b", + "value": "0xf41dc000000000000000000000000066bae3bb" + }, + { + "key": "0x4991886e34c01023fba073c0456bbc54ae33b85c67f090e1b73f8a9b8330672", + "value": "0x3dcf01b280000000000000000004465e22466bae3ba" + }, + { + "key": "0x1f77d79bd218039c0aa94eaea6417d9b629b0fd4fd3e2a40828b0c5fd8ff9c4", + "value": "0x26256180000000000000000000d9c90066bae3bb" + }, + { + "key": "0x1017456aa1b15ea00238811c33e7c86e7289e6a7ab7b5b04738916cc2249358", + "value": "0x3de08e208d000000000000000000000000066bae3ba" + }, + { + "key": "0x446cc02cebee1246119624372860eda3b93e9174a78eec0a626671adaf3f715", + "value": "0xf43d0000000000000000000000000066bae3b9" + }, + { + "key": "0x24509222463e5d334336e150cc8a2ef5081888b33c5d500d8f91913c81352e3", + "value": "0x3ddf9a0dbc000000000000000000000000066bae3bb" + }, + { + "key": "0x201064f17cc42b7b2161b931995442075e5dec616fb4081a37eeece6759e17e", + "value": "0x3de13ee2ff000000000000000000000000066bae3ba" + }, + { + "key": "0x75c2cafa0f908db61e577f3a555f5cbcb49adfd61c99be68c88da0722c4aa35", + "value": "0x3df1383e00000000000000000000000000066bae3b9" + }, + { + "key": "0x6c1c04d4c8b1c9f29c5c7c3ebda430095a69d76342fbd7ee9b35feab0f30ec1", + "value": "0x2622f0b000000000000000000456ca1e66bae3bc" + }, + { + "key": "0x4980bcbf5314101edf5a53eea20451fb3fbbd1ca848fd1ffc2219505c82ab77", + "value": "0x3de7440640000000000000000000000000066bae3ba" + }, + { + "key": "0x2f4cf03188a8eeef916ecb3d732359bbd865c6be46da0e54a00885bf76350fc", + "value": "0x56debd24480000000000000000000000000066bae3ba" + }, + { + "key": "0x18b16c68f1e1b481b881f9dc04c5944809421a59c9afa07af662b163536b561", + "value": "0x2606bdc000000000000000000000000066bae3ba" + }, + { + "key": "0x5fa55109aaac8b6f2a93dc26f90261f62428b2f2f1ce330099d815e5c4c87ed", + "value": "0x3ddcd4b70c00000000000000000002ca27c66bae3bc" + }, + { + "key": "0x54a0c1b798651f2fbf043d09c6719198778e3c030b12a28bbc428435f11a81", + "value": "0x55edecc5dc0000000000000000000a88031d66bae3ba" + }, + { + "key": "0x3006bc4c9e35cde6cb6979e3f9b6a7cb6efc3fe31f757055e2e9e340f706c85", + "value": "0x262a050000000000000000000000000066bae3ba" + }, + { + "key": "0x154db62c88a5b25aab1e64ef455a26194e26d1f8e46207d2d1287b9241ca8bd", + "value": "0x3de02358520000000000000000004b7be9e66bae3bb" + }, + { + "key": "0x561773d3b9960583efa16b00fc0c5fa3bcadba3dd30c95c1479fde03ec02e66", + "value": "0x2616bc8000000000000000000000000066bae3bb" + }, + { + "key": "0x41bb8505263aa8810595a282bbfcd5cec380b082c23dca28a243c765a406eaf", + "value": "0x261bdc0000000000000000000000000066bae3ba" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeef6c8e87eac7ed" + }, + { + "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", + "value": "0x8983969bb21b4d7f" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "nonce": "0x373df" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 241864, + "memory_holes": 11790, + "pedersen_builtin_applications": 1324, + "range_check_builtin_applications": 7425, + "bitwise_builtin_applications": 66, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 27373, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x54b7768164ecbc22689e2c084201b5dc07a488b3b08c1a692d1d986659e6354" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x63", + "0xe", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5620fad9bae", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3dee00d9a3", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x560aa1fe28c", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec57014baa", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ce025", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4200", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f15c4e", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4332", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262df77", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x159661c", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3debb0aa61", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5446, + "memory_holes": 62, + "range_check_builtin_applications": 117, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x63", + "0xe", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5620fad9bae", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3dee00d9a3", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x560aa1fe28c", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec57014baa", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ce025", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4200", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f15c4e", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4332", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262df77", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x159661c", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3debb0aa61", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0xe", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5620fad9bae", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3dee00d9a3", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x560aa1fe28c", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec57014baa", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ce025", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4200", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f15c4e", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4332", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262df77", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x159661c", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3debb0aa61", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5620fad9bae", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3dee00d9a3", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x560aa1fe28c", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec57014baa", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ce025", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "order": 7, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4200", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 8, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f15c4e", + "0x554e492f555344", + "0x0" + ] + }, + { + "order": 9, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 10, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4332", + "0x555344542f555344", + "0x0" + ] + }, + { + "order": 11, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262df77", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 12, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x159661c", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 13, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3debb0aa61", + "0x53544554482f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 73681, + "memory_holes": 6440, + "pedersen_builtin_applications": 308, + "range_check_builtin_applications": 2441, + "bitwise_builtin_applications": 42 + } + } + ], + "events": [], + "messages": [], + "execution_resources": { + "steps": 79936, + "memory_holes": 6443, + "pedersen_builtin_applications": 308, + "range_check_builtin_applications": 2570, + "bitwise_builtin_applications": 42 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x66f34f78a4c1", + "0x0" + ], + "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x66f34f78a4c1", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x8653303a2624a587179380e17d7876d346aea7f02dbd57782950500ea7276e", + "value": "0x5620fad9bae000000000000000000000000066bae3c4" + }, + { + "key": "0x678817f315f1e297a5f652fb09285db75338ef9d9c221bbcc07817f2196b988", + "value": "0x159661c000000000000000000000000066bae3c6" + }, + { + "key": "0xb4ee84f18d73fe6a23ce3be0cc905d5e2d3c0897f1f85cbf0e2a4611f2d310", + "value": "0x3debb0aa61000000000000000000000000066bae3c6" + }, + { + "key": "0x143dae8bc0e9898f65cb1eb84f16bfb9cb09431972541141677721dd541f055", + "value": "0x5f4e43e000000000000000000000000066bae3c5" + }, + { + "key": "0x56041f8991ff7eff841647cfda1f1cfb9e7321c5a96c53d4a5072497de6b50f", + "value": "0x24f15c4e000000000000000000000000066bae3c5" + }, + { + "key": "0x2d04b0419a0e89f6b4dabc3dc19b087e71f0dec9f1785606f00517d3468636b", + "value": "0x5f5ec9d000000000000000000000000066bae3c6" + }, + { + "key": "0x7b4de97b546ed17a0d490dab334867e9383e029411c268a8902768b6da6a2eb", + "value": "0x5f5b6c7000000000000000000000000066bae3c5" + }, + { + "key": "0x5c8f047efa25ed6202a9d6af9b64f2a7fb47111040b16dce8362e0ea20809e0", + "value": "0x262df77000000000000000000000000066bae3c6" + }, + { + "key": "0x6f64efd140d53af83432093bb6c3d5e8db645bd89feead6dda806955f68ef2a", + "value": "0x560aa1fe28c000000000000000000000000066bae3c5" + }, + { + "key": "0x28e86558bd7c5a9c26fceeafb9570eb7b3011db4a9ff813b318f91129935c37", + "value": "0xf4200000000000000000000000000066bae3c5" + }, + { + "key": "0x6a6414ca66551a2324e436ed37d069f1660ef01bc3fe90497fc729ee60781b8", + "value": "0x3dee00d9a3000000000000000000000000066bae3c4" + }, + { + "key": "0x437f038e1991939def57775a3405a3b6f0c0830f09d0e6cfc309393950fa773", + "value": "0x48e58ce025000000000000000000000000066bae3c5" + }, + { + "key": "0x1b3f3d264a9c63c581333d4b97c556b6f20f9a1abf64c7f71e04b35df62cc70", + "value": "0xf4332000000000000000000000000066bae3c6" + }, + { + "key": "0x55c3ad197a2fa1dce3a999ae803099406fab085f187b926e7e1f0e38592043d", + "value": "0x4ec57014baa000000000000000000000000066bae3c5" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x7b3303ee433d39925f7c289cd2048052a2d8e2d653bdd7cdfa6a6ab8365445d", + "value": "0x71cd7202520531dd" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeefd381d7636cae" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "nonce": "0x2b025" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 86560, + "memory_holes": 6528, + "pedersen_builtin_applications": 312, + "range_check_builtin_applications": 2724, + "bitwise_builtin_applications": 42, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 18139, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x1fa7d3f1bc57576d59af7cc5e5e73912015ec2046aad8c866e054905c4e9bf3" + } + ], + "id": 1 +} \ No newline at end of file diff --git a/rpc/tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json b/rpc/tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json new file mode 100644 index 00000000..c175316b --- /dev/null +++ b/rpc/tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json @@ -0,0 +1,204 @@ +{ + "jsonrpc": "2.0", + "result": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x2", + "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", + "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", + "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" + ], + "caller_address": "0x0", + "class_hash": "0x66559c86e66214ba1bc5d6512f6411aa066493e6086ff5d54f41a970d47fc5a", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 862, + "memory_holes": 15, + "range_check_builtin_applications": 22, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x2", + "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", + "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", + "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" + ], + "caller_address": "0x0", + "class_hash": "0x66559c86e66214ba1bc5d6512f6411aa066493e6086ff5d54f41a970d47fc5a", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", + "entry_point_selector": "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "calldata": [ + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x2", + "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", + "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", + "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" + ], + "caller_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "class_hash": "0x18734719577f055f2a4f405bd8f0030b9e4588379ec2d5f85c084ad5e06eab8", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x19e22f866f4c5aead2809bf160d2b29e921e335d899979732101c6f3c38ff81" + ], + "data": [ + "0x20ed", + "0x5f60fc2", + "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 6318, + "memory_holes": 214, + "pedersen_builtin_applications": 18, + "range_check_builtin_applications": 253, + "bitwise_builtin_applications": 2, + "ec_op_builtin_applications": 6 + } + } + ], + "events": [], + "messages": [], + "execution_resources": { + "steps": 7812, + "memory_holes": 283, + "pedersen_builtin_applications": 18, + "range_check_builtin_applications": 296, + "bitwise_builtin_applications": 2, + "ec_op_builtin_applications": 6 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x6a25583aab3700", + "0x0" + ], + "caller_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "class_hash": "0x5327164fa21dca89a92e8eae8a5b7ab90f58373e71f0a16d285e5a4abe5a3cf", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x6a25583aab3700", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1705, + "memory_holes": 56, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + } + }, + "id": 1 +} \ No newline at end of file diff --git a/rpc/trace_test.go b/rpc/trace_test.go index 66a6db14..2260a34b 100644 --- a/rpc/trace_test.go +++ b/rpc/trace_test.go @@ -30,7 +30,7 @@ func TestTransactionTrace(t *testing.T) { var rawjson struct { Result InvokeTxnTrace `json:"result"` } - expectedrespRaw, err := os.ReadFile("./tests/trace/0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e.json") + expectedrespRaw, err := os.ReadFile("./tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") require.NoError(t, err, "Error ReadFile for TestTraceTransaction") err = json.Unmarshal(expectedrespRaw, &rawjson) @@ -49,7 +49,7 @@ func TestTransactionTrace(t *testing.T) { testSet := map[string][]testSetType{ "mock": { testSetType{ - TransactionHash: utils.TestHexToFelt(t, "0x4b861c47d0fbc4cc24dacf92cf155ad0a2f7e2a0fd9b057b90cdd64eba7e12e"), + TransactionHash: utils.TestHexToFelt(t, "0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282"), ExpectedResp: &expectedResp, ExpectedError: nil, }, @@ -160,7 +160,7 @@ func TestTraceBlockTransactions(t *testing.T) { var rawjson struct { Result []Trace `json:"result"` } - expectedrespRaw, err := os.ReadFile("./tests/trace/0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2.json") + expectedrespRaw, err := os.ReadFile("./tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json") require.NoError(t, err, "Error ReadFile for TestTraceBlockTransactions") err = json.Unmarshal(expectedrespRaw, &rawjson) @@ -178,7 +178,7 @@ func TestTraceBlockTransactions(t *testing.T) { "mainnet": {}, "mock": { testSetType{ - BlockID: BlockID{Hash: utils.TestHexToFelt(t, "0x3ddc3a8aaac071ecdc5d8d0cfbb1dc4fc6a88272bc6c67523c9baaee52a5ea2")}, + BlockID: BlockID{Hash: utils.TestHexToFelt(t, "0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2")}, ExpectedResp: expectedResp, ExpectedErr: nil, }, From 0626a86f311eb013f16134ee41142b588e32ef01 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Tue, 13 Aug 2024 01:48:37 -0300 Subject: [PATCH 11/28] Fix TestSpecVersion test --- rpc/version_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/version_test.go b/rpc/version_test.go index a22eb134..f87746ba 100644 --- a/rpc/version_test.go +++ b/rpc/version_test.go @@ -20,7 +20,7 @@ func TestSpecVersion(t *testing.T) { "mainnet": {}, "mock": {}, "testnet": {{ - ExpectedResp: "0.7.0", + ExpectedResp: "0.7.1", }}, }[testEnv] From 1782be35769855c54a7df8e762badbd478a60a23 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Tue, 13 Aug 2024 02:05:11 -0300 Subject: [PATCH 12/28] Fix Error test --- rpc/errors.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rpc/errors.go b/rpc/errors.go index 2ff0c0a3..b11dce85 100644 --- a/rpc/errors.go +++ b/rpc/errors.go @@ -60,6 +60,10 @@ func tryUnwrapToRPCErr(err error, rpcErrors ...*RPCError) *RPCError { return &nodeErr } } + + if nodeErr.Code == 0 { + return Err(InternalError, err.Error()) + } return Err(nodeErr.Code, nodeErr.Data) } From 8d64ae8849a37905a709d876108325f6948f9d2e Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Tue, 13 Aug 2024 21:06:26 -0300 Subject: [PATCH 13/28] Update contract.json files --- ...1af4569baa1781ffc964bd018f4585ae241c1.json | 421 + ...Dc165Bb42cD4b662e633e3F87a49627CF3AEF.json | 11359 ---------------- ...71e38c44527d8ce2ad115bcfda3cba0548cc3.json | 3898 ++++++ ...7cf0dafc8c188f80c3450615944a469428f7f.json | 6020 -------- rpc/types_block_test.go | 11 +- rpc/types_contract_test.go | 12 +- 6 files changed, 4327 insertions(+), 17394 deletions(-) create mode 100644 rpc/tests/contract/0x01b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1.json delete mode 100644 rpc/tests/contract/0x03a8Bad0A71696fC3eB663D0513Dc165Bb42cD4b662e633e3F87a49627CF3AEF.json create mode 100644 rpc/tests/contract/0x03e9b96873987da76121f74a3df71e38c44527d8ce2ad115bcfda3cba0548cc3.json delete mode 100644 rpc/tests/contract/0x1efa8f84fd4dff9e2902ec88717cf0dafc8c188f80c3450615944a469428f7f.json diff --git a/rpc/tests/contract/0x01b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1.json b/rpc/tests/contract/0x01b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1.json new file mode 100644 index 00000000..bfa80979 --- /dev/null +++ b/rpc/tests/contract/0x01b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1.json @@ -0,0 +1,421 @@ +{ + "program": "H4sIAAAAAAAA/+y9i3PcNpIH/K/Mp6uv1s4qOgB8p9ZXpdhK4jo/8knK3u4lLhYfGJmVGXKOpGxrt/y/f8Xn8AGSAAmQlDyuSixTRHej0f3rRuPBf58dQm+Pz37YnIEvOqj8gRCw/YFn55sz14qtsx82v5+BLzLQdACgtt1uk/+S34IvMPsLAd0ufqFttzh7KgMgJTJo223yW6f2FOZP3fypjtTiadImeyoVvwRIBwDVf9nBVAcFoe3xXVlTFU2WJRWqjuqoioZkqMqqrCFV0SRNKkVDucDusY8V0dwK95pozV8yiKZImqxuNaRCVVMVBamKClW5JZBTEeioQYeoQadPgw4XMTUNqYYmq0pLUJsoaNsAEIMBMA21orqJaLKiqaqiYq2tS4MoYvLUaomYPLVrT6X8ab07cv603R2josS+7qCagxV0SiaEX9J636CV9BPSgVWMa0XNOjIKIhWJIJAT8vl/+bt1IAJbtj/2GOHSp079qQjh1D6G+VN3NjFY/ETqp9iCN6faLwkUxGoGV2KMNkhBltsiDYaoGknQIAmkwj0wJSp2qqvEMr3JFDafkvqBrMofGyj1P2pdifXIQQ51+VOJhrlc05iuE6J6F3OLZCe9RjQtxThCiV6BkhKZpQK79FowNgqhKxhMDNFlX5Wir7iqJqUIBQox1lcV3WcuRKU5cynNbShNl1AuXt01kncSLFKr7yoodxZHgF5yf3RbcZEQNnJRWmIrRUKhVe2CkIeiCWL2pbUq4Xe9MabDEtkGGRZuKiBUOGAG04SFYdU1UzVYLKyHtiViKDhZj9PTzuobGY1NCbU/uBKMyTY7z8hYduFChN7rPZqxV5FlWVIfQ4boYPVm6ESTkinSd7Lh9Npvf8SXCf7DK3gRMhc+pDumzCSlwtFKHZpAk82UNDq0CpvJxo1eaWm6vdQ80cX9QD21FoWY40A5d5cTMqj4r/ZUKv4rWRemY9USfTXXFGI3HZClhI3JWsbIbc4okJ7PPrZE9tIU9rBlK0YbyYt8tvW06Tj8LQg77GLkTyWaWNCYu9g9aYLRr6bSPi0SXs1T+nAtCjDoltzuklw8xrlD0/8O06RNPfKnFvGpLd6MbYp0IM/RW5KnE8VGJshSVRoSjktbcpjRSfPKWmbrjglfqyjsDYxlT6wWMcFyazbU0g39U1EeKMKrtv2OQ+/yOQWqpyJmMaJHr6c+w7872NUKtlAqeA4l3YbhuLrtYkXRdCjrMrIkiCDWXXfrypJkKZJh646xhbK9lSC2txDoLkRYhYaKjfo8o15/E9FBSOwgrOe1RT5Qz2uLWFt7Wpbja0+LPLiRA9c7ItfsWqea4PTnVGm+CfVGNXeehA9j1Ac4qzBv22E3byjJqoFsJAHbwHC7tSQDGLoBZA0hKMlQMVQF2cBwFNuRoavrrqoauqYZLkJ6ZWF0Hvu21ZN9C1Kto42wb7ZEl7SwKEMH2u7W1Y2tamiyblkA2IomIxtIlmsnZAxbxzpwLFtxFOAa0HF1B1maYWOapejFsjGLIq5j4cNq6X0M86cKw1OWrGyplXbs9mdaZFXMYxjYQjUxVKJw6jzuZ6sOVmQIto6lGC7QdIwNG1mypEHLcFVddhQJuKqhOaq8tfEWWFh1FaxvgeVo/UWuk/dtt1i3Tt63Lu/T5fV4H9wCV7Ysw5Al6CJZtS0niXWy7kgS1nUdyYoNFWyomr5V5a1hu1tH15HkOvrW0IyT+w0Ntuqc3G9d7qeqK3I/CDDaashwDAfZhq4rimEYsiW5luO4uqQ7WwVtra2uY6jDZMYhYVVzXaBCWVFoKtrfuPvJuN/mynVdrTVFEiGNMQwGmOFpB0TYDMa7WNW/d67XCxHC8QvLqGUfOnEKPQtgSfUKaGvOTnrKGBZI02JLxjp2oIqRoluaYWyxBjTDULeu4iLoyshGhuU6UDYMS9IAdrfaVgeGqzuyolsz6wgO7BiaCW4Mqea0rcVXci2e9PQxLfoA9mgvwgTsNUE9VFcH9eQFqqUCgOvUGLaKl4sGAIDXFACAwTkAtMecFAAcXbO3MsKuvAVwC6GuS/ZWkbey5BrQRY5tu8oWO0h1obs1HE12FM3CUEo0ZcnzjpiL7XkHxcX6KhJcxZkl4lCuFC+75O2wp5QiDENaURxy3YEJ0AJxqL1OtcLoVJ+eaGuKTq6rrCg6uW5vHOISnajrKeLWfd3GhJXSiHs234g3YmjMa5hbSZ4Z8uXto5stDbhAzwGdyt4CwlnC4jcUIJAv8xeEKtrSW1sCusREdk63dlib5SQq6eCoiKygNwCKmA7Xt6zKREggP52w8+7kAScP6Phz8oC1eQAcOPtD7QH1nWStfVskv0Anv8j/YLcvSxNaKE0ZSkSrJj/9JvwCD+ymO0WGU2Tg7gGPobIF2Q9zPpp40XsVCihPfbav6JngShUKrlgHM2YOMY2YtoYQM6Gwt7Dbod77z56g26El3I58JaHQLSdzOaOzImfsO/E/U0HSBSoFBizk7a5VZ/gICrzYWYfmjNrOC0xcISI/ZTqBSta9IV7LujDSetGX7DBZc0GJfMSs0+ba4E8+urWwueh6rXsFQ0RUxfGqW8K1E3ULa10D0v2UZHeki0RIl2UIMANt4LB2x2pj9yn6NaZTrkOzFE21gYH9qCs54vDvpNM4wyg8BjiOTJFtLzXkSn0q0FpG79n6RXVjgQhfxDwhmeUOFlr4FjBOmi3MPq261xO08UjClqFUO6IRtxiTn3bgMHmjLNVTEXbfu59NxDmc3hugZhtWyXnSyavaW4Hq3cj0CEo0rk6zzXpKTjFX3qDDmfMGbcW3F7lQF5s3rNGWsT6QTTx2V4ULpP8zV2QcZUsxLguNgLM1+v1nhRUuOBC+WDJs+hKqQEQTMKyy3Z9hJ08d4rC2ny6biiHOGTZ5sJfKsKEiTHOOu4oBRLWbLWzi0gb56bouHazssGcOxVSHa9fhb/XhEpY8T7kfQTKAohq2DSzJ0hDCtoyQjnUNAAlASdZcC+gQQegqDnKxi1wbIbyVdENRoEXzJaZv+34EeztwaLbnyM/pehIxI1KHnunXk4jPKwF8bJORcufb49kcuXX74ey0OVKQiXzLmyOFZ1q2PXA55LIuJ+zzH7Z7XO4u86kk22KfqZCfisrIkOMiVdccoLqSDLdbF9iqpGAJIQMjx5JUCHQEoIUgRK4FXKDoLpBsTcO2AozTfY2DhmFRVLRPGdmcGZnVm3uNyMjWlVdgXrtcT3kFnb5PecXaPACU9jy0yUzY10PWpZGt1JcDCPzaZz8WsX8w8FHDl4iBlWdGuwZDSigWBj7ED/ArSJYkJA2M0MmQToa05gv1yo2goGaqhTW2tDd4BKcytEIP5rhqXThJ+EmgYs9X7wf16Q4vVbxVI31+nPR9d/IQSMSvvvecxOoWkMIxypuj6AXs6ZOIpAxSAO/knGxgeY4ZEnTRbm5t3b7pAxsyde3IXVs+imXnyWeARPeSKGBgpgOZc0WD42xsrvlx45jmsvNjkrXWv+OuCYcYp/ymGvkjbj3AM/Fux7a3CFiuxHKte0VHyN8trH8pafoJD/L3mJHoTtuWJcxc3FpEcoh3ZZKfduTKj2ABGQObfViXFdm2azg3bXcWvQMve/7BcWm+SPwEMwd57ZnDbJM9u3eLk4h8wl5RPjHXtESnyQ6e2rQEat8muJymJadpCfiiUCRtS+U6sHdaIgD/ZJc4fRiFium7hDNvpORqpnNNKvl2jpFzpkeSMDe6VzCUiKo4Vt9nuKiEygxk4vUl+VNZtPZcZ3sKjt9KcHR6T5KcguOqgqPl6DMHR6A86eAIrW8xOJLDoETstEzRaao4tWwV1So+CyTCR2rfaWc6/Pp4c4Rj1eCUIzz1HMHuXbj+FnME2BeGWUpmItY3yHOfAYjpOS1NdYPEsjHNcYyTK1NZh0Zj1evZm/PInM8tv437DTmfKw8c1z8532Nzvg/nmzP73tvFnh+d/bD5/eyAXRxG2E/eDy3/DpvOR+z8mb740fPj5K1/n4Hk3X+fOYGLz37YnO3xPggffrcOHzYvNhG+22M/ji4s1332PKFjOQ6OIs/eYTNyggPOOEWxFf752QrxhWN5YXDhBPt94F9Yu12Q+lbf7/O3EqG2u+CzGYeW86fn35muFVuphNahfJj++y4M7g9nP2zA+eYs2G4jHCf/+Jr0Em9xiH0Hm56b9u7r168JYYjqnYweIsfa7cyPlu/ucHhxh2MzeYBD03LdEEfRs6LrL4ofzjdFq0McvvDc6KLybyrdpD/5OC66n7eP6hrqeosg5BiloarSIFFp44SpqiMdj0z1CPSrPoqD0LrDZogtd4VKr4o3Rt0SH3VXxWgoGhaKNugU/Tn0YrxiTafyjVG1zFfVqRwNXaNc19KArvHei038CfvxChV9FG6MlhU+Wj4K0VCxlKtYbkD2Ngz2m444srfij+Z97O2ijbc/BGG8saIIh7Hp+TG+w+Effv3fzxKtf7J29/h58atN+Wjz/25+vX799mrz/7xIIsz2L3lbP4jNf+Ew2Gwtb4fdHzb/Lpt83bzYgIu/MMfHRO6e8Jj8+qLBfcyQqcNxkkWErM+JwxVDpQkeKus4TGDztxfpWFnlOP1tU0luzDwDurCDe99Nh2/zIhsq6+vGizbBfbwJtlkTwUPmjxksjdNg+RcJHyUfIlWZNkTJcPzh/+H/x+ZlEIbYiX0cRZtU4xd/+JnfvMjfO3rXeTZCz4uhKkcxa/C3dCB/+/XXq2vzx/e/vXuVDNe/c4/KhiryXJwMV/wRZ0O2+R2cb9B33yEFPL/4Sy6StXPud1bsBf5mG4TpyxkjL/Av/vATLh+9u4/nKb9d8HnzYuN6n/aBWxU1+fHml9c/3bLnuQxGgRRg2t4o5IUU+S6DCKlKzn7Y6EyCJ+rLrZShUYEYam6Oml43x9zOvBiHcRDsomRcBaJI7bGdPN40QOUP384f2S3jtRIIsktoyWDFD+LNLvGJ+KPlb4Jwg//v3tpt4mCTEPq3/bUw1p88391Y/sYKnUqDDMn+M0kXrfT3QfwRh4QX0MUf/g77d/HHyLR81/R813NwtHmx+f2Zdb4Bz883z+zN9xvrfAOTn7N232/g5vtEZvT8A7H9RRSE8bMjzBJe+R18+B18SPqey/KfGykVlvQubL2L/vDxF2d372J384LYBn34HX5IlJRPQRPtV5H9EIebv27gh/NN7wsgmbg++8PfbDaFl3f2JvP6VEbz/d+vrk3J/OX1z788fz4ghDQkBKITAhKFQLkQInFoh80t3o3DIcgHh3IR0jhlMEl9YRdwyNCmMUhpR3I40vWeGgjceNtNabpJUrjBuwhvwKMYHr23LAIQS8fhY+q40dtxKNc7nsPeEaFebNCj6CYcqHs18r7/2Pwdh972ociR7veHJEmKNoGf5Vg4y6Oij95hY+P4M8Z+nm6dby5fvcoTtRT3U8S6+MOvPM5CZuVBM3Y+y2ht/lYl9rcXGQv4PKX7DG2+25Tv5Rlk+osMT5M/ldbfbdDmv/LXzjd//JG99Bc/CPfWzvsXLit6zzeO5Sdx2sab+wi7m89e/DHttXMfhtiPN07gR7Hlx1ESrJOeeJEZ7a3drvCGNEdw3bAuP71XtKbDWa1hYOKevXTR6tEo65lY/+uSJVVLQX9M+0LVCY2iBgBlqZEnZmOSWEZ7RHKTebyjgVY1GkgBCYVikg9VqSdWgGQs0rn5s1oe/bxvdp4NFRyFs6azPwxgbfJK0pFx83AoTctyjtzTBAcWM3GoUerx2feZJr/fwOdPTZ2DuEOtTgQauVt0vzezKX6qvnS6/9dsJpf8nOG6Y4XhQ/5aCiNFq/96cawD5Ejyh5/8MpkslzTTfxREK/8oyVa55C1LNum/CXyYx+3e82OkqD3Dlr9R/J1496ixqxUQZaaxI4iQDaDKJHaW8fdUHUhtjvpPGvdMMbobZ9UOqBdlNKhwXS0tATmKXdMJ/ET9cXRxdf0Sgez/pm1FXRFpuJFpfg6twwGHkWk2/33hW3tsYj/pihni+D4c5diyTL0Kq8pPSHvRw94Odhz0R1HwLfSnPSH9xUFs7W7uD4fdw3QlKvRbATSgPh0lutjx9tYu4qBBinSn0KCkPR0N2tbO8h38fstBhRTrbIUKe5PAR6ZCa7cLPidK5KBCg35LD9DhfDo84HDvxXF2cfaYNr0aLN986/kxDqfrUWPYGgWVWQDx/nAXWq5lezsvfjAPYfDl4cLzvdhLJp6WvaMzTioqvbou38YuBz3TB2+IgMxBz6a5tzy/6Ff1554+3+HY/ITDyAv86X3WEUOfUV9lXXifPRf7cWIo0zutMHRa5wHuozp9NO5RndRrc3Rd6e2mBHikAaO6GYeWH215AKXBAJSSvniHfwqDPYdO0+d6UJb6loiEdto6HMLgE4eswqBPzKCyHEp7vhNiK8KX/PIpgyGfUpaDLRdz7zkEDGFKlXlsgh/V9TT1i5LInGV/4/pai06SrPb3VlsMx6q9/XH0yNaSLtkgFyST3ia/cIL9wdvhsEiAkg6DC4gu0sMsqdxpr5Ln1X5kucPWw2FW3yx+d/Hy/bvb68uXt+brV1fvbl/f/jP9dbHDCRmaJiFd0/UUdeKHjHK6snj2taKrI52/X13fvH7/rkYG9rfNZmflxCuT0MVR7Pnp8m1aCGed6LWpVoSwdp4VEYXIUJqrBDlJGvZ2YkUceaf0aBgfU62QJ/8qWRox9glmcOSf0qNhXKQkPJmXNPsF+MWKPv6YrXz1c68V+dN/FCtmUY1IP7vb69+uGPjYQbDL2vST/S1fvqGnXCxT/HZc+OmhX/oxnxE6khtgW8GDg5OuIKfrNi52gtCKgzALH/hLjEPf2qURoCC3vfedVEISxYvL8C4Duu39bmf61r6G2fXXztOoZhfgHR2w7+a2eswJkuiQGkXJH+8yoLX2wX3uV8f5UOt1ymH6mlCMkjlZdhzo2Dy8d2JyX1/vDzvP8WLKPtdeb/a9drxisP/fpQIVRwfbrajV0O1vGYv2frwKF9QxNiNUeZ3lkAn5OsVn0X2a2fywSWg/r9p18rfp4m2Kxl32ePP6f6/e/2S+ef/y8s1NLXqD/ujdPNJBjwDEEyH9/lgWuPnAwJFcP9tiZYIP15LaINP6PKKCQookTUKhFu0hPOpoMBGZons7VRJ2zcLa5saodsco0Wqg4Qm3OrTEHcHaLLqxTOnHMsKhZDqPpzjd3O/s1QJvxc8RUtp+/snDnyl8vEpyyL3b79bttzLiYGDEa6Qofam7DR8xum2ueIXV6GrkR8fOylJGddABnDToOUWaMa+9OknXBSWGESc24SJE93jnb4wZ7oL46NFulUSr0wqVMOYMAb1Fe2j0OxpMnWq47oKxvN0nSmscaHiK5R1a4h7L2yxGx/LK6mEFWmVjopsVRIf9q/5mw4aSX5ufsBMHobnDPrWDVdoNWVFue5UBRoMDXMpM7TjkFiePaaqn21VYvKMkNyEIlTtGRs1mB/es1Dj0J725OXGYUqeU+pm1VmuOqKBORIUm6SFsIL/f8BnLcdpluzVW+Vq9ocSO/nYnBCEriQeOtIh2o8nA0l1rwbfiVOlxLT5OlZBmcarj+w0zCrHjHTz82Nwq7c8It2q3O7kVWUm83SolOs2tjltoJ8TIklKLJkW0TN7mtDRMkINhdfjYZi9AIQVRNhnMwN89CBEko9wvTYRjU3wq1+QyIFN6iIhPQpfT6mdYOXXDh2uV4ADr6oaBfG5pTAt4BcmhQFd/7/EGuLIflIGN/P4poNWVw70kU1IePeWs7vet+IskqVz8JSFL6zPHd5t2w1bn7HAzchGm083a4z7CzWRKy0i7zuhq7TYnd2srSJjLpdS73U7qd7vqOXn2bVnV1v2hsHgzu457PKesPR2v3UDdqJfRbqhUVLwY3dsT2CStO/iQzhsekVHTCZs7htb/SCQ7UbH7ZfblNyKtIZwZbsRJkB7fPEJX5p/fnW+qyPRD13WNPdhzvmkAT0b5fJPIXvwc4ti1YitnSoEKxI6xR2MimeKxayb2xCeLHtxcSXHc9ugMWtsZGN2gTprJKUhNWxl3TFrwbAfAZyFO8MXz7zpNqxHnn4uNZRQdHuPHfST4eHWDQ7ePd3hj4n7mDvvVf09zx4ZE7IUfCqJ7vHcOAxPd+v7KtEHRjsIX25ud5ZG7EtpUqdyue9Mzq6lQ7jweasJFiKcWg0bvGCYQGY4/rb341IbcFVKgLLUrNUzGPCKidDccHU8as4vBWNE1O6XZITDYFXZPExcniPQXjBJEeabFCCJJ4RGivv0+y89kwnkYhslKSZLGixovT7KSIy0G0+1oxEmQJxYojh2bFCqOZERMVgaPgFBcr3R0BqntDIxuwB5aepuODi451fVNVbq6O8aLhYWgLg7LBaEuiSaFoS6iwgNR7UBW5npwxEkJAkUaj6u/O8lQSlIM5ktuw0eMJxaCyn5NikAlFREBaOg04PAFiUcfAO0VNTbrZ48+fS1HB5+C6NxTm47OjPBNYZGlg8FygaVDoElxpYPmHGGl+8jt2O0dffQpPWz4pA67FTGelKFvzFmwpxeRqE+40IWmBjmGilrb3Ee4SGeVTSEsY450k1FhaZjEY6u8DXVqig+LDFi9nBaNXL2STQ1hvcSFx7KuE+WEEgXLPInqVHnv+5Osiel0OVU7fuIwRKpmoMrjitjQM/HMehclhoBTs0k2E+4MMwjpI8NMN3lWw+YaXJpXEswVXXo6NNLRhMWUHibLhZMeoSZFkh66swQRwgUVcNoGNZpLKvpen2w7tJdV0DTjJsxjCB/j78DoIMQYPApbZLLc7tAB5Amhg0id0Z65Bo7G3SZzxg1yd8a5l9CoQeaxbNAgyzQ5ZpDJCg8ZfbfcKKTAwVhDo7/pZrjRJHNiv22GvjFnwZ5YDY3llhiKeNQmxxCV2uY+wkW6a2ijI9QAj1FO8xRqaEOdmuLDwiLXEKfl4teQZJOi2BDxGWIZ6Q4plbDTgDmIDd4j1fP2RFuivuSJohUvUZ5chJpwUxOZDlNMKs2WxcaX8y634l6Q5F4MxYUKVTbfcrk6lzvOu1wh7uU+Xf9yeTmYy2N3D5fb0cjideaIUBm766eTOqPjcD4lt0BO2NWVcT4sMA/s4rFkBtgl08Tcr4us8LhUXkuY+peK2lMwlniUUKPxp+N7k0wkJcNgtu33p7N/YsEm7dOkKJNSELF5tO/eywb/rvihEjZO01s2e9zoajU6YCQE544YhE4w+pywGEEgvlxwIAgzKSoQ6AkPB30Xx6ojrzDqIU/jQzQXyDKaDfMtrtRt+Yr1xGILw1WsFHGmRY2haNAyc3bPWNIzm7fPopFXOveQZ/XMrltoJ7gA1UWw1G35ivWEPXPgNldGz0ypjfTMtz1ftOxht4hnNi6wzRwTpB8pHz+dalCm9slmk+m2X6HI6pFdTbkK9RT9sdK96e5YIcZtbsZ833K3UJ0FP6C3b+UZ5TzskzcKAqPncdnlx3PP5Pp7NN6xhc3v+vksN9Xrl2vSrK+ftPBgVrnXOquYKNMqghk9GnervjnJaHJCDOZMasFDhCcWlfJeTQpGOQ0R9cH+a9RbMnTWCOWxNUISXXrL57vhKCU5d3whdoTZD4VFEyL55YIIUZxJsYNIUXjIaH6ZIPMifdrOhgpRGhdqvT7JUKrUGMy3sxk3YZ5YQKl2bVJUqRISEVoovpVBlqYzyGhjg0wncUY34RpuKnTXd4lWd6fH+baw+NTNY7kg1S3TpEjVTVZ8uGp/zUaC05e2Br9o0/nuNJuh/bDMYBs+Yjy1CDX+gzAkKgyF8NJM6S26+c0Zg59V9353pvd9LmZF9T0Xqnb8xHmilj7wHRYGa08pjbD41IzZrL6zfCzpYy8p7SbP6gdP4SRRT39GuqW4LKqbyYJpVLdQ0/KobrqzJVLdzgemOt94x3tKTjfd4YQ72+ocTYSTzeBgHS2t3S5wsv8f/au9t6DTuYbJdvgWbUNWI6Kg22/mrAQECNht5MfEb9B4KfiwJmMdJG0v/uxF+OLyzRvz/burOqXvIVA1CDRkKAAqmqRoyNAVBHQZAWjIigQkZABN0mQAZKQoiq7riq5q0ECSPEaKH7O/8/SWwYkaOXKDDotT2UGwu/jp8s3N1QSlJjRur3+7osCUUR2iNfxBtVQj35ehiLctvuT5QBfYzjdnX0zLd80Hugpe+v6XIGy+L/W9335dHo6zCpN7N7R45bw/TByIKonGKByGRqGDA3bMQ+D58cWV82vyd9qh/xtSPAuxPZ2akzSo/qYynm1lzLRpY5YRpEeUliwsINI9ZR9rMVUSM/htiKP73eC3emkL73Rd/G/sONafE/VUJ9LQlOcf7gc/C97B58+UsBnFVozrXG6SR2k/g/u4xUDnxqCi57QyzUfRGXF6vxgSc4Kb/BpE2HMDf6IJNMlwNIJDTjrvfoNTvyG0o9gUJhVjmGQLROr01kAj6wSLuPHufCu+D6cmPi06zaB7b5t/4gdqIN3jKLLuMK/5fUcnXM+JTSstMly88pz4Mv2RWgcdzRtdZ+n2IcSfSMWRnkDi48+kFtxjSStc02qJFOeFRtfR5vDRij62UolR06NGMkHtnakEyf/Qsd7AcMP9IFW2ckOz3boHLhN0VPmiq32jw8kb7aojdWzrWWaq5x5j+95T/kuzzaKQOq42UmHEqTQylOnQDh9FxlQdxghQG24EqXE4QtRz8Eiinn5HMvWcMFKGJoXHV9X6q2rPq1r9VW3Yd3Um+91b8cdKOYgObis1JBZ4TXmVZSMGVmkbZk5WFOEwNpECTNurnBwl3T71px989k3rYDofLf8Od+8ToGfIBvadBBreQ7V007IJNkwjyfLL659/MX98/9u7VzUxFAmqBoSGLkHJUFVJNqAKFYR0JEOIoKTpEmCqlJJ4jwoqg4Sa62J9S1uzqLg7foyNGSQuN7+8/um2NoaSDJCOJFU1EDAkXVYlWZUkTVaBJktQU3UEoayoU0eRU9Qikf7t11+vrgnWCXVgIAVKhixJElAVRZFkQ0KGqspAS7qnKypAQJNkSYFABkCVJB1KEKoKkjUFQCSpMlIVkN0QNEnGj97dx0nGmxIg22Fa0NriEPsOTvGsinSFMs5+d6wofvb79rD56+bZ9/LzD5u/Jlabrdh8SIhYBzMOLedPz78zXSu2UnnvwuD+kB5KTCb+pUd8/VrFyJI9q1p2wedJWknac1XK0go5AvxYlWQUpisl14n0fCmV7PAxaCsMB2KpSI8PzzviJV5nFnVaawuejzWEnRw+mzRWEzl3fReR8QiaO/ZbwaiomqkSSuPW2t834pqR5gynmHyFwCOx+0xiDsZPILQiD8ik+/X69dsr8/3fr65NZCa5em+Wrsq6DJGiIF3VVAUpqgZkptX7ARGktgiSIicJpaHrmmJomqKpigp0SdUVTZclBciyaozOsQoRRINBxkUcIlxYk0zUYgz6KeyQg77MEvQh36CfdcaepAqbnyqY8h8hqiDBy1jFNGlxU5MyRU3nRSTUawxqubmSTljk82MVlYGHzmkooj+9g4m/OLt7F5vWMYJDUA1VO8vGu0mkbXPv+fdRjQWUx7LwK/uTZYbdyVSkx2cVPnmHMmVCwSV++kMbi0fQWE1y4PdtSeYREX32ywzpqI6Lg2lDNkBLvWE67ms8Yd/36zNfhrvfaalP8dnHNf/N5OXg4+udBWeyifZ0QXNhP4jNf+EwqAQoxNfecwYTTL5GYeH1mFKY6SZNpMTpxACRkWATLdgItNIJ1dkGCcYwhbiEKZVHmDKd/eHi+iVhuUXQQlLKkFA6ozx+RCi8sS4l1ySIJ0kQT5DAi2qJASSddOdRNjwyYwfNZttVJwkVYUfDaReNxdODimCdwNu0RUborbDgCLoFVb92Dz/hs7I8bX3MPLbZdoF5bEWEyRa8unlsRTDRFsx3JluhyjaTrTVkSxEyD+FQwpS4JQlZR3yM3TTomU6wP1ihFwVVx9Y11qpWhXZwH5vB1kxNs0JTk1ho0uzxpx1EyvMC69kPOXpD+iH43FinH5OPMSVCCcs7HJvWgYFfiO+8KMZhVDQdw3F7SM95HgYu1uthfKTAwr8lPAX7neXfJe0P3g6HFzvPnqaCrm5wkGScToob9YgnuummIAoLoBf8VnB2uxDll8s3P5ntjXxQl2VVk2WgSRowFAWqkGmyVZCfZYtg42JEaoRttmugabGfjAZOyy154mYZhbQ54Hl+JVax42XZfIzRzAzWDbbHojY756ztFObVIuMI/kXzMSLkVz8kSMfAvrgwotp6CvcgnMA86LiOj5L3l0nMv4zkPm+iUOW6VLJQyHAsE9GbeqW+NIblIUdd2kO1n9MWYzhFh503rgJXaTmGcf63abmVT5kjMH1xjsCArRTRSYC1HkEZcQnVOeqLN1q0KpFVHhVZq70eVQIZJLRoHYQkXe9BQ9qbqM83jhWGD9MOJZKk666jMO3vI5GmL6aQW4+10q6aS+b+5JqL+vycciSoqjKTl25IGqHfY0duPac+5Uegz9SjTKaTPgNk2GqACHTtz5MYCoA11chcVcNy2qefCi/FoCUVkwaRajYx/ZALkcW0fKJCQlRGMXl+XZeVSx5AILWqTCCTj/+eCjIfTqsjTeLV9WzE8gkqavrTbH/sMvajTqXHLocP0VmV+/RumUvzaJ6JMb8V8hblyjkyhNoHySZ7EOOxsa7235YHjTx4NkRnXR7Ud+CKvwdxO3jVpOzju4oLEW4HmepCPr6b5kMlgdXnX4mkXCy/RWhVpp9Ix6UKw8s7EoFEuUdQjTDK9ONDBAYT3SMQHGP4uUfAKTC0CK3LPYLB0DCzewTCokd0b1fcQ5/+eQICg2nuURL4plKwpNdcXK1FaFWulki3KldLBBrvaulPPo4L6lEchNYdvrh89Yp0wdP4DzjIujFSlLeX/zBvbt9fX/58Zb6+vXprJr2tSYUGd8J00SZcWce+XaFoPbDK2SWDH4R7a+f9C5uW64bFhbzZxkrEZxc2NetB4GOk1ERA1xXgr/Qy0eLTSIpzAxW9mHznjfR8+QNTm0dpVJMHM6XEuAsccdoFjkasj9H3zIsSlOKjpZwWo55kgp6sTE9wtJ6QAD1Fe2u346apjBqrTREuh5usKzhSV9lXRqOLl5dv3pgv37+7vb58eWveXL25enn7/roeh4GuSEiTZE1BCMgaknUVGlDTZR0x+3vJ19rtXubfTGcaFiKB1sf5/u8eRwxfb6Dicp1T/Zp9+OQQ+BGus+j7gg0li5ws0xdtmKSfquuCTvP4Bd5hJw4ow+F5ai0pvVp6RHMko0iGTDLLnhurk86k3wrMFUt3eXXRqt6AfIX1d2yfj2KziekjlxNqf8qyQys9w5c3ohm179gqP519eXX15urny9srM8UsMlRBqGqKIQMVarqEgKojCRqqBlUoj4aqku8baP5y+e7Vm6vrDu4S0mQAFR0gQ0O6nN5+q6i6jAxdlTQDQl1VNYjQeEl+ffP+n2TmmoIAklVdkQHSh26h6+aAD7vgYZSp5U2FQXFGfxiE29fAMxAnwK8x3mBrEo/XKTfI3VlRZH60IsrjGgSUNiOL9ntf57npJRoLQnMk+BIoUAJxOsVO1Gduw2B/PLgw+GmBytgPfjOJ1qCmDD4ZtfvjZ3/gLVXaDf39NtEkQGMR37GdkuxWS/0TR3SFne6PHDHVdgoZrt6+vjWv/n71riNlhkgHGjAkABUFSJKiyYYm62NB+WrvxVefcP/XiihaT8WPP/FDZO6wT20pSQNK00i8Nf+MMzU4zJ2V/Xx1a/745v3L/zbf/fb2x64sAMqyDnQDAlWXFAVJAEBZ0jWAJFkBCGg6c1Wzzf/29durm9vLt792JCIyMmQDSJqEVKSqsqKrOoIKkhRN0zUDaYqmKRAqoxORRJIkC7u6Ni9fvbq+urkhC5JIkeRfmg4lQwKaLssyUmQdSABqqqJDgFRZmiRFMXXtlUNF0JANRVKBDhTZgLIGE30YGoAS0ICKZGggHQGgTxLm5ur/++3q3cshrUDFQNAAuiQpOjQMqAEJKJIOFB0ZiiGrMPlVIo2SGM4UgW7/Yb5+99P7DjEkqAFkSAZAIP3MCJAAmtT/23+YN69/fnd5+9v1Vb9zIF1VkCQDoMka1KCKkKYBoBnaeP44/nEXOH++u08QbhRSNkgIy2TrfIYz2jbCjmBCyGzHT8XIPZiucy6Z7qRa+4D6eHSRnM/ZySumf7Teeft56+1xFFv7w6QuHqkId56SlWD/qfAR4kKtfnDR//ocqa1HTh3tc6e4ZtWzdfiltdvh8LIyMRvRzzoRkf5U4yTOnRpseHsTsRc8dL8qXyIrkU83OwoN6UtsZQZuvc2LHFNdqUFGqDPVeQl0pyYj7g5F7gmfMViXU3WokldXeVbwePX5JhkA35kcplp0RDpXk5k472pz4u1eXX3hNA6rcrBObXLrLNnFouK9ZXzs9strfxuM7WTeWqQ/ZSzEeVFBn7fv1OWepN9V+UlDXxM7RvaJ+IvpFVY5zYAyPoyffe8X/Ma78634PpzQ9yMJsZ5T8hHpPhUmBB8av4hG7sF0na/Mm9rq49HFjlhTvNBew+q7i7Zm8DPtpHnz+sfry+t/Zhtphna1yJKKJElWkKbI0NChomlA0WQVKUDTDUXRFGikXyqXVagq6ug1pZpQ5NUkJGkqQKpmyBLSAISahgwFqurorT1vPDu0woeXrHtDSe2FoU2FyePbgkgQfqKiF9wN8y1sPby++vXN5csr8+Wby671S6QoAMhAQlCTZUnSdAVpKoCaLqnq6OXKa3zYWQ5+mYzKKBOpEZjbOLjA8s3Vu1fm26ubm8ufr8zb9wkydyCyBKBmAF1TdQlIsmQYQIOGqisGkiVN08D4ZdTiSNb11eWrjiVcAHQDqIYkaSAZdRUAGQEdTYDhgun/XL++7Vg4RoqOdAA1BSBdk4ECkr6qqooMTRrfWey7b3EUWXf4NngDbx6i0ZGgg9RUO4wD5v3RB+thF1guAWl68Klo1DrQREan79hOmHZrLTtkcY0td5zWK+2Fxd8Kk+H423dkl44D1zyfIPtEPfMKv0xmzQdeCVqerAzyXEDQ5+yGRPqf0Ov/yAYdgVmHtnImivN3NgbqFqP0RK7JfcJh5AX0kz7LcYJ7PzZHn4HZW1/MLaaH9565aU/62TE37dtxHYeWH1lZktzOnrp2XCePP1qeb3puvUF7L3/ZwA98pyGYNmw0+mijwXsvNnG5Czc90ieN+sYmBQv2A9tdNBqWSt7CO7Dnl7I00bmFt8cw27MbsQlHRT2jT40P0WrCZ/Y+7VlxXuXUinRcLrekYcTxXDiBelORE8arSqpjFLqO8Urd3xDVilO8NMd4la5v90tG57f7tfTb/UpxVpiNx9STwnc4Ngl7QVKZDa442OY0Hg+7aI3/QC8Lq8kYM0RzHVhDkLIbc+ovTr+lokcIAXhE4DIVlwZIMuKTMXxxBQ08NS+uOD9eXtMJT1IKT4ganrheZJDf12CGRS0h/5wjV2SqMhmPSW0qhAt15t2sUBNpMmp1U1sHXtXk60aq1Mr5AVSNqwBoqtGfCkqdxBjhCPZ/ioIaj5qfUz0/3vbfiUdyikcSNR5JIvDoc1mTyW9nFwJIKZfpiFQhMwWSyDUdocW9eg+4IRiB3LogLBNQ7AyvzksgcmUMeEFXmxojdqW+SsYuhQW75E7s6p7qKYzYJU/Brih2y1pkdHF1/RKB7P+mbUX44vJwCINPVrYwVhBNBiQ6WJOJ0oMWE0EO8ztafsxgM4rwjB3iiya0XInLvoqcntaWEdJVRYMKlICiKJqMVAXKuqxBBCSoIwgUpEtA0mWgK7qiSgBCFanIUA0F6JqqGQb1PaXU8k7HQVpW1m4XsHwGM30/b0V7xQWtLHjv1Srg7atMWfIZFq78keJItRHUg88+7SncpF8H7LvN96eud3UM7aSbnscpSBi+talPzq2SUN53PyvXHJSpn8uAasq6G6moN2uy8KusknXCFc0yG2/k2uO9c3hggNGsQdGOkzjZjwk2f7byfJNfUtUkzg0yyYTF5yQtvr9Y0cfim//0I5l5nJ21qxMRNKzcUbOfwQIjMSugtbiLz75aLMsbqdPMR5GEZj5E7uLc+Uh9vkxIRMwld0y4L7a5NNR4wC4OI+zTpDLMGLayvIesHUF31Y+SZQHw+GhFHxFDxErezxuJilDkL1TQp2ydH7oQJXB9aU9RRn0kaBJ3cQDcuRb42AF43IridC48ppLdqN13opMfanPdBTtKpd2oXb4p4MtI02ReAN1bmw/YJ741EqIQtL0oOV7Qz8VecSGSNpZNFW3UN92nsReH9t3rrN945bFDU8Ljh4h13m89gIhYmh4nw2wRIS01VmDLkEZ953UUV95oVaVKvBJOGEpZ++Dejx8BTOUqEoROJOonUJqiyiWwKGc9FwTZ1k7UskJBmjPQ1MnOVcguua57QaEUUwzGkMnPPgYL+GXJe27HbCwjyPoME5sab1Hu27mEkJ92FbibfYSggv3ptCAwoJsllwPqkswOAGtZCigFehwLAaW49WUA2VBmBFABiwAE2isHUIEl/R4ep6nPdIV2o27+3uLF/Lq8s2Pzqgv5LSlXWsYv5WwW8eGcUC2ihE8iPgWsaQ9Kjah1icIRkQX5PiYn+Oeg0SUn2vOW4u2in1kdXp12QwU1S954U5KciDKkkvoqYSbpsCBwaZE+QcpoPS4BJAnfueDDxY63t3YiyugFac5QUSc7Vwm35LruMnopphhoIZOffQwWcMqS99yO2Syjwxk2g9Z4i3LfrjL6DPYjsDDew+ObL4zXdbNkYbwuyewuvZbCeCnQ4yiMl+I2CuNzVFtqvEVBYldhfAZIFFjq7uFxmphMV2g3jhbvzQWms1ayS66rrmS3pFxpJbuUs1HJlpE+I7aKqGSTiM98if0YOQVD8anuLGbYlpyZzlt3TkVPk73qWXFjhtlphTNnrGhRbvhETp9yM/jD3g521HvBa4W4BQ26qgMxINTJ4YRAU9W5APxU2c+FPXuv+nEKHUz7OgU1S85ocyTZ+qKT4x08/ARXvdIui0GVNukTnIzW4wI4kvLtBhCZK4CUgZzvildChTNIHEnOVRJKOa57lSsVUQyMtEnPqvcFHC/lO1fkTpnVV7SkOa43KfmKcM/5V7KObAV6wWkFq0cvS65eHaWY1W3XsmqVCvM4VqxSUeurVZIyw2pVyVcE3M2/SnVkKxDuTqtTvAerGyOTd+YAyVlXpFKOq16Nqkm40pWoVMbGKpSkzrAKdWQsAjRXvvpUkVEgxJ5WnfgP11IzxnlXmyqLKXxLNhlhzh5fJTpXjpTzXHfhJhdSDMSQiM+s/QWcMec8ryM2Szj6DCWcCmcx7jp/GafKWKhPnEo5vZpZsphTlWNmJ15LQScX53GUdHJhG0UdfYaiToWzGACcv7BTZSwUAE/FHf4D1o2a2VvzAOesJZ6c56qLPA0ZV1rmyaVsFnqMGQo9VdZigHTlxZ6alEJh91TwETFky80y5y36xEFs7czo/nDYPQgo/VTJc8aBNum5Mqoa53UXg2qiioGhbhaLjMcCjlvjv4TjNs+vyzOUilr8Rbr3/GWjNvsZvOdUQqLQz5KFpLY0i7j7WopKNaEeR2mpJnLjjLs8Q4GpxV8kbM5fbGqznwE2T4UnUYPXjbXVdxe/57Ut+CKwvOqSFVHSlRauarI2T8ur8swoLaKI1cVgTCmLzvlmS9JElryGGJ1wn5NWl55Fz1wECy0/2lYP2evqHLlgzpY3ttTINl2C8PW0nkOvHcdkn8D31kotCUIqIvkTPk3S5RKoVPDuxiLECYvWWkl+e/kP89XVy9dvWx1Pj9nw6PqNd+db8X2IJ/e/RYmTEm6rIYLXGskt7wBw2wP9Iib9t6JAlEx4xg7NCjUl15urN1cvb99f191Mg5qsImRoioFUgHRFUZCk6xrSDWjoqoIMRYWKrquaAhVJV5CkyTJEuiYBCHVkaIYkI6CqhsbJXW+HQZFXglaysna7wGHAhfT9vBVnDLjAe69yNwoyVJG5Yo0rf6Q4Um0kJ9sw2JvUiWIcUGeIq/9ueF03wqCtTZ1Heria9Zt6P5fB05S1+Mytxs/En4r5EntRrUKAN2jt8d45PDAgaNagaMdJnMJx6cVoujwnQcrvuh+BXCNM+s8+efjzGUc4L/lyg/IGxQaIBJ99UV9XF4Eax87wxt0Oyqcp+Vg19i3E7y3P9/y7BVeGjnKKT1KtKMJhbPq+uRtYTakDrBV/rLflhW05zSA2/4XDYKxIRXNOUuUf73q/rSCu1N6pxB1xS77cELdBcW1fWD2KxxtDOyifMHSsGtf8DdWjlOIRtHYzbwYNYAZo4P75rLk/nCXsW1Q0X6E6OTq1Fhf8gMSMX9Uqr/xMPVgF7e9kcvdgrteBznkRqJD7NYdu1jx5LJUGF7pUa6ZbQiv3vGR+Ks3gp5zvgJn39hdBV6oMX6Zy8ldKHS52Tnq2q2HS7VE3x3N6mesSPkXN3XUrnLn5b4umeCeusuTtyZ20T+48XpEDm89vlt57XpVVvP/n/TEtd2BvOVEL1dacynkFydRqJoiUtecsFFMdtikRv0JsQTG6tyfIk7SeItABh3svjrG7ri1mR7FWVK8+CnWHYzMBaxyOPNBWrOkSCPGRsPzprefH1d3LEGiiVjI7uU9LDQbICsoOurlySRAoyZ9yhEm67E4T9ukLfFP/bjkEpQAEhuTvAkIg4MzCAHfuTj/4ecBsTGuIPN8a25DAolDj9Dk/ocMmfm/akAQzYsf+mCtM2sbeTZs/KOwXSQUKtitNmltyCkMfEv35h2EZL93PHtxzjvUrfSCQ5gnuFe7C/Fj4bT5DvEV7yukenyHlzHiJz5Ao87v2Qtf39Ei0yrt7euStX9wDgYALzwa4CwNH4Xf2DPEWDY6n23qEDNs6EFXk5Ts9bNd08w6FmOu4dqdH0MadOxAo0pwAy+HGHTrqK7g5elBQ0Xh8ukZH0MAtOmEVeoFON18z8Kv7UyAEc05bU+6icKNCfPbMLOMtGAkITE5AwEGjS+JAJgF3GLg/3IWWa9nezosfzEMYfHm4KOvZlr3DFz9dvrm5Ypjj2kGwyxuNy2mGRVpJHXdY0Nvr35hVl7YRJVBlrcKdsnLAxmkskI/hwh3RGYV4NLZZk3piQJrCbekBEwnqjKIsgO41/o2VCoh4FuNGyDITbghcxRgjyby++C2vcIxR1SzVuTGCLQ0es6+FMMq3spURRukb6yQQ8ZyNj5BlJmgWuIYyRpJ5ofm0vjLDkK4Rz8WsvTAKsY6VmJFCL70uwyh2c5UGSjy/7DlGmJnwfS0rOKPEnjcanFZ3ZhnUFZUDBK38DEvRLBLmoKTwv8eHSRZxmLSGKuKs5TjKatwJUiZpdiW55cIlxsDfPZj3fgeo6PPWGNvCiEOVLl4LgAtBFOEYM8TzBDX8Fbxs9kIQaAG8iXDcWubMwcaAs4JNQxJxSENktADMNOUQjjG9DE8Aw1m7y6JLUxomaEkVjbc4xL6Dzb3lW3f52cnyaQoHOVQYla9bnP3uWFH8bHvY/HXz7Hvp+XmauH333fMPSaetg5n04E/PvzNdK7ZSmndhcH/IR+9oZokQBRSpnQxkFgZSFwMkdzJQWBjIXQwk1MlAY2GgdDGQuxmUY0BBX+2kr3Ghr3XRT8/wT6cPAQuD30sj+jADi81fExSczkbTh72BhgEcwYBpLMYwULgwgEji04VuSEKEwbYyDnA0B1jlIBP6MJkDqsEqJy114yroRm71+TnlHWZUMnQiV58M8mwydFk8YlBzjbxMRV6aQP5DkgVYcRx69n1cxPsiG8VhGITmHkeRdZcu+5TcL99cX12++qf5+t3r29eXb17/79Wrszylic2ijJE4D/bd8t9JXNjugs8E+SpC10OJUbNrvZ6zeG6Wx6d9cBwcRZ69w2bkBIesKxxyrDNhFZ8P6dgO6/r1mzdXP1++SXVtJhleU9NIkWuaRorKrmm9FrVVwKpp09xbnm+aiXCknyslt7MPXz+kk077/s70/G1w9sPGv9/tvv7/AQAA//8nkflDfzEDAA==", + "entry_points_by_type": { + "CONSTRUCTOR": [], + "EXTERNAL": [ + { + "offset": "0x65d", + "selector": "0x151e58b29179122a728eab07c8847e5baf5802379c5db3a7d57a8263a7bd1d" + }, + { + "offset": "0x574", + "selector": "0x41b033f4a31df8067c24d1e9b550a2ce75fd4a29e1147af9752174f0e6cb20" + }, + { + "offset": "0x2cb", + "selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9" + }, + { + "offset": "0x4f1", + "selector": "0x79dc0da7c54b95f10aa182ad0a46400db63156920adb65eca2654c0945a463" + }, + { + "offset": "0x2ad", + "selector": "0x80aa9fdbfaf9615e4afc7f5f722e265daca5ccc655360fa5ccacf9c267936d" + }, + { + "offset": "0x524", + "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e" + }, + { + "offset": "0x682", + "selector": "0xd63a78e4cd7fb4c41bc18d089154af78d400a5e837f270baea6cf8db18c8dd" + }, + { + "offset": "0x5e9", + "selector": "0x16cc063b8338363cf388ce7fe1df408bf10f16cd51635d392e21d852fafb683" + }, + { + "offset": "0x638", + "selector": "0x1aaf3e6107dd1349c81543ff4221a326814f77dadcc5810807b74f1a49ded4e" + }, + { + "offset": "0x30f", + "selector": "0x1e888a1026b19c8c0b57c72d63ed1737106aa10034105b980ba117bd0c29fe1" + }, + { + "offset": "0x28e", + "selector": "0x216b05c387bab9ac31918a3e61672f4618601f3c598a2f3f2710f37053e1ea4" + }, + { + "offset": "0x5a1", + "selector": "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c" + }, + { + "offset": "0x4bd", + "selector": "0x2a4bb4205277617b698a9a2950b938d0a236dd4619f82f05bec02bdbd245fab" + }, + { + "offset": "0x4d5", + "selector": "0x2c4943a27e820803a6ef49bb04b629950e2de615ab9ac0fb8baef037b168782" + }, + { + "offset": "0x2eb", + "selector": "0x2e4263afad30923c891518314c3c95dbe830a16874e8abc5777a9a20b54c76e" + }, + { + "offset": "0x442", + "selector": "0x358a2fe57368393087d3e6d24f1e04741c5bdc85e3e23790253e377f55c391e" + }, + { + "offset": "0x270", + "selector": "0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60" + }, + { + "offset": "0x48d", + "selector": "0x3c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068" + } + ], + "L1_HANDLER": [] + }, + "abi": [ + { + "members": [ + { + "name": "low", + "offset": 0, + "type": "felt" + }, + { + "name": "high", + "offset": 1, + "type": "felt" + } + ], + "name": "Uint256", + "size": 2, + "type": "struct" + }, + { + "data": [ + { + "name": "from_", + "type": "felt" + }, + { + "name": "to", + "type": "felt" + }, + { + "name": "value", + "type": "Uint256" + } + ], + "keys": [], + "name": "Transfer", + "type": "event" + }, + { + "data": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "spender", + "type": "felt" + }, + { + "name": "value", + "type": "Uint256" + } + ], + "keys": [], + "name": "Approval", + "type": "event" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "name", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "symbol", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "name": "totalSupply", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "name": "decimals", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "account", + "type": "felt" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "balance", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "spender", + "type": "felt" + } + ], + "name": "allowance", + "outputs": [ + { + "name": "remaining", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "permittedMinter", + "outputs": [ + { + "name": "minter", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "initialized", + "outputs": [ + { + "name": "res", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "get_version", + "outputs": [ + { + "name": "version", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "get_identity", + "outputs": [ + { + "name": "identity", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "init_vector_len", + "type": "felt" + }, + { + "name": "init_vector", + "type": "felt*" + } + ], + "name": "initialize", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "recipient", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "sender", + "type": "felt" + }, + { + "name": "recipient", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "spender", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "approve", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "spender", + "type": "felt" + }, + { + "name": "added_value", + "type": "Uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "spender", + "type": "felt" + }, + { + "name": "subtracted_value", + "type": "Uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "recipient", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "permissionedMint", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "account", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "permissionedBurn", + "outputs": [], + "type": "function" + } + ] +} \ No newline at end of file diff --git a/rpc/tests/contract/0x03a8Bad0A71696fC3eB663D0513Dc165Bb42cD4b662e633e3F87a49627CF3AEF.json b/rpc/tests/contract/0x03a8Bad0A71696fC3eB663D0513Dc165Bb42cD4b662e633e3F87a49627CF3AEF.json deleted file mode 100644 index 9aa7f0b8..00000000 --- a/rpc/tests/contract/0x03a8Bad0A71696fC3eB663D0513Dc165Bb42cD4b662e633e3F87a49627CF3AEF.json +++ /dev/null @@ -1,11359 +0,0 @@ -{ - "jsonrpc": "2.0", - "result": { - "sierra_program": [ - "0x1", - "0x2", - "0x0", - "0x2", - "0x0", - "0x0", - "0xb6b", - "0x495", - "0xdc", - "0x52616e6765436865636b", - "0x0", - "0x4761734275696c74696e", - "0x66656c74323532", - "0x4172726179", - "0x1", - "0x2", - "0x536e617073686f74", - "0x3", - "0x537472756374", - "0x1baeba72e79e9db2587cf44fedb2f3700b2075a5e8e39a562584862c4b71f62", - "0x4", - "0x436f6e747261637441646472657373", - "0x3693aea200ee3080885d21614d01b9532a8670f69e658a94addaadd72e9aca", - "0x6", - "0x7", - "0x2ee1e2b1b89f8c495f200e4956278a4d47395fe262f27b52e5865c9524c08c3", - "0x456e756d", - "0x28f184fd9e4406cc4475e4faaa80e83b54a57026386ee7d5fc4fa8f347e327d", - "0x8", - "0x9", - "0x5", - "0xa", - "0x14de46c93830b854d231d540339ee8ae16bb18830a375fe81572a472d5945f1", - "0xc", - "0x2872422f4eae164f52022a3d9ed2c5a2a9065da5f91ed37431a700dbe6e986b", - "0xb", - "0xd", - "0x753332", - "0x3288d594b9a45d15bb2fcb7903f06cdb06b27f0ba88186ec4cfaa98307cb972", - "0x4275696c74696e436f737473", - "0x2c0d43e92d76a45659f0b697b9d8399be5ce9caf9809f01d805a7827a9f368b", - "0x132e9b3bde7bb5a3b35e9cb467df6497f9e595756495bb732f6d570d020415b", - "0x3eb025eec2624dfbbbc1527da25edeeadb5d065598bf16c4d6767d622f68b3", - "0x28c643274592e2abc8d6d5b6be3ac4d05f693274f69a71116ba9f34e71f0e49", - "0xd2df414ffcda9bc327e41f128f46e0121aaf753e4b9b3aa3842805109c6b9c", - "0x168a19d9c33230785040a214b5b2861704cabc56be86e2d06b962ccb752e178", - "0x25d56f41e1487d276dcf6b27f6936fa06c930e00004e9174cd19b99e70bbe57", - "0x35c73308c1cfe40d0c45541b51ef1bdfd73c604f26df19c53c825cb3f79337f", - "0x49cb7bc68923048657537e3d62ec3c683cd4a72c21defe9aafefe955763bc3", - "0x12", - "0x13", - "0x14", - "0x15", - "0x16", - "0x17", - "0x18", - "0x19", - "0x45634f70", - "0x53797374656d", - "0x1a", - "0x3aa9a19f05f2852f2cac587710738c8ca96ca6f1d55402522f4e9080c417782", - "0x1d", - "0x19b3b4955bdcfa379bfc5a4949111c4efdd79128f8676f4d0895419b22e2ad7", - "0x1f", - "0x556e696e697469616c697a6564", - "0x1c", - "0x22", - "0x273a31807ab152305389aa8b68ec07ccbfe8dfde299241facb5cd7d87c7eb8a", - "0x23", - "0x1dd6d80faabe40b870e2bac9bae20133f8a150c977bf480085e39aaa4e0362a", - "0x26", - "0x11c6d8087e00642489f92d2821ad6ebd6532ad1a3b6d12833da6d6810391511", - "0x17b6ecc31946835b0d9d92c2dd7a9c14f29af0371571ae74a1b228828b2242", - "0x2a", - "0x262b845bbedf41820bc2b34dc2faff0bab3fa4d4d8a1bb282deca598d4a3627", - "0x2b", - "0x2f528e3c691e195fca674982b69c0dc4284f206c3ea4d680220e99b59315a92", - "0x2d", - "0x506564657273656e", - "0x2f", - "0x1b", - "0x753634", - "0x13d20f70b017632fd676250ec387876342924ff0d0d3c80e55961780f4e8f", - "0x33", - "0x179749167d3bd5ec9f49b35931aeaa79432c7f176824049eca4db90afd7d49d", - "0x32", - "0x34", - "0x35", - "0x3d7bb709566af24f4a28309c9d9b89d724fd194c2992d536ab314b4d7eae195", - "0x37", - "0x3209ac1b85c2191fe97194b13f4bdfed29e89e78a1338d9d73cb98474dfae5a", - "0x38", - "0x10", - "0x358506fd2d97ec152c79646571b0b818eb31f8ed5ffd4080a2e22571074b909", - "0x3a", - "0x436c61737348617368", - "0x3c", - "0x11771f2d3e7dc3ed5afe7eae405dfd127619490dec57ceaa021ac8bc2b9b315", - "0x12ac6c758b8836b49f5f132ddaee37724bc734e405ca6a2514dfcd9f53aec58", - "0x3f", - "0xad00da0c82d9bb5619cd07bc862005938954f64876663b63f058d5351bbbb1", - "0x41", - "0x25b1f5eb403a7e1245e380d4654dabdc9f9f3158b939512eb4c8cbe540d220f", - "0x43", - "0x72eed1ff90454d4ee83e0d0841db171293ff5d1b991ef68095521941376efd", - "0x44", - "0x7538", - "0x12273f170557bf9e9616162ba3a242ac99ba93810c9c4d21d3c4575f07822ae", - "0x46", - "0xf", - "0x3840086d8220f2d1639cf978fb701dd671faa8e4b9973fd7a4c3cf1f06d04e", - "0x48", - "0x1bdcbe0bb2973c3eed7f3cd959974b2236966c71d9784fcffce00300852eee9", - "0x4a", - "0x4b", - "0xc9447c0781360856f987ed580e881ac951c6a5015bde94c79cb189cc8cccb0", - "0x4c", - "0x426f78", - "0x29d7d57c04a880978e7b3689f6218e507f3be17588744b58dc17762447ad0e7", - "0x4e", - "0x125048bba125edb4f72a816890f2f63324d796e84a92b9bd1eb3a97f4e938ee", - "0x50", - "0x4e6f6e5a65726f", - "0x75313238", - "0x2e655a7513158873ca2e5e659a9e175d23bf69a2325cdd0397ca3b8d864b967", - "0x53", - "0x54", - "0x55", - "0x32463e9d13536f0a0b55a828c16b744aa8b58f21fd9e164166d519bb3412bcc", - "0x56", - "0x27f9c9f4e4a3578b197e28a3ed578eb2b57f93483b1dc21e6770e7e7b704f34", - "0x59", - "0x28f8d296e28032baef1f420f78ea9d933102ba47a50b1c5f80fc8a3a1041da", - "0x25", - "0x1eaf57b3a55713f7b468e69aa1d7c98efdf6cf624a2d3d2eb66831111304527", - "0x5b", - "0x3d37ad6eafb32512d2dd95a2917f6bf14858de22c27a1114392429f2e5c15d7", - "0x156b6b29ca961a0da2cfe5b86b7d70df78ddc905131c6ded2cd9024ceb26b4e", - "0x341d38eba34b7f63af136a2fa0264203bb537421424d8af22f13c0486c6bd62", - "0x61", - "0x2df4ac612d9f474861b19bfadb9282eb6a9e96dbffcd47e6c1fe7088ef7e08b", - "0x62", - "0x1f43b8beb72009fc550a271a621f219147c6418e55f99e720aa9256b80b9a2a", - "0x6c", - "0x3d084941540057ac1b90e9a1a0c84b383e87f84fada8a99f139871e1f6e96c0", - "0xebaa582aec1bbd01a11c61ed232150d86283ceff85ead1aa2143443285ecd4", - "0x6f", - "0x2ce5530c67c658502ea15626eae6f33d2ffd2c4f7aedda0fe2fe23e013169d7", - "0x101dc0399934cc08fa0d6f6f2daead4e4a38cabeea1c743e1fc28d2d6e58e99", - "0xd3a26a7712a33547a4a74e7594a446ca400cb36a0c2c307b92eff9ce82ff8", - "0x74", - "0x38e79b5062b6ee36022a8f19492101094c935ac54b64421943cf85730efa145", - "0x1e75a35b461a190303f5117738d6cd6cb9c3330a1be0c7e80290facbcdb72e7", - "0x13c91f3cba438dd54eb596a082e165d9ede6281c321682acd3c28e15602ffb", - "0x78", - "0x1338d3578fef7f062927553e61e2ae718b31f7ddb054229e02303195a8e937d", - "0x7b", - "0x2132e29887635235b81487fc052f08dcce553a7bd46b2ec213485351698f9f2", - "0x7d", - "0x29299a4dd8765e5a9821476c7b9eaceeff6cc036d7a0c0dd8af3327e16e738f", - "0x10f7a39f148bf9911ddb05e828725f238c5461d0e441b8a55ba8195ddc99eaf", - "0x80", - "0x3cffb882a9a02817bd5278228221c142582b97b73612a2bbad46cdded2c9c26", - "0x82", - "0x31d5a371e34511d0b36bb55d7b0cfca1b435f02053210dd4e77f1795b096fe9", - "0x84", - "0x3431146377142ad86dc873f4632d2e74caabb9230a37c8de068dd9513ea9898", - "0x23fbc0021ccc20b54491663a4362d8a5bc4b7622741854f8f82b6b7d98740a6", - "0x87", - "0x3ded11b5c9ebee7f65144ad131a8e99a0a0830b43a6f55f34b7d3bf2b573302", - "0x89", - "0x2f64612c614fe41cb181d4813fe491b6992fd5cb42a2f2506362892a67ed730", - "0x8b", - "0x2a6f1ee5bbefc28eff9a98f2cbd5f2792f8f09998567ff2689faac1b54841b9", - "0x2d61d819a9e4e98f23d58ee684c80f695821db9bc0dd70d02f6228b3d35013e", - "0x34f3666fe156bf2469fed4ce24c81ae279169871818ad2c3733d6b0f846b1a1", - "0x8f", - "0x92647fce35633aa7cfaae80402c5d0df0f10c80acd6d4bf29224e8a80804a4", - "0x9fcd95695b8c42ae1ac98f26d057950e768e98cd086c08bc62fc58b62ef6f0", - "0x92", - "0x23282f06f16b4d2d37f3d174562114d8e0460305ae51765c43e40266d6110d9", - "0x17fb4856a1135e156fe87a2e0d50bd936f7437e8e927a4437d47e4f1e485f09", - "0x16f3778660f5b9a5d10874a05d72e83b94fe89bac3d59b05e391352b1a7aec1", - "0x1e7a3e04b3d1e82da51c455bc65a8a044bd017c2784aa56b04898a279eea98c", - "0xc087f9a3230c11dd5a7f2adbd0fee01c0a5eb6182581c2598b6b0ade81bc3a", - "0x3439adb3e4f0f99830a6dfb70c506440f8fb2ad2cb18512dcf5062ee25b3918", - "0x18508a22cd4cf1437b721f596cd2277fc0a5e4dcd247b107ef2ef5fd2752cf7", - "0x9a", - "0x3dc696c835d6ea393cef16637741cc327e8f6be35db50ef242ea06cdeae47aa", - "0x9b", - "0x3808c701a5d13e100ab11b6c02f91f752ecae7e420d21b56c90ec0a475cc7e5", - "0x9d", - "0x19367431bdedfe09ea99eed9ade3de00f195dd97087ed511b8942ebb45dbc5a", - "0x9e", - "0x9f", - "0xa0", - "0x26c97610bba318e7be7ed9746815afccc1b89e6a3174fbec5d5534288167ac7", - "0xa1", - "0xa3", - "0xa4", - "0x3f5595797ca73d9ac98a47c023f16f9675e924b1f5b8732cb923783062e0e9c", - "0xa5", - "0x2279da0a991198935efd413ccdec7236f9ff34ecfc870ec2376d7f044337bdb", - "0xa7", - "0xe", - "0x29a4451ccf4ec2f45bf46114a4107522e925bd156e7a0755f94e1b4a9f0f759", - "0x99", - "0x5c", - "0x95", - "0x96", - "0x97", - "0x98", - "0x86", - "0x8d", - "0x91", - "0x94", - "0x76", - "0x7f", - "0x8e", - "0xc557fedbc200e59b686799bd8c95f94bc6452bc987295354063228797ffe79", - "0xaa", - "0x1f5d91ca543c7f9a0585a1c8beffc7a207d4af73ee640223a154b1da196a40d", - "0xad", - "0xaf", - "0x97667cd4a7b6c408c987bc31ccfeb87330105dcbea0ccc479dcef916c9c14e", - "0xb0", - "0x82e10b563da3b07f9855f46392dec37b4b43359d940178db92615e0b07446", - "0xb2", - "0x53746f726167654261736541646472657373", - "0x248e8fae2f16a35027771ffd74d6a6f3c379424b55843563a18f566bba3d905", - "0x1b59390b367137d6eb44c3792fc90406d53b6e7b6f56f72cb82d4d19b7519d0", - "0xb6", - "0x53746f7261676541646472657373", - "0x161ee0e6962e56453b5d68e09d1cabe5633858c1ba3a7e73fee8c70867eced0", - "0x2d7b9ba5597ffc180f5bbd030da76b84ecf1e4f1311043a0a15295f29ccc1b0", - "0x90d0203c41ad646d024845257a6eceb2f8b59b29ce7420dd518053d2edeedc", - "0x14a7ddbb1150a2edc3d078a24d9dd07049784d38d10f9253fc3ece33c2f46a3", - "0xbc", - "0x4c63dc3c228ce57ac3db7c6549a0264844f765e132dc50ea81033c93e01e83", - "0xbd", - "0x1c85cfe38772db9df99e2b01984abc87d868a6ed1abf1013cf120a0f3457fe1", - "0x17fc4845052afc079cefa760760a2d2779b9b7b61a8147b160ffdac979427b0", - "0xc1", - "0x2e53ad4d5ceb4d3481ef21842c2a6b389bd01e8650d6b4abe90a49e7067d43b", - "0xc2", - "0x73", - "0x2f0c6e95609e1148599821032681af9af0899172cfe34d8347ab78e46cfd489", - "0xc4", - "0x2fffb69a24c0eccf3220a0a3685e1cefee1b1f63c6dcbe4030d1d50aa7a7b42", - "0x1289347a53bd537cb2be622dc3ef1bae97ae391de352ed7871b08a409f130a8", - "0xc7", - "0xfcd97190f892337fa74b5f71ab0858bd462389f0dc97f3e8491dc3eb8de023", - "0xc8", - "0x2c7badf5cd070e89531ef781330a9554b04ce4ea21304b67a30ac3d43df84a2", - "0x39a088813bcc109470bd475058810a7465bd632650a449e0ab3aee56f2e4e69", - "0x107ac1be595c82e927dbf964feb2e59168314a4f142e387bb941abb5e699f5e", - "0xcc", - "0x4563506f696e74", - "0xcf", - "0x3e4e624a497e446ce523f5b345c07be6fab07dbff47534532460e9a8288be43", - "0xd1", - "0x622be99a5124cfa9cd5718f23d0fddef258c1f0e40a1008568f965f7bd6192", - "0xd2", - "0xcd9deb349f6fb32e657baec1ad634c533f483d4a7d58d9b614521369f9345a", - "0xd4", - "0x19b9ae4ba181a54f9e7af894a81b44a60aea4c9803939708d6cc212759ee94c", - "0x293a0e97979ae36aff9649e1d1e3a6496fc083b45da3f24c19ad5e134f26c9d", - "0xd8", - "0x45635374617465", - "0xc048ae671041dedb3ca1f250ad42a27aeddf8a7f491e553e7f2a70ff2e1800", - "0x442", - "0x7265766f6b655f61705f747261636b696e67", - "0x656e61626c655f61705f747261636b696e67", - "0x77697468647261775f676173", - "0x6272616e63685f616c69676e", - "0x73746f72655f74656d70", - "0x66756e6374696f6e5f63616c6c", - "0x21", - "0x656e756d5f6d61746368", - "0x7374727563745f6465636f6e737472756374", - "0x61727261795f6c656e", - "0x736e617073686f745f74616b65", - "0x64726f70", - "0x7533325f636f6e7374", - "0x72656e616d65", - "0x7533325f6571", - "0x7374727563745f636f6e737472756374", - "0x656e756d5f696e6974", - "0x6a756d70", - "0x626f6f6c5f6e6f745f696d706c", - "0x6765745f6275696c74696e5f636f737473", - "0x11", - "0x77697468647261775f6761735f616c6c", - "0x64697361626c655f61705f747261636b696e67", - "0x1e", - "0x61727261795f6e6577", - "0x20", - "0x66656c743235325f636f6e7374", - "0x4f7574206f6620676173", - "0x61727261795f617070656e64", - "0x24", - "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", - "0x496e70757420746f6f2073686f727420666f7220617267756d656e7473", - "0x616c6c6f635f6c6f63616c", - "0x66696e616c697a655f6c6f63616c73", - "0x73746f72655f6c6f63616c", - "0x27", - "0x29", - "0x28", - "0x2c", - "0x2e", - "0x39", - "0x31", - "0x30", - "0x36", - "0x3b", - "0x3e", - "0x40", - "0x3d", - "0x42", - "0x45", - "0x47", - "0x417267656e744163636f756e74", - "0x49", - "0x4d", - "0x302e332e30", - "0x61727261795f736e617073686f745f706f705f66726f6e74", - "0x4f", - "0x756e626f78", - "0x51", - "0x636f6e74726163745f616464726573735f746f5f66656c74323532", - "0x66656c743235325f737562", - "0x66656c743235325f69735f7a65726f", - "0x52", - "0x57", - "0x56414c4944", - "0x617267656e742f6e6f6e2d6e756c6c2d63616c6c6572", - "0x100000000000000000000000000000001", - "0x5a", - "0x58", - "0x617267656e742f696e76616c69642d74782d76657273696f6e", - "0x647570", - "0x5f", - "0x60", - "0x63", - "0x5d", - "0x5e", - "0x414e595f43414c4c4552", - "0x6d", - "0x7536345f6f766572666c6f77696e675f737562", - "0x4163636f756e742e657865637574655f66726f6d5f6f757473696465", - "0x6e", - "0x537461726b4e6574204d657373616765", - "0x706564657273656e", - "0x1bfc207425a47a5dfa1a50a4f5241203f50624ca5fdf5e18755765416b8e288", - "0x70", - "0x6a", - "0x68", - "0x64", - "0x67", - "0x66", - "0x65", - "0x6b", - "0x69", - "0x617267656e742f6475706c6963617465642d6f7574736964652d6e6f6e6365", - "0x617267656e742f696e76616c69642d74696d657374616d70", - "0x617267656e742f696e76616c69642d63616c6c6572", - "0x636c6173735f686173685f7472795f66726f6d5f66656c74323532", - "0x72", - "0x2ceccef7f994940b3962a6c67e0ba4fcd37df7d131417c604f91e03caecc1cd", - "0x7265706c6163655f636c6173735f73797363616c6c", - "0x75", - "0x77", - "0x79", - "0x71", - "0x617267656e742f696e76616c69642d696d706c656d656e746174696f6e", - "0x617267656e742f6f6e6c792d73656c66", - "0x7a", - "0x617267656e742f6261636b75702d73686f756c642d62652d6e756c6c", - "0x7c", - "0x636c6173735f686173685f636f6e7374", - "0x7e", - "0x81", - "0x617267656e742f696e76616c69642d63616c6c73", - "0x617267656e742f6e756c6c2d6f776e6572", - "0x100000000000000000000000000000002", - "0x83", - "0x7536345f636f6e7374", - "0x85", - "0x88", - "0x8a", - "0x8c", - "0x90", - "0x93", - "0x617267656e742f677561726469616e2d7265717569726564", - "0x617267656e742f63616e6e6f742d6f766572726964652d657363617065", - "0x93a80", - "0x617267656e742f696e76616c69642d657363617065", - "0x75385f636f6e7374", - "0x7533325f746f5f66656c74323532", - "0x3f918d17e5ee77373b56385708f855659a07f75997f365cf87748628532a055", - "0x68cfd18b92d1907b8ba3cc324900277f5a3622099431ea85dd8089255e4181", - "0x1ffc9a7", - "0xa66bd575", - "0x3943f10f", - "0x617267656e742f696e76616c69642d7369676e6174757265", - "0x9c", - "0xa2", - "0xa6", - "0x7374727563745f736e617073686f745f6465636f6e737472756374", - "0x26e71b81ea2af0a2b5c6bfceb639b4fc6faae9d8de072a61fc913d3301ff56b", - "0x617267656e742f696e76616c69642d677561726469616e2d736967", - "0x617267656e742f696e76616c69642d63616c6c64617461", - "0x395b662db8770f18d407bbbfeebf45fffec4a7fa4f6c7cee13d084055a9387d", - "0x29ce6d1019e7bef00e94df2973d8d36e9e9b6c5f8783275441c9e466cb8b43", - "0x617267656e742f696e76616c69642d6f776e65722d736967", - "0x3ad2979f59dc1535593f6af33e41945239f4811966bcd49314582a892ebcee8", - "0x1a1e41f464a235695e5050a846a26ca22ecc27acac54be5f6666848031efb8f", - "0x617267656e742f666f7262696464656e2d63616c6c", - "0xa8", - "0xa9", - "0xab", - "0x656d69745f6576656e745f73797363616c6c", - "0xae", - "0xac", - "0xb1", - "0x21adb5788e32c84f69a1863d85ef9394b7bf761a0ce1190f826984e5075c371", - "0xb3", - "0xb4", - "0xb5", - "0xb7", - "0x11ff76fe3f640fa6f3d60bbd94a3b9d47141a2c96f87fdcfbeb2af1d03f7050", - "0x7536345f746f5f66656c74323532", - "0x73746f726167655f616464726573735f66726f6d5f62617365", - "0x73746f726167655f77726974655f73797363616c6c", - "0xfe80f537b66d12a00b6d3c072b44afbb716e78dde5c3f0ef116ee93d3e3283", - "0x6c6962726172795f63616c6c5f73797363616c6c", - "0xb9", - "0xba", - "0x52657475726e6564206461746120746f6f2073686f7274", - "0x73746f726167655f626173655f616464726573735f636f6e7374", - "0x1ccc09c8a19948e048de7add6929589945e25f22059c7345aaf7837188d8d05", - "0xb8", - "0x73746f726167655f726561645f73797363616c6c", - "0xbb", - "0x31e7534f8ddb1628d6e07db5c743e33403b9a0b57508a93f4c49582040a2f71", - "0x1c0f41bf28d630c8a0bd10f3a5d5c0d1619cf96cfdb7da51b112c420ced36c9", - "0xf920571b9f85bdd92a867cfdc73319d0f8836f0e69e06e4c5566b6203f75cc", - "0xbe", - "0x636c6173735f686173685f746f5f66656c74323532", - "0xbf", - "0x617267656e742f6e6f2d6d756c746963616c6c2d746f2d73656c66", - "0x1746f7542cac71b5c88f0b2301e87cd9b0896dab1c83b8b515762697e521040", - "0xc0", - "0x13f17de67551ae34866d4aa875cbace82f3a041eaa58b1d9e34568b0d0561b", - "0xc3", - "0x7536345f6571", - "0xc5", - "0x109831a1d023b114d1da4655340bd1bb108c4ddf1bba00f9330573c23f34989", - "0x3a3f1aae7e2c4017af981d69ebf959c39e6f1c53b8ffa09a3ed92f40f524ec7", - "0x7536345f6f766572666c6f77696e675f616464", - "0xc6", - "0x7536345f616464204f766572666c6f77", - "0x75385f746f5f66656c74323532", - "0xc9", - "0x6765745f657865637574696f6e5f696e666f5f73797363616c6c", - "0xca", - "0x61727261795f676574", - "0x496e646578206f7574206f6620626f756e6473", - "0x753132385f636f6e7374", - "0xb1a2bc2ec50000", - "0x753132385f6f766572666c6f77696e675f737562", - "0x7533325f6f766572666c6f77696e675f737562", - "0x617267656e742f6d61782d6573636170652d617474656d707473", - "0x617267656e742f6d61782d6665652d746f6f2d68696768", - "0x7533325f6f766572666c6f77696e675f616464", - "0xcb", - "0x7533325f616464204f766572666c6f77", - "0xcd", - "0x63616c6c5f636f6e74726163745f73797363616c6c", - "0x66656c743235325f616464", - "0x617267656e742f6d756c746963616c6c2d6661696c6564", - "0x1d9ca8a89626bead91b5cb4275a622219e9443975b34f3fdbc683e8621231a9", - "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", - "0x1eb8543121901145815b1fa94ab7062e6ecb788bee88efa299b9866bab0bd64", - "0x3c93161122e8fd7a48238feee22dd3d7d49a69099523547d4a7cc7c460fc9c4", - "0x250670a8d933a7d458c994fc396264aba18fc1f1b9136990bb0923a27eaa060", - "0x2811029a978f84c1f4c4fc70c0891f83642ded105942eda119ddc941376122e", - "0x11a96d42fc514f9d4f6f7083acbde6629ff1d2753bf6d25156be7b03e5e1207", - "0x67753421a99564465b580dcc61f1e7befc7fd138c447dae233bba1d477458c", - "0xd885f12a9241174cd02e71d9c751eec91ebc58dffa0addd86642969cbe006f", - "0x2e200b0f001d9c2e6cb94ab8cc4907810f7fe134eca20d8d02224ac5e94e01f", - "0x2b2db2ed38136ca6c54b95187166f98ea84503db8768617a558705b508fec82", - "0x38f6a5b87c23cee6e7294bcc3302e95019f70f81586ff3cac38581f5ca96381", - "0xca58956845fecb30a8cb3efe23582630dbe8b80cc1fb8fd5d5e866b1356ad", - "0x617267656e742f696e76616c69642d7369676e61747572652d6c656e677468", - "0x7536345f7472795f66726f6d5f66656c74323532", - "0x32b90df821786fc0a5a5492c92e3241a5e680e5d53cd88c2bfdd094a70c90f5", - "0xad292db4ff05a993c318438c1b6c8a8303266af2da151aa28ccece6726f1f1", - "0xce", - "0x4e6f6e20436c61737348617368", - "0x800000000000010ffffffffffffffffb781126dcae7b2321e66a241adc64d2f", - "0x65635f706f696e745f66726f6d5f785f6e7a", - "0xd0", - "0x756e777261705f6e6f6e5f7a65726f", - "0x1ef15c18599971b7beced415a40f0c7deacfd9b0d1819e03d723d8bc943cfca", - "0x5668060aa49730b7be4801df46ec62de53ecd11abe43a32873000c36e8dc1f", - "0x65635f706f696e745f7472795f6e65775f6e7a", - "0x65635f706f696e745f69735f7a65726f", - "0x65635f706f696e745f756e77726170", - "0xd3", - "0x2679d68052ccd03a53755ca9169677965fbd93e489df62f5f40d4f03c24f7a4", - "0xd5", - "0xd6", - "0x53746f72616765416363657373553332202d206e6f6e20753332", - "0xd9", - "0xf00de1fccbb286f9a020ba8821ee936b1deea42a5c485c11ccdc82c8bebb3a", - "0x65635f73746174655f696e6974", - "0x65635f73746174655f6164645f6d756c", - "0xda", - "0x65635f73746174655f7472795f66696e616c697a655f6e7a", - "0x65635f706f696e745f7a65726f", - "0x65635f73746174655f616464", - "0x65635f6e6567", - "0x53746f72616765416363657373553634202d206e6f6e20753634", - "0x75385f6f766572666c6f77696e675f616464", - "0xdb", - "0x75385f616464204f766572666c6f77", - "0x7533325f7472795f66726f6d5f66656c74323532", - "0x61727261795f706f705f66726f6e74", - "0x4e35", - "0xffffffffffffffff", - "0x14c", - "0x143", - "0x132", - "0x11e", - "0x10e", - "0x107", - "0x100", - "0x214", - "0x202", - "0x1f8", - "0x1e6", - "0x182", - "0x186", - "0x1d1", - "0x1c0", - "0x1b8", - "0x31a", - "0x30c", - "0x2f6", - "0x2e8", - "0x2d2", - "0x253", - "0x257", - "0x2b9", - "0x2a4", - "0x29b", - "0x292", - "0x3c8", - "0x3bf", - "0x3ae", - "0x34d", - "0x351", - "0x39a", - "0x38a", - "0x382", - "0x463", - "0x452", - "0x3f1", - "0x3f5", - "0x43e", - "0x42e", - "0x426", - "0x535", - "0x523", - "0x519", - "0x507", - "0x49a", - "0x49e", - "0x4f2", - "0x4e1", - "0x4da", - "0x4d3", - "0x5ea", - "0x5e1", - "0x5d0", - "0x566", - "0x56a", - "0x5bc", - "0x5ac", - "0x5a5", - "0x59e", - "0x685", - "0x674", - "0x613", - "0x617", - "0x660", - "0x650", - "0x648", - "0x76e", - "0x75d", - "0x74b", - "0x738", - "0x724", - "0x6ba", - "0x6be", - "0x70d", - "0x6fa", - "0x6f2", - "0x83c", - "0x82a", - "0x817", - "0x803", - "0x79f", - "0x7a3", - "0x7ec", - "0x7d9", - "0x7d0", - "0x8ca", - "0x8ba", - "0x866", - "0x86a", - "0x8a7", - "0x898", - "0x891", - "0x956", - "0x946", - "0x8f2", - "0x8f6", - "0x933", - "0x924", - "0x91d", - "0x9e2", - "0x9d2", - "0x97e", - "0x982", - "0x9bf", - "0x9b0", - "0x9a9", - "0xa6e", - "0xa5e", - "0xa0a", - "0xa0e", - "0xa4b", - "0xa3c", - "0xa35", - "0xae2", - "0xa92", - "0xa96", - "0xad0", - "0xac3", - "0xabc", - "0xb56", - "0xb06", - "0xb0a", - "0xb44", - "0xb37", - "0xb30", - "0xbca", - "0xb7a", - "0xb7e", - "0xbb8", - "0xbab", - "0xba4", - "0xc46", - "0xbee", - "0xbf2", - "0xc34", - "0xc27", - "0xc20", - "0xcc2", - "0xc6a", - "0xc6e", - "0xcb0", - "0xca3", - "0xc9c", - "0xd3e", - "0xce6", - "0xcea", - "0xd2c", - "0xd1f", - "0xd18", - "0xdba", - "0xd62", - "0xd66", - "0xda8", - "0xd9b", - "0xd94", - "0xe29", - "0xdde", - "0xde2", - "0xe17", - "0xe0a", - "0xe98", - "0xe4d", - "0xe51", - "0xe86", - "0xe79", - "0xf14", - "0xebc", - "0xec0", - "0xf02", - "0xef5", - "0xeee", - "0xf90", - "0xf38", - "0xf3c", - "0xf7e", - "0xf71", - "0xf6a", - "0x100c", - "0xfb4", - "0xfb8", - "0xffa", - "0xfed", - "0xfe6", - "0x1093", - "0x1083", - "0x1034", - "0x1038", - "0x1070", - "0x1061", - "0x1102", - "0x10b7", - "0x10bb", - "0x10f0", - "0x10e3", - "0x1171", - "0x1126", - "0x112a", - "0x115f", - "0x1152", - "0x11f8", - "0x11e8", - "0x1199", - "0x119d", - "0x11d5", - "0x11c6", - "0x12bf", - "0x12ad", - "0x12a3", - "0x1291", - "0x122d", - "0x1231", - "0x127c", - "0x126b", - "0x1263", - "0x1365", - "0x1355", - "0x1344", - "0x12ed", - "0x12f1", - "0x1330", - "0x1320", - "0x1319", - "0x137c", - "0x1381", - "0x139d", - "0x1397", - "0x1415", - "0x13bd", - "0x13c2", - "0x1403", - "0x13f9", - "0x13f1", - "0xd7", - "0x14fe", - "0x1443", - "0x1448", - "0x14eb", - "0x14df", - "0x1472", - "0x1477", - "0x147e", - "0x1499", - "0xdd", - "0x148f", - "0x1494", - "0x14cc", - "0xde", - "0xdf", - "0x14c2", - "0xe0", - "0xe1", - "0xe2", - "0xe3", - "0xe4", - "0xe5", - "0x14ba", - "0xe6", - "0xe7", - "0xe8", - "0xe9", - "0xea", - "0xeb", - "0xec", - "0xed", - "0xee", - "0xef", - "0x1524", - "0xf0", - "0xf1", - "0xf2", - "0xf3", - "0x1531", - "0x1536", - "0x1540", - "0xf4", - "0xf5", - "0xf6", - "0x154f", - "0x1554", - "0x1570", - "0xf7", - "0x156a", - "0xf8", - "0xf9", - "0xfa", - "0xfb", - "0xfc", - "0xfd", - "0x159a", - "0x158e", - "0x1592", - "0xfe", - "0xff", - "0x101", - "0x102", - "0x103", - "0x104", - "0x105", - "0x160a", - "0x106", - "0x15fe", - "0x108", - "0x15f2", - "0x109", - "0x15e6", - "0x10a", - "0x10b", - "0x15dc", - "0x10c", - "0x10d", - "0x15d0", - "0x10f", - "0x110", - "0x111", - "0x112", - "0x113", - "0x114", - "0x115", - "0x116", - "0x117", - "0x118", - "0x119", - "0x11a", - "0x11b", - "0x11c", - "0x11d", - "0x11f", - "0x120", - "0x121", - "0x122", - "0x1641", - "0x1646", - "0x123", - "0x124", - "0x125", - "0x1657", - "0x1684", - "0x18e8", - "0x126", - "0x127", - "0x1675", - "0x167a", - "0x18bf", - "0x128", - "0x129", - "0x18a1", - "0x12a", - "0x12b", - "0x1698", - "0x16ab", - "0x16a3", - "0x16a9", - "0x12c", - "0x12d", - "0x1879", - "0x12e", - "0x12f", - "0x130", - "0x131", - "0x1851", - "0x1822", - "0x17fe", - "0x133", - "0x134", - "0x135", - "0x136", - "0x137", - "0x138", - "0x139", - "0x13a", - "0x13b", - "0x13c", - "0x13d", - "0x13e", - "0x17da", - "0x13f", - "0x17b8", - "0x17a2", - "0x140", - "0x141", - "0x142", - "0x144", - "0x145", - "0x146", - "0x147", - "0x148", - "0x178e", - "0x149", - "0x14a", - "0x177b", - "0x1771", - "0x14b", - "0x14d", - "0x14e", - "0x14f", - "0x150", - "0x151", - "0x152", - "0x153", - "0x154", - "0x155", - "0x156", - "0x157", - "0x158", - "0x159", - "0x15a", - "0x15b", - "0x15c", - "0x15d", - "0x15e", - "0x15f", - "0x160", - "0x161", - "0x162", - "0x163", - "0x164", - "0x165", - "0x166", - "0x167", - "0x168", - "0x169", - "0x16a", - "0x16b", - "0x16c", - "0x16d", - "0x16e", - "0x16f", - "0x170", - "0x171", - "0x172", - "0x173", - "0x174", - "0x175", - "0x176", - "0x177", - "0x178", - "0x179", - "0x17a", - "0x17b", - "0x17c", - "0x17d", - "0x17e", - "0x17f", - "0x180", - "0x181", - "0x183", - "0x184", - "0x185", - "0x187", - "0x188", - "0x189", - "0x18a", - "0x18b", - "0x18c", - "0x18d", - "0x18e", - "0x18f", - "0x190", - "0x191", - "0x192", - "0x193", - "0x194", - "0x195", - "0x196", - "0x197", - "0x198", - "0x199", - "0x19a", - "0x19b", - "0x19c", - "0x19d", - "0x19e", - "0x19f", - "0x1a0", - "0x1a1", - "0x1a2", - "0x1a3", - "0x1a4", - "0x1a5", - "0x1a6", - "0x1a7", - "0x1a8", - "0x1a9", - "0x1aa", - "0x1ab", - "0x1ac", - "0x1ad", - "0x1ae", - "0x1af", - "0x1b0", - "0x1b1", - "0x1b2", - "0x1b3", - "0x1b4", - "0x1b5", - "0x1b6", - "0x1b7", - "0x1b9", - "0x1ba", - "0x1bb", - "0x1bc", - "0x1bd", - "0x197f", - "0x1974", - "0x196b", - "0x19a5", - "0x19b4", - "0x19b8", - "0x19d4", - "0x19cd", - "0x1aa6", - "0x1a99", - "0x1a00", - "0x1a05", - "0x1a86", - "0x1a7b", - "0x1a69", - "0x1a24", - "0x1a29", - "0x1a5e", - "0x1a54", - "0x1a4c", - "0x1acb", - "0x1da8", - "0x1d98", - "0x1afb", - "0x1b00", - "0x1d82", - "0x1d6c", - "0x1b23", - "0x1b28", - "0x1d4f", - "0x1d3a", - "0x1b9f", - "0x1b89", - "0x1b5c", - "0x1b61", - "0x1b6c", - "0x1ba5", - "0x1d24", - "0x1bd2", - "0x1c09", - "0x1bdc", - "0x1be1", - "0x1d0e", - "0x1cf9", - "0x1ce3", - "0x1cd6", - "0x1cc9", - "0x1cbd", - "0x1ca9", - "0x1c35", - "0x1c39", - "0x1c96", - "0x1c8a", - "0x1c80", - "0x1c78", - "0x1c70", - "0x1be", - "0x1bf", - "0x1c1", - "0x1c2", - "0x1c3", - "0x1c4", - "0x1c5", - "0x1c6", - "0x1c7", - "0x1c8", - "0x1c9", - "0x1ca", - "0x1cb", - "0x1cc", - "0x1cd", - "0x1ce", - "0x1cf", - "0x1d0", - "0x1d2", - "0x1d3", - "0x1d4", - "0x1d5", - "0x1d6", - "0x1d7", - "0x1d8", - "0x1d9", - "0x1da", - "0x1db", - "0x1dc", - "0x1dd", - "0x1e30", - "0x1ddb", - "0x1de0", - "0x1de7", - "0x1e02", - "0x1df8", - "0x1dfd", - "0x1e1e", - "0x1e16", - "0x1eb6", - "0x1e61", - "0x1e66", - "0x1e6d", - "0x1e88", - "0x1e7e", - "0x1e83", - "0x1ea4", - "0x1e9c", - "0x20b2", - "0x20a0", - "0x1ee7", - "0x1eec", - "0x2088", - "0x207c", - "0x2069", - "0x2056", - "0x1f88", - "0x1f75", - "0x1f53", - "0x1f65", - "0x1f6a", - "0x1f90", - "0x2044", - "0x2032", - "0x201f", - "0x200d", - "0x2002", - "0x1de", - "0x1df", - "0x1e0", - "0x1ff8", - "0x1fef", - "0x1e1", - "0x1e2", - "0x227d", - "0x2272", - "0x20e6", - "0x20eb", - "0x2261", - "0x2144", - "0x2133", - "0x210b", - "0x2110", - "0x211b", - "0x214a", - "0x2251", - "0x2241", - "0x21c9", - "0x21b9", - "0x219a", - "0x21ac", - "0x21b1", - "0x21d1", - "0x2232", - "0x2223", - "0x1e3", - "0x1e4", - "0x2214", - "0x1e5", - "0x1e7", - "0x1e8", - "0x220d", - "0x2434", - "0x2429", - "0x22aa", - "0x22af", - "0x2418", - "0x240e", - "0x22d9", - "0x22de", - "0x23fd", - "0x23ed", - "0x23dd", - "0x2365", - "0x2355", - "0x2336", - "0x2348", - "0x234d", - "0x236d", - "0x23ce", - "0x23bf", - "0x1e9", - "0x1ea", - "0x23b0", - "0x1eb", - "0x1ec", - "0x1ed", - "0x1ee", - "0x23a9", - "0x1ef", - "0x25fa", - "0x25ef", - "0x2461", - "0x2466", - "0x25de", - "0x25ce", - "0x24be", - "0x24ae", - "0x2497", - "0x24c4", - "0x1f0", - "0x25be", - "0x25ae", - "0x254c", - "0x253c", - "0x251d", - "0x252f", - "0x2534", - "0x2554", - "0x25a5", - "0x1f1", - "0x1f2", - "0x259c", - "0x258c", - "0x1f3", - "0x1f4", - "0x1f5", - "0x2585", - "0x274f", - "0x2744", - "0x2627", - "0x262c", - "0x2733", - "0x2723", - "0x2713", - "0x26b1", - "0x26a1", - "0x2682", - "0x2694", - "0x2699", - "0x26b9", - "0x270a", - "0x2701", - "0x26f1", - "0x1f6", - "0x1f7", - "0x26ea", - "0x28e1", - "0x28d5", - "0x277f", - "0x2784", - "0x28c3", - "0x28b2", - "0x28a1", - "0x1f9", - "0x2889", - "0x2879", - "0x2869", - "0x2858", - "0x2848", - "0x1fa", - "0x1fb", - "0x1fc", - "0x283f", - "0x2837", - "0x2830", - "0x2822", - "0x1fd", - "0x2a22", - "0x2a18", - "0x290f", - "0x2914", - "0x2a08", - "0x29f9", - "0x29e9", - "0x29d2", - "0x29c3", - "0x29b4", - "0x29a5", - "0x1fe", - "0x1ff", - "0x200", - "0x299e", - "0x2990", - "0x2bb6", - "0x2bac", - "0x2a4e", - "0x2a53", - "0x2b9c", - "0x2b8d", - "0x2b7e", - "0x2b68", - "0x2b59", - "0x2b4a", - "0x2b08", - "0x2af9", - "0x2adb", - "0x2aed", - "0x2af2", - "0x2b10", - "0x2b3c", - "0x2b2e", - "0x2bd3", - "0x2bee", - "0x2c09", - "0x2c26", - "0x201", - "0x203", - "0x204", - "0x205", - "0x206", - "0x207", - "0x208", - "0x209", - "0x20a", - "0x20b", - "0x20c", - "0x20d", - "0x20e", - "0x20f", - "0x210", - "0x211", - "0x2c7d", - "0x212", - "0x213", - "0x215", - "0x216", - "0x217", - "0x2ca7", - "0x2cdb", - "0x2cd1", - "0x218", - "0x219", - "0x21a", - "0x21b", - "0x21c", - "0x21d", - "0x21e", - "0x21f", - "0x2cf9", - "0x2d42", - "0x2d06", - "0x2d41", - "0x220", - "0x2d13", - "0x2d40", - "0x221", - "0x2d20", - "0x2d3f", - "0x222", - "0x2d2d", - "0x2d3e", - "0x223", - "0x2d38", - "0x2d3d", - "0x2d4d", - "0x2d51", - "0x2d8f", - "0x2d6d", - "0x2d72", - "0x2d80", - "0x224", - "0x2dac", - "0x2db1", - "0x2e36", - "0x2e26", - "0x2e16", - "0x2e06", - "0x225", - "0x226", - "0x227", - "0x2dfe", - "0x2df7", - "0x2e8d", - "0x2e58", - "0x228", - "0x229", - "0x22a", - "0x2e85", - "0x22b", - "0x22c", - "0x2e7b", - "0x22d", - "0x2e75", - "0x22e", - "0x22f", - "0x2eae", - "0x230", - "0x231", - "0x232", - "0x233", - "0x234", - "0x235", - "0x236", - "0x237", - "0x238", - "0x2ec6", - "0x239", - "0x23a", - "0x23b", - "0x23c", - "0x36fb", - "0x23d", - "0x2efa", - "0x2eff", - "0x2f06", - "0x2f21", - "0x2f17", - "0x2f1c", - "0x36e5", - "0x23e", - "0x23f", - "0x240", - "0x2f46", - "0x2f3b", - "0x36b9", - "0x241", - "0x242", - "0x243", - "0x36d7", - "0x244", - "0x245", - "0x246", - "0x247", - "0x248", - "0x249", - "0x36b2", - "0x24a", - "0x30fb", - "0x2f7f", - "0x2faa", - "0x24b", - "0x30e7", - "0x24c", - "0x24d", - "0x30d2", - "0x24e", - "0x30be", - "0x30ab", - "0x3097", - "0x2fc2", - "0x2fc6", - "0x3083", - "0x2fe0", - "0x2fe5", - "0x3070", - "0x3064", - "0x3011", - "0x3016", - "0x3051", - "0x24f", - "0x3048", - "0x3038", - "0x250", - "0x251", - "0x252", - "0x32cb", - "0x310e", - "0x3139", - "0x32b7", - "0x32a2", - "0x328e", - "0x327b", - "0x314b", - "0x314f", - "0x3268", - "0x325c", - "0x3179", - "0x317e", - "0x3249", - "0x3236", - "0x31a0", - "0x31a5", - "0x321b", - "0x31bf", - "0x31c4", - "0x254", - "0x255", - "0x256", - "0x3201", - "0x258", - "0x259", - "0x25a", - "0x25b", - "0x261", - "0x262", - "0x263", - "0x264", - "0x265", - "0x266", - "0x267", - "0x25c", - "0x25d", - "0x25e", - "0x25f", - "0x260", - "0x268", - "0x31f8", - "0x269", - "0x26a", - "0x26b", - "0x26c", - "0x31e8", - "0x26d", - "0x26e", - "0x26f", - "0x270", - "0x271", - "0x272", - "0x273", - "0x274", - "0x275", - "0x276", - "0x277", - "0x278", - "0x279", - "0x27a", - "0x27b", - "0x27c", - "0x27d", - "0x27e", - "0x27f", - "0x280", - "0x281", - "0x282", - "0x283", - "0x284", - "0x285", - "0x286", - "0x287", - "0x288", - "0x289", - "0x28a", - "0x28b", - "0x28c", - "0x28d", - "0x28e", - "0x28f", - "0x290", - "0x291", - "0x293", - "0x294", - "0x295", - "0x296", - "0x297", - "0x298", - "0x299", - "0x29a", - "0x29c", - "0x29d", - "0x29e", - "0x29f", - "0x2a0", - "0x2a1", - "0x2a2", - "0x2a3", - "0x2a5", - "0x2a6", - "0x2a7", - "0x2a8", - "0x2a9", - "0x2aa", - "0x2ab", - "0x2ac", - "0x2ad", - "0x2ae", - "0x2af", - "0x2b0", - "0x2b1", - "0x2b2", - "0x2b3", - "0x2b4", - "0x2b5", - "0x2b6", - "0x2b7", - "0x2b8", - "0x2ba", - "0x2bb", - "0x2bc", - "0x2bd", - "0x2be", - "0x2bf", - "0x2c0", - "0x2c1", - "0x2c2", - "0x2c3", - "0x2c4", - "0x2c5", - "0x2c6", - "0x2c7", - "0x2c8", - "0x2c9", - "0x2ca", - "0x2cb", - "0x2cc", - "0x2cd", - "0x2ce", - "0x2cf", - "0x2d0", - "0x2d1", - "0x2d3", - "0x2d4", - "0x2d5", - "0x2d6", - "0x2d7", - "0x2d9", - "0x2d8", - "0x3481", - "0x2da", - "0x2db", - "0x2dc", - "0x32de", - "0x2dd", - "0x2de", - "0x2df", - "0x2e0", - "0x2e1", - "0x3309", - "0x2e2", - "0x2e3", - "0x2e4", - "0x2e5", - "0x2e6", - "0x2e7", - "0x2e9", - "0x2ea", - "0x2eb", - "0x2f0", - "0x2f1", - "0x2f2", - "0x2f3", - "0x2ec", - "0x2ed", - "0x2ee", - "0x2ef", - "0x2f4", - "0x346d", - "0x2f5", - "0x2fb", - "0x2fc", - "0x2fd", - "0x2fe", - "0x2f7", - "0x2f8", - "0x2f9", - "0x2fa", - "0x2ff", - "0x3458", - "0x300", - "0x301", - "0x304", - "0x305", - "0x306", - "0x302", - "0x303", - "0x307", - "0x3444", - "0x308", - "0x309", - "0x30d", - "0x30e", - "0x30f", - "0x310", - "0x30a", - "0x30b", - "0x311", - "0x3431", - "0x312", - "0x313", - "0x314", - "0x315", - "0x316", - "0x317", - "0x318", - "0x319", - "0x31c", - "0x31b", - "0x31d", - "0x341d", - "0x31e", - "0x31f", - "0x320", - "0x321", - "0x322", - "0x323", - "0x324", - "0x325", - "0x326", - "0x327", - "0x3321", - "0x328", - "0x329", - "0x32a", - "0x3325", - "0x32b", - "0x32c", - "0x32d", - "0x32e", - "0x3409", - "0x32f", - "0x3380", - "0x330", - "0x331", - "0x332", - "0x333", - "0x334", - "0x335", - "0x336", - "0x337", - "0x338", - "0x339", - "0x33a", - "0x33e", - "0x33f", - "0x340", - "0x33b", - "0x33c", - "0x33d", - "0x341", - "0x336d", - "0x342", - "0x343", - "0x344", - "0x345", - "0x346", - "0x347", - "0x348", - "0x349", - "0x34a", - "0x34b", - "0x3344", - "0x34c", - "0x34e", - "0x34f", - "0x3349", - "0x350", - "0x352", - "0x353", - "0x3353", - "0x354", - "0x355", - "0x356", - "0x357", - "0x358", - "0x3385", - "0x359", - "0x35a", - "0x35b", - "0x35c", - "0x35d", - "0x35e", - "0x35f", - "0x360", - "0x361", - "0x362", - "0x363", - "0x364", - "0x365", - "0x366", - "0x367", - "0x368", - "0x369", - "0x36a", - "0x36b", - "0x36c", - "0x36d", - "0x36e", - "0x36f", - "0x370", - "0x371", - "0x372", - "0x373", - "0x377", - "0x378", - "0x379", - "0x374", - "0x375", - "0x376", - "0x37a", - "0x33fd", - "0x37b", - "0x37c", - "0x37d", - "0x37e", - "0x37f", - "0x380", - "0x381", - "0x383", - "0x384", - "0x385", - "0x386", - "0x387", - "0x388", - "0x389", - "0x33aa", - "0x38b", - "0x38c", - "0x38d", - "0x38e", - "0x33af", - "0x38f", - "0x390", - "0x391", - "0x392", - "0x393", - "0x33ea", - "0x394", - "0x395", - "0x396", - "0x39c", - "0x39d", - "0x39e", - "0x39f", - "0x3a0", - "0x3a1", - "0x3a2", - "0x397", - "0x398", - "0x399", - "0x39b", - "0x3a3", - "0x33e1", - "0x3a4", - "0x3a5", - "0x3a6", - "0x3a7", - "0x33d1", - "0x3a8", - "0x3a9", - "0x3aa", - "0x3ab", - "0x3ac", - "0x3ad", - "0x3af", - "0x3b0", - "0x3b1", - "0x3b2", - "0x3b3", - "0x3b4", - "0x3b5", - "0x3b6", - "0x3b7", - "0x3b8", - "0x3b9", - "0x3ba", - "0x3bb", - "0x3bc", - "0x3bd", - "0x3be", - "0x3c0", - "0x3c1", - "0x3c2", - "0x3c3", - "0x3c4", - "0x3c5", - "0x3c6", - "0x3c7", - "0x3c9", - "0x3ca", - "0x3cb", - "0x3cc", - "0x3cd", - "0x3ce", - "0x3cf", - "0x3d0", - "0x3d1", - "0x3d2", - "0x3d3", - "0x3d4", - "0x3d5", - "0x3d6", - "0x3d7", - "0x3d8", - "0x3d9", - "0x3da", - "0x3db", - "0x3dc", - "0x3dd", - "0x3de", - "0x3df", - "0x3e0", - "0x3e1", - "0x3e2", - "0x3e3", - "0x3e4", - "0x3e5", - "0x3e6", - "0x3e7", - "0x3e8", - "0x3e9", - "0x3ea", - "0x3eb", - "0x3ec", - "0x3ed", - "0x3ee", - "0x3ef", - "0x3f0", - "0x3f2", - "0x3f3", - "0x3f4", - "0x3f6", - "0x3f7", - "0x3f8", - "0x3f9", - "0x3fa", - "0x3fb", - "0x3fc", - "0x3fd", - "0x3fe", - "0x3ff", - "0x400", - "0x401", - "0x403", - "0x402", - "0x3679", - "0x404", - "0x405", - "0x406", - "0x3494", - "0x407", - "0x408", - "0x409", - "0x40a", - "0x40b", - "0x34bf", - "0x40c", - "0x40d", - "0x40e", - "0x40f", - "0x410", - "0x411", - "0x412", - "0x413", - "0x414", - "0x415", - "0x41a", - "0x41b", - "0x41c", - "0x41d", - "0x416", - "0x417", - "0x418", - "0x419", - "0x41e", - "0x3665", - "0x41f", - "0x420", - "0x425", - "0x427", - "0x428", - "0x421", - "0x422", - "0x423", - "0x424", - "0x429", - "0x3650", - "0x42a", - "0x42b", - "0x42f", - "0x430", - "0x42c", - "0x42d", - "0x431", - "0x363c", - "0x432", - "0x433", - "0x437", - "0x438", - "0x439", - "0x43a", - "0x434", - "0x435", - "0x436", - "0x43b", - "0x3629", - "0x43c", - "0x43d", - "0x43f", - "0x440", - "0x441", - "0x443", - "0x444", - "0x445", - "0x446", - "0x447", - "0x448", - "0x449", - "0x44a", - "0x34d1", - "0x44b", - "0x44c", - "0x44d", - "0x34d5", - "0x44e", - "0x44f", - "0x450", - "0x451", - "0x3616", - "0x453", - "0x454", - "0x455", - "0x456", - "0x457", - "0x458", - "0x459", - "0x45a", - "0x45b", - "0x45c", - "0x460", - "0x461", - "0x462", - "0x45d", - "0x45e", - "0x45f", - "0x360a", - "0x464", - "0x465", - "0x466", - "0x467", - "0x468", - "0x469", - "0x46a", - "0x46b", - "0x46c", - "0x46d", - "0x46e", - "0x46f", - "0x470", - "0x471", - "0x472", - "0x473", - "0x34ff", - "0x474", - "0x475", - "0x476", - "0x477", - "0x3504", - "0x478", - "0x479", - "0x47a", - "0x47b", - "0x47c", - "0x35f7", - "0x47d", - "0x47e", - "0x47f", - "0x480", - "0x481", - "0x482", - "0x483", - "0x484", - "0x485", - "0x486", - "0x487", - "0x48c", - "0x48d", - "0x48e", - "0x48f", - "0x488", - "0x489", - "0x48a", - "0x48b", - "0x490", - "0x35e4", - "0x491", - "0x492", - "0x493", - "0x494", - "0x495", - "0x496", - "0x497", - "0x498", - "0x499", - "0x49b", - "0x49c", - "0x49d", - "0x3526", - "0x49f", - "0x4a0", - "0x4a1", - "0x352b", - "0x4a2", - "0x4a3", - "0x4a4", - "0x4a5", - "0x35c9", - "0x4a6", - "0x4a7", - "0x4a8", - "0x4a9", - "0x4aa", - "0x4ab", - "0x4ac", - "0x4ad", - "0x4ae", - "0x4af", - "0x358f", - "0x4b0", - "0x4b1", - "0x4b2", - "0x4b6", - "0x4b7", - "0x4b8", - "0x4b3", - "0x4b4", - "0x4b5", - "0x4b9", - "0x357c", - "0x4ba", - "0x4bb", - "0x4bc", - "0x4bd", - "0x4be", - "0x4bf", - "0x4c0", - "0x4c1", - "0x4c2", - "0x4c3", - "0x3553", - "0x4c4", - "0x4c5", - "0x4c6", - "0x4c7", - "0x3558", - "0x4c8", - "0x4c9", - "0x4ca", - "0x4cb", - "0x3562", - "0x4cc", - "0x4cd", - "0x4ce", - "0x4cf", - "0x4d0", - "0x3595", - "0x4d1", - "0x4d2", - "0x4d4", - "0x4d5", - "0x4d6", - "0x4d7", - "0x4d8", - "0x4d9", - "0x4db", - "0x4dc", - "0x4dd", - "0x4de", - "0x4df", - "0x4e0", - "0x4e2", - "0x4e3", - "0x4e4", - "0x4ea", - "0x4eb", - "0x4ec", - "0x4ed", - "0x4ee", - "0x4ef", - "0x4f0", - "0x4e5", - "0x4e6", - "0x4e7", - "0x4e8", - "0x4e9", - "0x4f1", - "0x35c0", - "0x4f3", - "0x4f4", - "0x4f5", - "0x35b0", - "0x4f6", - "0x4f7", - "0x4f8", - "0x4f9", - "0x4fa", - "0x4fb", - "0x4fc", - "0x4fd", - "0x4fe", - "0x4ff", - "0x500", - "0x501", - "0x502", - "0x503", - "0x504", - "0x505", - "0x506", - "0x508", - "0x509", - "0x50a", - "0x50b", - "0x50c", - "0x50d", - "0x50e", - "0x50f", - "0x510", - "0x511", - "0x512", - "0x513", - "0x514", - "0x515", - "0x516", - "0x517", - "0x518", - "0x51a", - "0x51b", - "0x51c", - "0x51d", - "0x51e", - "0x51f", - "0x520", - "0x521", - "0x522", - "0x524", - "0x525", - "0x526", - "0x527", - "0x528", - "0x529", - "0x52a", - "0x52b", - "0x52c", - "0x52d", - "0x52e", - "0x52f", - "0x530", - "0x531", - "0x532", - "0x533", - "0x534", - "0x536", - "0x537", - "0x538", - "0x539", - "0x53a", - "0x53b", - "0x53c", - "0x53d", - "0x53e", - "0x53f", - "0x540", - "0x541", - "0x542", - "0x543", - "0x544", - "0x545", - "0x546", - "0x547", - "0x548", - "0x549", - "0x54a", - "0x54b", - "0x54c", - "0x54d", - "0x54e", - "0x54f", - "0x550", - "0x551", - "0x552", - "0x553", - "0x554", - "0x555", - "0x556", - "0x557", - "0x558", - "0x559", - "0x55a", - "0x55b", - "0x55c", - "0x55d", - "0x55e", - "0x55f", - "0x560", - "0x561", - "0x562", - "0x3692", - "0x563", - "0x564", - "0x565", - "0x3697", - "0x567", - "0x568", - "0x569", - "0x56b", - "0x369f", - "0x56c", - "0x36b6", - "0x56d", - "0x56e", - "0x56f", - "0x570", - "0x571", - "0x572", - "0x573", - "0x574", - "0x575", - "0x576", - "0x577", - "0x578", - "0x579", - "0x57f", - "0x580", - "0x581", - "0x582", - "0x583", - "0x584", - "0x585", - "0x57a", - "0x57b", - "0x57c", - "0x57d", - "0x57e", - "0x586", - "0x36ce", - "0x587", - "0x588", - "0x589", - "0x58a", - "0x58b", - "0x58c", - "0x58d", - "0x58e", - "0x58f", - "0x590", - "0x591", - "0x592", - "0x593", - "0x594", - "0x595", - "0x596", - "0x597", - "0x598", - "0x599", - "0x59a", - "0x59b", - "0x59c", - "0x59d", - "0x59f", - "0x5a0", - "0x5a1", - "0x5a2", - "0x5a3", - "0x5a4", - "0x5a6", - "0x5a7", - "0x5a8", - "0x5a9", - "0x5aa", - "0x5ab", - "0x3720", - "0x3763", - "0x3748", - "0x374d", - "0x375a", - "0x37b7", - "0x377a", - "0x377f", - "0x37a9", - "0x37a2", - "0x379c", - "0x37b0", - "0x3800", - "0x37d8", - "0x37f6", - "0x37f0", - "0x389d", - "0x3892", - "0x3883", - "0x3878", - "0x3856", - "0x384c", - "0x3850", - "0x3868", - "0x3870", - "0x38b9", - "0x38b2", - "0x38c6", - "0x38cb", - "0x38e1", - "0x38db", - "0x38f1", - "0x38f6", - "0x3920", - "0x391a", - "0x3912", - "0x393a", - "0x3958", - "0x3972", - "0x39de", - "0x39f3", - "0x39f7", - "0x3a01", - "0x3a06", - "0x3a13", - "0x3a31", - "0x3a36", - "0x3a53", - "0x3a46", - "0x3a5f", - "0x3aa1", - "0x3a86", - "0x3a8b", - "0x3a98", - "0x3b01", - "0x3ac7", - "0x3acc", - "0x3af9", - "0x3af2", - "0x3ae4", - "0x3b47", - "0x3b17", - "0x3b1c", - "0x3b39", - "0x3b33", - "0x3b40", - "0x3b63", - "0x3b68", - "0x3b73", - "0x3b86", - "0x3b8b", - "0x3b96", - "0x3ba9", - "0x3bae", - "0x3bb9", - "0x3bde", - "0x3bd7", - "0x3bf9", - "0x3bfe", - "0x3c10", - "0x3c15", - "0x3c20", - "0x3c63", - "0x3c48", - "0x3c4d", - "0x3c5a", - "0x3cc8", - "0x3c78", - "0x3c7d", - "0x3cbd", - "0x3cad", - "0x3ca7", - "0x3d8f", - "0x3d84", - "0x3d72", - "0x3d67", - "0x3d31", - "0x3d14", - "0x3d18", - "0x3d22", - "0x3d47", - "0x3d5f", - "0x3d50", - "0x3dad", - "0x3db2", - "0x3e37", - "0x3e2a", - "0x3e1c", - "0x3e0e", - "0x3dfe", - "0x3e6a", - "0x3e63", - "0x3ec0", - "0x3eb8", - "0x3eab", - "0x3ea3", - "0x3e98", - "0x3eee", - "0x3f10", - "0x3f32", - "0x3ed8", - "0x3edf", - "0x3ee6", - "0x3eec", - "0x3f53", - "0x3ef7", - "0x3f01", - "0x3f08", - "0x3f0e", - "0x3f19", - "0x3f20", - "0x3f2a", - "0x3f30", - "0x3f3b", - "0x3f42", - "0x3f49", - "0x3f52", - "0x3f77", - "0x3f6f", - "0x3fc2", - "0x3fa7", - "0x3fac", - "0x3fb9", - "0x3fdb", - "0x3fe0", - "0x3feb", - "0x4002", - "0x4007", - "0x4012", - "0x4028", - "0x402d", - "0x4038", - "0x407b", - "0x4060", - "0x4065", - "0x4072", - "0x40c0", - "0x40a5", - "0x40aa", - "0x40b7", - "0x40d8", - "0x40dd", - "0x40e8", - "0x412b", - "0x4110", - "0x4115", - "0x4122", - "0x4143", - "0x4148", - "0x4153", - "0x4196", - "0x417b", - "0x4180", - "0x418d", - "0x41a5", - "0x41a9", - "0x41b5", - "0x41f6", - "0x41db", - "0x41e0", - "0x41ed", - "0x423b", - "0x4220", - "0x4225", - "0x4232", - "0x4280", - "0x4265", - "0x426a", - "0x4277", - "0x42c5", - "0x42aa", - "0x42af", - "0x42bc", - "0x4305", - "0x42fe", - "0x432b", - "0x4324", - "0x4341", - "0x434f", - "0x435d", - "0x436a", - "0x43aa", - "0x438f", - "0x4394", - "0x43a1", - "0x43ef", - "0x43e5", - "0x43dd", - "0x43d3", - "0x4400", - "0x4405", - "0x4410", - "0x441d", - "0x4486", - "0x4441", - "0x4447", - "0x4477", - "0x4456", - "0x445c", - "0x4469", - "0x4494", - "0x4498", - "0x44a4", - "0x44c0", - "0x44c4", - "0x4561", - "0x4556", - "0x454b", - "0x453f", - "0x452a", - "0x451f", - "0x4537", - "0x4587", - "0x458b", - "0x45ec", - "0x45e1", - "0x45d6", - "0x45cb", - "0x4671", - "0x4609", - "0x460e", - "0x4665", - "0x4643", - "0x463c", - "0x465e", - "0x4696", - "0x46af", - "0x46bd", - "0x46cb", - "0x46d9", - "0x46e7", - "0x46f5", - "0x4703", - "0x4711", - "0x471f", - "0x472d", - "0x473b", - "0x4748", - "0x46a9", - "0x4769", - "0x480e", - "0x478d", - "0x4791", - "0x4801", - "0x47fa", - "0x47f3", - "0x47eb", - "0x47e4", - "0x481f", - "0x4824", - "0x4839", - "0x486f", - "0x4864", - "0x4869", - "0x487b", - "0x48cf", - "0x488f", - "0x4894", - "0x48c4", - "0x48bb", - "0x48b4", - "0x48e6", - "0x48f3", - "0x48f8", - "0x491e", - "0x4914", - "0x4919", - "0x492e", - "0x4954", - "0x4946", - "0x4963", - "0x4980", - "0x4985", - "0x49a0", - "0x49b2", - "0x49c4", - "0x4a41", - "0x4a36", - "0x4a2a", - "0x49e8", - "0x49fb", - "0x4a0e", - "0x4a0c", - "0x4a15", - "0x4a24", - "0x4a22", - "0x4aa6", - "0x4a9b", - "0x4a8e", - "0x4a83", - "0x4a78", - "0x4ab5", - "0x4b0a", - "0x4afd", - "0x4af3", - "0x4aea", - "0x4b2d", - "0x4b62", - "0x4b54", - "0x4b71", - "0x4b85", - "0x4b92", - "0x4ba2", - "0x4bbf", - "0x4bf4", - "0x4cb9", - "0x4cc7", - "0x4ccc", - "0x4cdb", - "0x4ceb", - "0x4ce6", - "0x4ce9", - "0x4cf4", - "0x4cfa", - "0x4d06", - "0x4d09", - "0x4d11", - "0x4d39", - "0x4d2b", - "0x4d48", - "0x4d4c", - "0x4d58", - "0x4d63", - "0x4d68", - "0x4d9e", - "0x4d77", - "0x4d7c", - "0x4d94", - "0x4d8e", - "0x4dc7", - "0x4e15", - "0x4de5", - "0x4dea", - "0x4e0a", - "0x4e03", - "0x4e2c", - "0x5fa", - "0x695", - "0x77e", - "0x84d", - "0x8d9", - "0x965", - "0x9f1", - "0xa7d", - "0xaf1", - "0xb65", - "0xbd9", - "0xc55", - "0xcd1", - "0xd4d", - "0xdc9", - "0xe38", - "0xea7", - "0xf23", - "0xf9f", - "0x101b", - "0x10a2", - "0x1111", - "0x1180", - "0x1207", - "0x12d0", - "0x1374", - "0x13a7", - "0x1420", - "0x1426", - "0x142a", - "0x150a", - "0x152a", - "0x1547", - "0x157a", - "0x15a2", - "0x1616", - "0x190a", - "0x198a", - "0x19ad", - "0x19c2", - "0x19da", - "0x1ab1", - "0x1ad1", - "0x1db6", - "0x1e39", - "0x1ebf", - "0x20c2", - "0x2286", - "0x243d", - "0x2603", - "0x2758", - "0x28eb", - "0x2a2a", - "0x2bbe", - "0x2bd9", - "0x2bf4", - "0x2c0f", - "0x2c2d", - "0x2c46", - "0x2c4d", - "0x2c66", - "0x2c84", - "0x2c90", - "0x2cae", - "0x2ce2", - "0x2ced", - "0x2d44", - "0x2d53", - "0x2d97", - "0x2e47", - "0x2e9c", - "0x2eb4", - "0x2ecc", - "0x3709", - "0x3727", - "0x376c", - "0x37c7", - "0x380f", - "0x38a7", - "0x38bf", - "0x38e9", - "0x392a", - "0x3940", - "0x3960", - "0x3978", - "0x39e6", - "0x3a1c", - "0x3a59", - "0x3a65", - "0x3aaa", - "0x3b0b", - "0x3b56", - "0x3b79", - "0x3b9c", - "0x3bbf", - "0x3be5", - "0x3c00", - "0x3c27", - "0x3c6c", - "0x3cd7", - "0x3d99", - "0x3e4b", - "0x3e71", - "0x3ecb", - "0x3f55", - "0x3f7f", - "0x3f86", - "0x3fcb", - "0x3ff2", - "0x4019", - "0x403f", - "0x4084", - "0x40c9", - "0x40ef", - "0x4134", - "0x415a", - "0x419f", - "0x41ba", - "0x41ff", - "0x4244", - "0x4289", - "0x42ce", - "0x42da", - "0x42e6", - "0x430c", - "0x4332", - "0x436e", - "0x43b3", - "0x43f9", - "0x4416", - "0x4428", - "0x448e", - "0x44a9", - "0x4570", - "0x45fb", - "0x4683", - "0x4686", - "0x474f", - "0x476f", - "0x4819", - "0x4827", - "0x483f", - "0x4849", - "0x4875", - "0x4881", - "0x48e0", - "0x48ec", - "0x4925", - "0x4928", - "0x4934", - "0x495d", - "0x4969", - "0x496c", - "0x4987", - "0x4993", - "0x4a4b", - "0x4aaf", - "0x4abb", - "0x4ac3", - "0x4b17", - "0x4b1a", - "0x4b1d", - "0x4b20", - "0x4b23", - "0x4b26", - "0x4b36", - "0x4b39", - "0x4b3c", - "0x4b3f", - "0x4b42", - "0x4b6b", - "0x4b77", - "0x4b7c", - "0x4b7f", - "0x4b8b", - "0x4b9b", - "0x4bad", - "0x4bc5", - "0x4bd7", - "0x4bfb", - "0x4c0d", - "0x4c1f", - "0x4c29", - "0x4c33", - "0x4c39", - "0x4c43", - "0x4c4d", - "0x4c57", - "0x4c61", - "0x4c6b", - "0x4c75", - "0x4cc1", - "0x4ccf", - "0x4cd4", - "0x4cee", - "0x4d0b", - "0x4d19", - "0x4d42", - "0x4d5d", - "0x4d6b", - "0x4dad", - "0x4dcd", - "0x4dd9", - "0x4e25", - "0x286ab", - "0x600b00200700a009006006008007006006005002004002003002001000", - "0x200600a01000600600500900600700600f00600e00200c00a00200d00c", - "0x200600a01700601600601100200900a015006014006013002009012011", - "0x1200201d01c00601b00601a00200901200900601900601100200900a018", - "0x200600a02100200600a02000200600a00201f01500601500601e002009", - "0x200600a02600200600a02500200600a02400200600a02300200600a022", - "0x602f00602e00602d00602c00602b00602a00602900602800201500a027", - "0x603500603400200901200700603300601100200900a002032002031030", - "0x503900600603801c00603700603600200901201600601100200700a01c", - "0x801c00603c00603b00200901203a00603300601100200900a016006006", - "0x3801c00603e00603d00200901201500600900601100200900a03a006006", - "0xa01500600900604000200901201500600700603f002009012007006006", - "0x601100200700a01c006043006042002009012041006016006011002009", - "0x4904800600603804700600603800204601c006045006044002009012007", - "0x600700600f00604c00200f00a04b00604a00200700a014006006008002", - "0x200900a01500604f00605000200901204f00600603804e00604d00604d", - "0x1205400601100200700a01c006053006052002009012051006016006011", - "0x605800605900200901205800600603800205701c006056006055002009", - "0x200900a01c00605b00605a00200901200900603300601100200900a015", - "0x604d00605e00200c00a01c00605d00605c002009012015006033006011", - "0xa00206201c00606100606000200901205f00601100200700a007006007", - "0x606600200901206500601100200700a06400606400606400606300200c", - "0x601100200900a01500601500601500601500606800201601201c006067", - "0x600606d01c00606c00606b00200901206a00601100200700a06900605f", - "0x607000200901200f00601100200700a01500606f00606e002009012007", - "0x607500600f00600700607400201400a00207300700600607201c006071", - "0x200901207700601100200700a07600600606d007006007006007006016", - "0x607a00200901203a00601100200700a03a00600603801c006079006078", - "0x600603807f00600700607e00200900a07d00607c00200700a01c00607b", - "0x604d00608100200901201500600f00608000200901200f00600603804d", - "0x200901208300601600601100200900a01500604e006082002009012015", - "0x600603802b00600603802c00600603802900600603801c006085006084", - "0x200700a02d00600603802e00600603802f00600603803000600603802a", - "0x600700600700608800200c00a01c00608700608600200901204d006011", - "0x600603801c00608a00608900200901201500602e00601100200900a007", - "0x601100200700a00900601500608c00200901205800608b00200700a033", - "0x609000200700a05800608f00200700a01c00608e00608d002009012015", - "0xa01400600603801c00609200609100200901200900601100200700a058", - "0x602900601100200900a01c006094006093002009012058006011002007", - "0x601100200900a00700609700200700a01c006096006095002009012015", - "0x200901206900601100200700a01c00609900609800200901201500604e", - "0x609d00609c00200901201500602d00601100200900a01c00609b00609a", - "0x60a000609f00200901201500603000601100200900a09e00200600a01c", - "0x200900a01c0060a20060a100200901201500602f00601100200900a01c", - "0xa0070060a500200700a01c0060a40060a300200901201500602a006011", - "0x60a80060a700200901201500602b00601100200900a0070060a6002007", - "0x60aa00200901201500602c00601100200900a0070060a900200700a01c", - "0x200900a00700604d0060ad00200900a0070060ac00200700a01c0060ab", - "0x200900a0070060b000200700a0070060af00200700a00700604d0060ae", - "0x601600601100200900a0150060100060b20020090120070060070060b1", - "0x6d00f00604d00604d0060b600200c00a01c0060b50060b40020090120b3", - "0x600606d00700600f00600f0060770060b90060b800200f00a0b7006006", - "0x6d01000600600801c0060bd0060bc0020090120bb00601100200700a0ba", - "0x201600a01c0060c10060c00020090120bf00601100200700a0be006006", - "0x20c401201c0060c30060c200200901201500600700603a00604e006011", - "0x60ce0060cd0060cc0060cb0060ca0060c90060c80060c70060c60060c5", - "0x200901201500600900600900601100200c00a0d20060d10060d00060cf", - "0x60d60060d500200901201600600606d07f00600603801c0060d40060d3", - "0x60d80020090120d700601100200700a01600601600601100200900a015", - "0x120020dc01c0060db0060da0020090120b900601100200700a01c0060d9", - "0x200901201500600700604e00601100200c00a0090060540060dd002009", - "0x60e20020090120090060160060e10020090120020e001c0060df0060de", - "0xa0090060580060e40020090120090060070060e3002009012015006054", - "0x60bf0060e800200901201c0060e70060e60020090120e5006011002007", - "0x605f0060e900200901200700600f00600700600700601100201600a015", - "0x601100200700a01c0060ec0060eb0020090120ea00601100200700a009", - "0x200901204d00604d0060f000200901201c0060ef0060ee0020090120ed", - "0x1201c0060f40060f30020090120f200601100200700a0090060650060f1", - "0x601100200700a0650060650060f60020090120090060bb0060f5002009", - "0x120fa0060060720020f904e00600603801c0060f80060f700200901206f", - "0x60fe0060fd0020090120fc00601100200700a00900604d0060fb002009", - "0x610100200901201c0061000060ff00200901206400601100200700a01c", - "0x200901201500600700601600601100200c00a009006006038015006065", - "0x210800210710606400606400610500200901200210401c006103006102", - "0x10d00900610c01600600610b00600600610b00200600610b00210a002109", - "0x700600611001600600610f01700600610e01b00600610f0c400600610e", - "0x6500600610b065006006114002007006113065006006112065006006111", - "0x711700211805400600610b002007054006007117015006006116002115", - "0x11b00600610b00211a01500600611205400600610e002119006007054006", - "0x2c00600611602b00600611602a00600611602900600611600211d00211c", - "0x3300600611603000600611602f00600611602e00600611602d006006116", - "0x3a00900610c01400600610b03300600610b03900600610b04800600610b", - "0x700600611100700600611f03300600611203500600610f11e00600610e", - "0x900600611103c00900610c00900600610b00700600610b007006006112", - "0x610b002007120006007117037006006116016006006116009006006112", - "0x7006006123122007006121014006006112006007120006007117120006", - "0x1600600611212500700612112400900610c01c006006116019006006116", - "0x610e03900600612907d00900610c002128039006006127126007006121", - "0x610c07d00600610b03a00600611203a00600611103c00600610f124006", - "0x610c00700600612710d00600611203e00600610f12a00600610e03e009", - "0x610f12d00600610e12c00900610c00700600612912b00600610e12a009", - "0x610f12e00600610e12b00900610c03300600611104100600610e043006", - "0x610c04f00600612704800600612704700600612712c006006112045006", - "0x610b04f00600612905100600610e05300600610f12f00600610e041009", - "0x611204700600612904800600612904300900610c04f00600610b047006", - "0x610c12d00900610c13200600611204f006006112131006006112130006", - "0x610c05400600611205400600611105600600610f13300600610e045009", - "0x610b05800600612913400600610e04700900610c05800600612712e009", - "0x610c00c00600610b05b00600610f13500600610e13100900610c058006", - "0x610c04b00900610c04d00900610c136006006112058006006112130009", - "0x610c13200900610c05d00600611213700600610e04f00900610c04e009", - "0x610c13300900610c05600900610c12f00900610c05300900610c051009", - "0x610e13500900610c05b00900610c13400900610c13600900610c058009", - "0x610c05f00600610b05f00600611205f00600611106100600610f138006", - "0x610c13900600610b13900600611213900600611113700900610c05d009", - "0x610c06700600610f13b00600610e06100900610c13a00700612105f009", - "0x611106c00600610f13c00600610e13900900610c06400900610c138009", - "0x612113b00900610c06700900610c06a00600610b06a00600611206a006", - "0x711700700600613e06c00900610c06a00900610c06900900610c13d007", - "0x614013f00600610e00600713f00600711713f00600610b00200713f006", - "0x711701b00600611613c00900610c01000600611f007006006114007006", - "0x60070170060071170060070c40060071170c400600610b0020070c4006", - "0x214300200700612100214207100600610f14100600610e06f00900610c", - "0x614007900600610f14600600610e13f00900610c145006006112002144", - "0x611200f00600611207600600610f04e006006116014006006111076006", - "0x611614700700612105d00600610f07100900610c04e00600610b075006", - "0x612100600711e00600711711e00600610b00200711e006007117035006", - "0x610c14900700612100600700612103a00600612701500600610b148007", - "0x611607f00600611603a00600612907b00600610f14a00600610e141009", - "0x200712400600711703c00600611614500900610c0c700600610b0c7006", - "0x614d14c00700612114b00600611200600712400600711712400600610b", - "0x711703e00600611607500900610c07f00600610b01600600611007d006", - "0x200712b00600711700600712a00600711712a00600610b00200712a006", - "0x711704300600611607600900610c00600712b00600711712b00600610b", - "0x600704100600711700600712d00600711712d00600610b00200712d006", - "0x711712e00600610b00200712e00600711704500600611607700900610c", - "0x14e00600610e07900900610c00f00600612704d00600612700600712e006", - "0x14b00900610c04d00600612914f00600610e14600900610c00f006006129", - "0x5100600711704f00600611608300600610e08500600610f15000600610e", - "0x4d00600611212f00600610b00200712f006007117053006006116002007", - "0x15200600611215100600611200600712f006007117006007051006007117", - "0x3000600612702a00600612702b00600612702c006006127029006006127", - "0xf00600614d04f00600610f02d00600612702e00600612702f006006127", - "0xf00600611104e00600614d04d00600614d00700600614d153007006121", - "0x611400215508700600610f15400600610e07b00900610c00f006006114", - "0x610c02e00600610b02e00600611103300600610f054006006114002006", - "0x215915800700612115700600611615600700612104f00600611114a009", - "0x15700600614d15700600610b15a007006121157006006112157006006111", - "0x15100900610c0c700900610c07f00900610c00c00700612115700600610f", - "0x2d00600612902c00600612902b00600612902a006006129029006006129", - "0x2e00600612908a00600610f15b00600610e03000600612902f006006129", - "0x2d00600611202e00600611202f006006112030006006112029006006112", - "0x15c00600611204e00600611202a00600611202b00600611202c006006112", - "0x16100600611216000600611215f00600611215e00600611215d006006112", - "0x166007006121165007006121164007006121163006006112162006006112", - "0x600713300600711713300600610b002007133006007117056006006116", - "0x612700600713400600711713400600610b002007134006007117002167", - "0x610c16800600610b16900700612116800600611605800600614d033006", - "0x60070ed0060071170ed00600610b0020070ed00600711700216a152009", - "0xd000600611608e00600611216b00600610e14e00900610c0ed006006114", - "0x3300600612916c00600610b16c00600611614f00900610c0d000600610b", - "0x13500600711705b00600611609200600610f16d00600610e08300900610c", - "0x16f00700612116e00600611200600713500600711713500600610b002007", - "0x2a00600611101400600612708500900610c00c00600614d170007006121", - "0x15e00900610c02b00600610b02b00600611115000900610c02a00600610b", - "0x2d00600614d02c00600614d02b00600614d02a00600614d02900600614d", - "0x2c00600610b02c00600611103000600614d02f00600614d02e00600614d", - "0x2900600610b02900600611117200700612117100600611216100900610c", - "0x200700617405800600611109400600610f17300600610e16000900610c", - "0xd100600611609600600610f17500600610e15d00900610c15f00900610c", - "0x15c00900610c00f00600610b01400600612916300900610c0d100600610b", - "0x700700612117800700612117700700612109900600611217600600610e", - "0x2d00600610b02d00600611108700900610c16200900610c179007006121", - "0x17a00600610e15700900610c04d00600610b05f00600610f15400900610c", - "0x610b06900600611200200706900600711706900600611109b00600610f", - "0x610e15b00900610c05f00600611600200700617b08a00900610c069006", - "0xcc00600611616e00900610c00900706900600711709d00600610f17c006", - "0x3300600611403900600611400600600611416800900610c0cc00600610b", - "0x610e0ed00900610c03000600610b13700600610b006007137006007117", - "0x610f17e00600610e08e00900610c02f00600610b0a000600610f17d006", - "0x610b0cd0060061160a400600610f17f00600610e16b00900610c0a2006", - "0x611616c00900610c0d200600610b0d20060061160d000900610c0cd006", - "0xa800600610f18000600610e09200900610c00200713700600711705d006", - "0x18100600610e17100900610c16d00900610c0ce00600610b0ce006006116", - "0x18200700612109400900610c0cf00600610b0cf0060061160ab00600610f", - "0xc800600610b0c800600611617300900610c18400700617b183007006121", - "0x6900600711717500900610c0c900600610b0c900600611609600900610c", - "0x61161850070061210d100900610c0ca00600610b0ca006006116007007", - "0x200713800600711706100600611609900900610c0cb00600610b0cb006", - "0x611417600900610c05f00600614d00600713800600711713800600610b", - "0x614d139006006116009007006186002007006186015006006114009006", - "0x610c09b00900610c06400600610b06400600611213900600610f139006", - "0x13b00600711713b00600610b00200713b00600711706700600611617a009", - "0x13c00600711706c00600611606a00600611609d00900610c002187006007", - "0x17c00900610c06a00600610f00600713c00600711713c00600610b002007", - "0x18c00700612118b00700612118a007006121189007006121188007006121", - "0x170060071170cc00900610c0c600600610b0c600600611618d007006121", - "0x61230b300600610e0b500600610f18e00600610e0a000900610c002007", - "0x610f0ba0060061400bd00600610f18f00600610e17d00900610c010006", - "0x20071410060071170710060061160770060061120b90060061120ba006", - "0x200714600600711707900600611600600714100600711714100600610b", - "0x611004e00600610f07700600610b00600714600600711714600600610b", - "0x610f19000600610e0a200900610c04b00600610b006007006113010006", - "0x61120100060061910be00600614d0be00600610b0be0060061400c1006", - "0x610c17e00900610c06500600614d02f00600611119200700612100c006", - "0x61210be00600611219400700612119300700612117f00900610c0a4009", - "0x61211970070061210cd00900610c030006006111196007006121195007", - "0x610c03a00600610b01600600611f19a007006121199007006121198007", - "0x200714a00600711707b0060061160c300600610f19b00600610e0d2009", - "0x611219c0060061110a800900610c00600714a00600711714a00600610b", - "0x219e0d400600610f19d00600610e18000900610c19c00600610b19c006", - "0x19f00600711701600600613e07f00600610f07f00600612708e00600610f", - "0x19f00600610e07f00600612900600719f00600711719f00600610b002007", - "0x410060071171a000600611207f0060061120ce00900610c016006006140", - "0x614d0d700600610f0d900600610f1a100600610e0ab00900610c002007", - "0x600714e00600711714e00600610b00200714e0060071170021a2033006", - "0x600714f00600711714f00600610b00200714f00600711718100900610c", - "0x15000600610b002007150006007117085006006116002007083006007117", - "0x1a300600610e0cf00900610c006007150006007117006007083006007117", - "0x1540060071170870060061160b700600610f0b70060061400db00600610f", - "0x1a400600610b0c800900610c00600715400600711715400600610b002007", - "0x4e00600611404f00600614d0ca00900610c1a50060061140c900900610c", - "0x4d0060061141a70070061210df00600610f1a600600610e0cb00900610c", - "0x200715b00600711708a0060061160021aa0021a90100070061210021a8", - "0x21ac1ab00700612116800600610f00600715b00600711715b00600610b", - "0x1ad0060061140060071ad0060071171ad00600610b0020071ad006007117", - "0x1ae00600610e0b300900610c03700600610f12000600610e0c600900610c", - "0x610b00200716b00600711708e0060061160ed00600610e1af007006121", - "0x9200600611616c00600610f0b500900610c00600716b00600711716b006", - "0x16c00600611200600716d00600711716d00600610b00200716d006007117", - "0x1b400600610b0020071b40060071170021b31b200600610b1b10070061b0", - "0x61b01b50070061b018e00900610c1b40060061140060071b4006007117", - "0x610b0e700600610f1b800600610e0b700900610c1b70070061b01b6007", - "0x17300600610b0020071730060071170940060061160b900900610c0e5006", - "0x1750060071170960060061160021b9058006006114006007173006007117", - "0x1000600613e0ba00900610c00600717500600711717500600610b002007", - "0x1ba00600610e0060071ba0060071171ba00600610b0020071ba006007117", - "0x610b00200717600600711709900600611609900600610f0bb00900610c", - "0x1bc0070061210480060061141bb007006121006007176006007117176006", - "0x1be0070061b018f00900610c0bd00900610c1bd00600610b1bd006006116", - "0xbf00900610c0ea00600610b0ec00600610f1bf00600610e0be00900610c", - "0x17a00600610b00200717a00600711709b0060061160021c004d006006111", - "0x1500600611106900600610e00600706900600711700600717a006007117", - "0x9d0060061160ef00600610f1c100600610e19000900610c0c100900610c", - "0x6900600611400600717c00600711717c00600610b00200717c006007117", - "0x610b00200717d0060071170a00060061161c20070061b00c300900610c", - "0x17e0060071170a20060061161c30070061b000600717d00600711717d006", - "0x17f0060071170a400600611600600717e00600711717e00600610b002007", - "0x19c00900610c19b00900610c00600717f00600711717f00600610b002007", - "0x600718000600711718000600610b0020071800060071170a8006006116", - "0x711718100600610b0020071810060071170ab0060061160d400900610c", - "0x1c500600610b0020071c50060071170021c419d00900610c006007181006", - "0x610c1a000900610c1c50060061141c60070061210060071c5006007117", - "0x21c70640060061140d900900610c0d700900610c19f00900610c0d6009", - "0xdb00900610c0f200600610b0f400600610f1c800600610e1a100900610c", - "0xb30060071170100060061161a400900610c0090070061211a300900610c", - "0xb300600711718e00600610b00200718e0060071170b5006006116002007", - "0x1ca00600610b0020071ca0060071170021c900600718e006007117006007", - "0x71170bd0060061161a500900610c1ca0060061140060071ca006007117", - "0x61160100060061cb00600718f00600711718f00600610b00200718f006", - "0x1900060071171cc00700612119000600610b0020071900060071170c1006", - "0x61210021d00160070061130021cf07500600610b1ce0070061cd006007", - "0x71171d400600610b0020071d40060071170021d31d20070061211d1007", - "0x1600600614d0df00900610c1d40060061141d50070061210060071d4006", - "0x1d600600610e1a600900610c00c006006114016006006111007007006113", - "0x19b0060071170c30060061160021d80160060061230021d70f800600610f", - "0x1b200900610c1d900700612100600719b00600711719b00600610b002007", - "0x61211ad00900610c1da00700612119c00600610e00600719c006007117", - "0x1dc00700612119d00600610b00600719d0060071171ae00900610c1db007", - "0xe700900610c1de0070061210e500900610c1dd0070061211b400900610c", - "0x1e10070061211ba00900610c1e00070061211b800900610c1df007006121", - "0xec00900610c1e30070061210ea00900610c1e20070061211bd00900610c", - "0x1e60070061210ef00900610c1e50070061211bf00900610c1e4007006121", - "0x611301600600611400200719d0060071170d40060061161c100900610c", - "0x20071a10060071170d90060061160d700600611600900700611300c007", - "0x14f0060061140021e81e70070061210060071a10060071171a100600610b", - "0x60071a30060071171a300600610b0020071a30060071170db006006116", - "0x1a50060071171a500600610b0020071a50060071170021ea1e9007006121", - "0x61161c500900610c04e00600612904e0060061271a500600610e006007", - "0x61120060071a60060071171a600600610b0020071a60060071170df006", - "0x1ae0060071171ae00600610b0020071ae0060071171ad00600610e1eb006", - "0xe50060071170f200900610c1b400600610e01700719c006007117006007", - "0x1ec0070061211b800600610b0020071b80060071170e7006006116002007", - "0x19c0060071170e500600610e0060070e50060071170060071b8006007117", - "0x1ef00600610b0021ee1ed0070061210f400900610c1bd00600610f01b007", - "0x610c0fa00600610b0021f31f20070061211f10070061210fa0060061f0", - "0x610c1ca00900610c0fa00600614d0021f50fa0060061120021f41c8009", - "0x610e0fe00600610f1f600600610e0f800900610c1a400600614d1d4009", - "0x1f800600610e1d600900610c0021f706400600614d0060070061860fc006", - "0x20071bf0060071170ec0060061160020070ea00600711710000600610f", - "0x60071bf0060071171a40060061120060070ea0060071171bf00600610b", - "0x71171c100600610b0020071c10060071170ef0060061160ea00600610e", - "0x19c00600711701000719c00600711700f00719c0060071170060071c1006", - "0x71171c500600610e01500719c00600711701400719c006007117019007", - "0x19c00600711700c00719c00600711700900719c00600711700700719c006", - "0xf40060061160020070f20060071171f900600610e1eb00900610c016007", - "0x60071c80060071171fa0070061211c800600610b0020071c8006007117", - "0x1ca00600610e00200719c0060071170f200600610e0060070f2006007117", - "0x610b0020071d60060071170f80060061160070060061cb1d400600610e", - "0xc600600610f0c600600614d0fa00900610c0060071d60060071171d6006", - "0x1ef00900610c0090060061290c700600610f0c700600614d009006006127", - "0xca00600610f0c900600610f0c900600614d0c800600610f0c800600614d", - "0xcf00600610f0ce00600610f0cd00600610f0cc0060061120cb00600610f", - "0xfe00900610c0d200600610f0d100600610f0fc00900610c0d000600610f", - "0x1340060061140160070061211fc00700612110300600610f1fb00600610e", - "0x1ef0060061120fa0060061140022010022001ff00600610b0021fe0021fd", - "0x20071f60060071170fe0060061160020070fc006007117002203002202", - "0x60070fc0060071170060071f60060071172040070061211f600600610b", - "0x612100600720600600711720600600610b002007206006007117002205", - "0x20071f80060071171000060061161f600900610c206006006114207007", - "0x610b0020071f90060071170022080060071f80060071171f800600610b", - "0x7f00600614d0070060062091f90060061140060071f90060071171f9006", - "0x71171fb00600610b0020071fb00600711710300600611607f006006114", - "0x20b00600200600200220b00600200200220a20600600610e0060071fb006", - "0x20b0060020090020140100070cb00f01600720b007007002007007002002", - "0x600f00201c00620b00600f00601600201900620b00601600600c002002", - "0x200600201b01701500920b0060c401c0190090100020c400620b00600c", - "0x220b0060020090020540060a806500620b00701b00601400200220b006", - "0x2b00617502a00620b00702900601700202911b00720b006065006015002", - "0x20b00602c00601900202c00620b00611b00601b00200220b006002009002", - "0x6500200220b00602e0060c400202f02e00720b00602d00601c00202d006", - "0x20b0060330060c400204803300720b00603000601c00203000620b006002", - "0x611b00203500620b00604800605400203900620b00602f006054002002", - "0x20b00600200900200211e00220b00703503900702900203900620b006039", - "0x3700602c00203700620b00611e00602b00211e00620b00600202a002002", - "0x600202a00200220b00600200900200203a00600202d00212000620b006", - "0x212000620b00603a00602c00203a00620b00610d00602e00210d00620b", - "0x703c00603000203c00620b00603c00602c00203c00620b00612000602f", - "0x200220b00612400603300200220b00600200900207d00615c12400620b", - "0x3e01701500903500203e00620b00603e00603900203e00620b006002048", - "0x20b00600211e00200220b00600200900204112b00714a12c12a00720b007", - "0x20b00600210d00212d00620b00600212000204300620b006002037002002", - "0x600212400204700620b00600203c00212e00620b00600203a002045006", - "0x1412a00204d00620b00600203e00213000620b00600207d00213100620b", - "0x12f00620b00612a00600c00204b00620b00604d13013104712e04512d043", - "0x900612b00213300620b00612c00601600205600620b00600600612c002", - "0x13400620b00602a00604300213600620b00604b00604100205800620b006", - "0x604500205305113204f04e01620b00613413605813305612f00f12d002", - "0x20b00605b00612e00200220b00600200900213500614505b00620b007053", - "0x613000205f00620b00600213100200220b00605d00604700213705d007", - "0x620b00613800604b00200220b00606100604d00213806100720b006137", - "0x213906400720b00613b06700704f00213b00620b00605f00604e002067", - "0x606900605100206a06900720b00606400613200200220b006139006033", - "0x5600213c00620b00606c00612f00206c00620b00606a00605300200220b", - "0x20b00604f00612c00213f00620b00604e00600c00206f00620b00613c006", - "0x13300214500620b00605100612b00214100620b006132006016002071006", - "0x200220b00600200900207514514107113f01600607500620b00606f006", - "0x604f00612c00207700620b00604e00600c00207600620b006135006058", - "0x214b00620b00605100612b00214600620b00613200601600207900620b", - "0x220b00600200900207b14b14607907701600607b00620b006076006133", - "0x14a00620b00600213100200220b00602a00613600200220b00600211e002", - "0x7f14a00705b00207f00620b00607f00604b00207f00620b006002134002", - "0x15200620b0060c715100705d00215100620b0060021350020c700620b006", - "0x600612c00214f00620b00612b00600c00214e00620b006152006058002", - "0x15000620b00600900612b00208500620b00604100601600208300620b006", - "0x20b00600200900215e15008508314f01600615e00620b00614e006133002", - "0x20b00602a00613600200220b00607d00603300200220b00600211e002002", - "0x3300216016100720b00615f00613700215f00620b00600900612b002002", - "0x216300620b00600205f00215d00620b00600213100200220b006160006", - "0x600213500215c00620b00616315d00705b00216300620b00616300604b", - "0x15400620b00608700605800208700620b00615c16200705d00216200620b", - "0x1700601600208a00620b00600600612c00215700620b00601500600c002", - "0x16800620b00615400613300216e00620b00616100612b00215b00620b006", - "0x200220b00600211e00200220b00600200900216816e15b08a157016006", - "0xed00620b00600213100200220b00611b00606100200220b00602b006033", - "0x8e0ed00705b00208e00620b00608e00604b00208e00620b006002138002", - "0x16c00620b00616b0d000705d0020d000620b00600213500216b00620b006", - "0x600612c00216d00620b00601500600c00209200620b00616c006058002", - "0x17300620b00600900612b00209400620b00601700601600217100620b006", - "0x20b00600200900209617309417116d01600609600620b006092006133002", - "0x601500600c00217500620b00605400605800200220b00600211e002002", - "0x217600620b00601700601600209900620b00600600612c0020d100620b", - "0x1760990d101600617a00620b00617500613300209b00620b00600900612b", - "0x20b00600c00606100200220b00600211e00200220b00600200900217a09b", - "0x617c00604b00217c00620b00600213400209d00620b006002131002002", - "0x20a000620b0060021350020cc00620b00617c09d00705b00217c00620b", - "0x1000600c0020a200620b00617d00605800217d00620b0060cc0a000705d", - "0x17f00620b0060140060160020a400620b00600600612c00217e00620b006", - "0xa417e0160060d200620b0060a20061330020cd00620b00600900612b002", - "0x600200200200220b00600213900201600620b0060020640020d20cd17f", - "0x720c01000f00720b00700600200700700200220b00600200600200220b", - "0x1000601600201c00620b00600f00600c00200220b006002009002015014", - "0x20b0060650c401c00901000206500620b00600900600f0020c400620b006", - "0x620d05400620b00701900601400200220b00600200600201901b017009", - "0x2a00601700202a02900720b00605400601500200220b00600200900211b", - "0x620b00602900601b00200220b00600200900202c00620e02b00620b007", - "0xc400203002f00720b00602e00601c00202e00620b00602d00601900202d", - "0x4800720b00603300601c00203300620b00600206500200220b00602f006", - "0x3900605400203500620b00603000605400200220b0060480060c4002039", - "0x220b00711e03500702900203500620b00603500611b00211e00620b006", - "0x603700602b00203700620b00600202a00200220b0060020090020020f4", - "0x20090020020f800600202d00210d00620b00612000602c00212000620b", - "0x2c00203c00620b00603a00602e00203a00620b00600202a00200220b006", - "0x20b00612400602c00212400620b00610d00602f00210d00620b00603c006", - "0x200220b00600200900203e00620f07d00620b007124006030002124006", - "0x620b00612a00603900212a00620b00600204800200220b00607d006033", - "0x600200900204304100721012b12c00720b00712a01b01700903500212a", - "0x20b00600212000212d00620b00600203700200220b00600211e00200220b", - "0x600203c00204700620b00600203a00212e00620b00600210d002045006", - "0x203e00204d00620b00600207d00213000620b00600212400213100620b", - "0x204e00620b00604b04d13013104712e04512d01412a00204b00620b006", - "0x600700612b00212f00620b00612b00601600205300620b00612c00600c", - "0x205800620b00602b00604300213300620b00604e00604100205600620b", - "0x600c01600713b00205100c13204f00c20b00605813305612f053016067", - "0x220b00600200900213400621113600620b00705100606900200c00620b", - "0x600213100200220b00605b00604700213505b00720b00613600606a002", - "0x200220b00613700613c00205f13700720b00613500606c00205d00620b", - "0x605f00606f00206700620b00613200601600213900620b00604f00600c", - "0x20b00606913b06713900c13f00206900620b00605d00604e00213b00620b", - "0x20b00600200900206c00621206a00620b007064006071002064138061009", - "0x613200200220b00606f00603300206f13c00720b00606a006141002002", - "0x620b00607100605300200220b00613f00605100207113f00720b00613c", - "0x600c00207500620b00614500605600214500620b00614100612f002141", - "0x620b00600c00612b00207700620b00613800601600207600620b006061", - "0x20b00600200900214607907707600c00614600620b006075006133002079", - "0x601600207b00620b00606100600c00214b00620b00606c006058002002", - "0x620b00614b00613300207f00620b00600c00612b00214a00620b006138", - "0x620b00613400605800200220b0060020090020c707f14a07b00c0060c7", - "0x612b00214e00620b00613200601600215200620b00604f00600c002151", - "0x208314f14e15200c00608300620b00615100613300214f00620b00600c", - "0x13600200220b00601600614500200220b00600211e00200220b006002009", - "0x215000620b00600213400208500620b00600213100200220b00602b006", - "0x600213500215e00620b00615008500705b00215000620b00615000604b", - "0x15f00620b00616000605800216000620b00615e16100705d00216100620b", - "0x700612b00216300620b00604300601600215d00620b00604100600c002", - "0x900216215c16315d00c00616200620b00615f00613300215c00620b006", - "0x614500200220b00603e00603300200220b00600211e00200220b006002", - "0x215700620b00600700612b00200220b00602b00613600200220b006016", - "0x20b00600213100200220b00615400603300215408700720b006157006137", - "0x705b00215b00620b00615b00604b00215b00620b00600205f00208a006", - "0x20b00616e16800705d00216800620b00600213500216e00620b00615b08a", - "0x1600216b00620b00601700600c00208e00620b0060ed0060580020ed006", - "0x20b00608e00613300216c00620b00608700612b0020d000620b00601b006", - "0x220b00600211e00200220b00600200900209216c0d016b00c006092006", - "0x20b00602900606100200220b00601600614500200220b00602c006033002", - "0x617100604b00217100620b00600213800216d00620b006002131002002", - "0x217300620b00600213500209400620b00617116d00705b00217100620b", - "0x1700600c00217500620b00609600605800209600620b00609417300705d", - "0x17600620b00600700612b00209900620b00601b0060160020d100620b006", - "0x220b00600200900209b1760990d100c00609b00620b006175006133002", - "0x620b00611b00605800200220b00601600614500200220b00600211e002", - "0x612b00217c00620b00601b00601600209d00620b00601700600c00217a", - "0x20a00cc17c09d00c0060a000620b00617a0061330020cc00620b006007", - "0x6100200220b00601600614500200220b00600211e00200220b006002009", - "0x20a200620b00600213400217d00620b00600213100200220b006009006", - "0x600213500217e00620b0060a217d00705b0020a200620b0060a200604b", - "0xcd00620b00617f00605800217f00620b00617e0a400705d0020a400620b", - "0x700612b0020a800620b0060150060160020d200620b00601400600c002", - "0x750020ce1800a80d200c0060ce00620b0060cd00613300218000620b006", - "0x200600200220b00600200200200220b00600213900200f00620b006002", - "0x200900201701500721301401000720b00700700200700700200220b006", - "0x1901b00720b00601c00607600201c00620b00600c00600f00200220b006", - "0x20c400621401600620b00701900607700201000620b00601000600c002", - "0x620b00601400601600202900620b00601000600c00200220b006002009", - "0x14600201600620b00601600f00707900202b00620b00601b00600f00202a", - "0x11b00614b00200220b00600200600211b05406500920b00602b02a029009", - "0x720b00602c00607b00200220b00600200900202d00621502c00620b007", - "0x200220b00600200900203300621603000620b00702f00614a00202f02e", - "0x603900601c00203900620b00604800601900204800620b00602e00601b", - "0x1c00203700620b00600206500200220b0060350060c400211e03500720b", - "0x20b00611e00605400200220b0061200060c400210d12000720b006037006", - "0x2900203a00620b00603a00611b00203c00620b00610d00605400203a006", - "0x620b00600202a00200220b00600200900200221700220b00703c03a007", - "0x202d00203e00620b00607d00602c00207d00620b00612400602b002124", - "0x12a00602e00212a00620b00600202a00200220b006002009002002218006", - "0x12b00620b00603e00602f00203e00620b00612c00602c00212c00620b006", - "0x204300621904100620b00712b00603000212b00620b00612b00602c002", - "0x212d00620b00600204800200220b00604100603300200220b006002009", - "0x721a12e04500720b00712d05406500903500212d00620b00612d006039", - "0x620b00600203700200220b00600211e00200220b006002009002131047", - "0x20b00600203a00204b00620b00600210d00204d00620b006002120002130", - "0x600207d00213200620b00600212400204f00620b00600203c00204e006", - "0x5113204f04e04b04d13001412a00205300620b00600203e00205100620b", - "0x20b00605600604700213305600720b00612f00607f00212f00620b006053", - "0x601600213700620b00600600612c00205d00620b00604500600c002002", - "0x620b00613300604100206100620b00600900612b00205f00620b00612e", - "0x100c700213900620b00603000604e00206400620b00601600604b002138", - "0x713500615100213505b13413605801620b00613906413806105f13705d", - "0x6900620b00606700615200200220b00600200900213b00621b06700620b", - "0x6c00604d00213c06c00720b00606900613000206a00620b006002131002", - "0x214100620b00606a00604e00207100620b00613c00604b00200220b006", - "0x6f00613200200220b00613f00603300213f06f00720b00614107100704f", - "0x7600620b00607500605300200220b00614500605100207514500720b006", - "0x5800600c00207900620b00607700605600207700620b00607600612f002", - "0x7b00620b00613400601600214b00620b00613600612c00214600620b006", - "0x14b14601600607f00620b00607900613300214a00620b00605b00612b002", - "0x600c0020c700620b00613b00605800200220b00600200900207f14a07b", - "0x620b00613400601600215200620b00613600612c00215100620b006058", - "0x15101600608300620b0060c700613300214f00620b00605b00612b00214e", - "0x3000605100200220b00600211e00200220b00600200900208314f14e152", - "0x213400208500620b00600213100200220b00601600604d00200220b006", - "0x620b00615008500705b00215000620b00615000604b00215000620b006", - "0x605800216000620b00615e16100705d00216100620b00600213500215e", - "0x620b00600600612c00215d00620b00604700600c00215f00620b006160", - "0x613300216200620b00600900612b00215c00620b006131006016002163", - "0x11e00200220b00600200900208716215c16315d01600608700620b00615f", - "0x4d00200220b00603000605100200220b00604300603300200220b006002", - "0x720b00608a00613700208a00620b00600900612b00200220b006016006", - "0x600205f00215b00620b00600213100200220b006157006033002157154", - "0x16800620b00616e15b00705b00216e00620b00616e00604b00216e00620b", - "0x8e00605800208e00620b0061680ed00705d0020ed00620b006002135002", - "0x16c00620b00600600612c0020d000620b00606500600c00216b00620b006", - "0x16b00613300216d00620b00615400612b00209200620b006054006016002", - "0x211e00200220b00600200900217116d09216c0d001600617100620b006", - "0x604d00200220b00602e00606100200220b00603300603300200220b006", - "0x4b00217300620b00600213800209400620b00600213100200220b006016", - "0x20b00600213500209600620b00617309400705b00217300620b006173006", - "0x209900620b0060d10060580020d100620b00609617500705d002175006", - "0x605400601600209b00620b00600600612c00217600620b00606500600c", - "0x617c00620b00609900613300209d00620b00600900612b00217a00620b", - "0x4d00200220b00600211e00200220b00600200900217c09d17a09b176016", - "0x620b00606500600c0020cc00620b00602d00605800200220b006016006", - "0x612b0020a200620b00605400601600217d00620b00600600612c0020a0", - "0xa417e0a217d0a00160060a400620b0060cc00613300217e00620b006009", - "0x200220b0060c400603300200220b00600211e00200220b006002009002", - "0x17f00620b00600213100200220b00600f00614e00200220b00601b006061", - "0xcd17f00705b0020cd00620b0060cd00604b0020cd00620b006002138002", - "0x18000620b0060d20a800705d0020a800620b0060021350020d200620b006", - "0x600612c0020ab00620b00601000600c0020ce00620b006180006058002", - "0xc800620b00600900612b0020cf00620b00601400601600218100620b006", - "0x20b0060020090020c90c80cf1810ab0160060c900620b0060ce006133002", - "0x20b00600f00614e00200220b00600c00606100200220b00600211e002002", - "0x60cb00604b0020cb00620b0060021340020ca00620b006002131002002", - "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", - "0x1500600c00218e00620b0060b50060580020b500620b0060c60b300705d", - "0xba00620b0060170060160020b900620b00600600612c0020b700620b006", - "0xb90b70160060bd00620b00618e0061330020bb00620b00600900612b002", - "0x208300201500620b00600206400201000620b00600214f0020bd0bb0ba", - "0x200200200220b00600213900201c00620b00600208500201b00620b006", - "0x21c0650c400720b00700900600700700200220b00600200600200220b006", - "0x601600202c00620b0060c400600c00200220b00600200900211b054007", - "0x602e02d02c00915000202e00620b00601600600f00202d00620b006065", - "0x21d02f00620b00702b00615e00200220b00600200600202b02a02900920b", - "0x616000204803300720b00602f00616100200220b006002009002030006", - "0x20b00602900600c00200220b00600200900203900621e01900620b007048", - "0x15f00203a00620b00603300600f00210d00620b00602a006016002120006", - "0x203711e03500920b00603a10d12000914600201900620b00601901c007", - "0x600200900212400621f03c00620b00703700614b00200220b006002006", - "0x22012a00620b00703e00614a00203e07d00720b00603c00607b00200220b", - "0x12b00601900212b00620b00607d00601b00200220b00600200900212c006", - "0x220b0060430060c400212d04300720b00604100601c00204100620b006", - "0x12e0060c400204712e00720b00604500601c00204500620b006002065002", - "0x213000620b00604700605400213100620b00612d00605400200220b006", - "0x200900200222100220b00713013100702900213100620b00613100611b", - "0x2c00204b00620b00604d00602b00204d00620b00600202a00200220b006", - "0x2a00200220b00600200900200222200600202d00204e00620b00604b006", - "0x620b00613200602c00213200620b00604f00602e00204f00620b006002", - "0x603000205100620b00605100602c00205100620b00604e00602f00204e", - "0x20b00605300603300200220b00600200900212f00622305300620b007051", - "0x3500903500205600620b00605600603900205600620b006002048002002", - "0x211e00200220b00600200900213413600722405813300720b00705611e", - "0x210d00213500620b00600212000205b00620b00600203700200220b006", - "0x12400205f00620b00600203c00213700620b00600203a00205d00620b006", - "0x206400620b00600203e00213800620b00600207d00206100620b006002", - "0x20b00613300600c00213900620b00606413806105f13705d13505b01412a", - "0x15d00213c00620b00605800601600206c00620b00600700612c00206a006", - "0x20b00613900604100213f00620b00600c00612b00206f00620b006002006", - "0x15c00214500620b00612a00604e00214100620b006019006163002071006", - "0x16200206901400f13b01706700f20b00614514107113f06f13c06c06a014", - "0x1500713b00200f00620b00600f01000708700201700620b00601701b007", - "0x600200900207600622507500620b00706900606900201400620b006014", - "0x13100200220b00607700604700207907700720b00607500606a00200220b", - "0x20b00614b00613c00207b14b00720b00607900606c00214600620b006002", - "0x606f00215200620b00613b00601600215100620b00606700600c002002", - "0x14f14e15215100c13f00214f00620b00614600604e00214e00620b00607b", - "0x200900208500622608300620b0070c70060710020c707f14a00920b006", - "0x200220b00615e00603300215e15000720b00608300614100200220b006", - "0x616000605300200220b00616100605100216016100720b006150006132", - "0x216300620b00615d00605600215d00620b00615f00612f00215f00620b", - "0x601700612c00216200620b00614a00600c00215c00620b00600f00615d", - "0x215700620b00601400612b00215400620b00607f00601600208700620b", - "0x20b00600200900208a15715408716215c00f00608a00620b006163006133", - "0x600c00216e00620b00600f00615d00215b00620b006085006058002002", - "0x620b00607f0060160020ed00620b00601700612c00216800620b00614a", - "0x16e00f0060d000620b00615b00613300216b00620b00601400612b00208e", - "0x216c00620b00607600605800200220b0060020090020d016b08e0ed168", - "0x601700612c00216d00620b00606700600c00209200620b00600f00615d", - "0x217300620b00601400612b00209400620b00613b00601600217100620b", - "0x20b00600200900209617309417116d09200f00609600620b00616c006133", - "0x20b00601000615700200220b00601b00615400200220b00600211e002002", - "0x601900608a00200220b00612a00605100200220b006015006145002002", - "0xd100604b0020d100620b00600213400217500620b00600213100200220b", - "0x17600620b00600213500209900620b0060d117500705b0020d100620b006", - "0x615d00217a00620b00609b00605800209b00620b00609917600705d002", - "0x620b00600700612c00217c00620b00613600600c00209d00620b006002", - "0x613300217d00620b00600c00612b0020a000620b0061340060160020cc", - "0x200220b0060020090020a217d0a00cc17c09d00f0060a200620b00617a", - "0x200220b00601b00615400200220b00612f00603300200220b00600211e", - "0x220b00612a00605100200220b00601500614500200220b006010006157", - "0x617f00613700217f00620b00600c00612b00200220b00601900608a002", - "0x5f0020cd00620b00600213100200220b0060a40060330020a417e00720b", - "0x20b0060d20cd00705b0020d200620b0060d200604b0020d200620b006002", - "0x580020ce00620b0060a818000705d00218000620b0060021350020a8006", - "0x20b00603500600c00218100620b00600200615d0020ab00620b0060ce006", - "0x12b0020c900620b00611e0060160020c800620b00600700612c0020cf006", - "0xc90c80cf18100f0060cb00620b0060ab0061330020ca00620b00617e006", - "0x20b00612c00603300200220b00600211e00200220b0060020090020cb0ca", - "0x601500614500200220b00601000615700200220b00601b006154002002", - "0x600213100200220b00601900608a00200220b00607d00606100200220b", - "0x5b0020b300620b0060b300604b0020b300620b0060021380020c600620b", - "0x60b518e00705d00218e00620b0060021350020b500620b0060b30c6007", - "0x20ba00620b00600200615d0020b900620b0060b70060580020b700620b", - "0x611e0060160020bd00620b00600700612c0020bb00620b00603500600c", - "0x60bf00620b0060b90061330020be00620b00600c00612b00218f00620b", - "0x200220b00600211e00200220b0060020090020bf0be18f0bd0bb0ba00f", - "0x220b00601500614500200220b00601000615700200220b00601b006154", - "0x600200615d0020c100620b00612400605800200220b00601900608a002", - "0x219b00620b00600700612c0020c300620b00603500600c00219000620b", - "0x60c10061330020d400620b00600c00612b00219c00620b00611e006016", - "0x211e00200220b00600200900219d0d419c19b0c319000f00619d00620b", - "0x615700200220b00601b00615400200220b00603900603300200220b006", - "0x15b00200220b00603300606100200220b00601500614500200220b006010", - "0x20d600620b0060021380021a000620b00600213100200220b00601c006", - "0x600213500219f00620b0060d61a000705b0020d600620b0060d600604b", - "0x1a100620b0060d90060580020d900620b00619f0d700705d0020d700620b", - "0x700612c0021a300620b00602900600c0020db00620b00600200615d002", - "0xdf00620b00600c00612b0021a500620b00602a0060160021a400620b006", - "0x60020090021a60df1a51a41a30db00f0061a600620b0061a1006133002", - "0x601000615700200220b00601b00615400200220b00600211e00200220b", - "0x3000605800200220b00601c00615b00200220b00601500614500200220b", - "0x1ae00620b00602900600c0021ad00620b00600200615d0021b200620b006", - "0xc00612b0020e500620b00602a0060160021b400620b00600700612c002", - "0x1b80e70e51b41ae1ad00f0061b800620b0061b20061330020e700620b006", - "0x200220b00601b00615400200220b00600211e00200220b006002009002", - "0x220b00601c00615b00200220b00601500614500200220b006010006157", - "0x620b0060021340021ba00620b00600213100200220b006016006061002", - "0x1350020ea00620b0061bd1ba00705b0021bd00620b0061bd00604b0021bd", - "0x20b0061bf0060580021bf00620b0060ea0ec00705d0020ec00620b006002", - "0x12c0021c500620b00605400600c0021c100620b00600200615d0020ef006", - "0x20b00600c00612b0020f400620b00611b0060160020f200620b006007006", - "0x20021ca1c80f40f21c51c100f0061ca00620b0060ef0061330021c8006", - "0xf01600720b00700700600700700200220b00600200600200220b006002", - "0x1600201900620b00601600600c00200220b006002009002014010007227", - "0xc401c0190091500020c400620b00600c00600f00201c00620b00600f006", - "0x6500620b00701b00615e00200220b00600200600201b01701500920b006", - "0x16000202911b00720b00606500616100200220b006002009002054006228", - "0x611b00601b00200220b00600200900202b00622902a00620b007029006", - "0x2f02e00720b00602d00601c00202d00620b00602c00601900202c00620b", - "0x20b00603000601c00203000620b00600206500200220b00602e0060c4002", - "0x5400203900620b00602f00605400200220b0060330060c4002048033007", - "0x703503900702900203900620b00603900611b00203500620b006048006", - "0x602b00211e00620b00600202a00200220b00600200900200222a00220b", - "0x200222b00600202d00212000620b00603700602c00203700620b00611e", - "0x3a00620b00610d00602e00210d00620b00600202a00200220b006002009", - "0x3c00602c00203c00620b00612000602f00212000620b00603a00602c002", - "0x20b00600200900207d00622c12400620b00703c00603000203c00620b006", - "0x603e00603900203e00620b00600204800200220b006124006033002002", - "0x900204112b00722d12c12a00720b00703e01701500903500203e00620b", - "0x212000204300620b00600203700200220b00600211e00200220b006002", - "0x3c00212e00620b00600203a00204500620b00600210d00212d00620b006", - "0x213000620b00600207d00213100620b00600212400204700620b006002", - "0x620b00604d13013104712e04512d04301412a00204d00620b00600203e", - "0x600c00200220b00604e00604700204f04e00720b00604b00607f00204b", - "0x620b00600200615d00205800620b00612c00601600213300620b00612a", - "0x616300205b00620b00604f00604100213400620b00600900612b002136", - "0x5305113201620b00613505b13413605813300f16e00213500620b00602a", - "0x200220b00600200900213700622e05d00620b00705600615100205612f", - "0x20b00605f00613000206100620b00600213100205f00620b00605d006152", - "0x4e00213b00620b00606400604b00200220b00613800604d002064138007", - "0x6700603300206713900720b00606913b00704f00206900620b006061006", - "0x200220b00606a00605100206c06a00720b00613900613200200220b006", - "0x606f00605600206f00620b00613c00612f00213c00620b00606c006053", - "0x214100620b00613200600c00207100620b00605300615d00213f00620b", - "0x613f00613300207500620b00612f00612b00214500620b006051006016", - "0x13700605800200220b00600200900207607514514107101600607600620b", - "0x14600620b00613200600c00207900620b00605300615d00207700620b006", - "0x7700613300207b00620b00612f00612b00214b00620b006051006016002", - "0x211e00200220b00600200900214a07b14b14607901600614a00620b006", - "0x213400207f00620b00600213100200220b00602a00608a00200220b006", - "0x620b0060c707f00705b0020c700620b0060c700604b0020c700620b006", - "0x605800214e00620b00615115200705d00215200620b006002135002151", - "0x620b00612b00600c00208300620b00600200615d00214f00620b00614e", - "0x613300215e00620b00600900612b00215000620b006041006016002085", - "0x11e00200220b00600200900216115e15008508301600616100620b00614f", - "0x12b00200220b00602a00608a00200220b00607d00603300200220b006002", - "0x615f00603300215f16000720b00615d00613700215d00620b006009006", - "0x15c00604b00215c00620b00600205f00216300620b00600213100200220b", - "0x8700620b00600213500216200620b00615c16300705b00215c00620b006", - "0x615d00215700620b00615400605800215400620b00616208700705d002", - "0x620b00601700601600215b00620b00601500600c00208a00620b006002", - "0x8a0160060ed00620b00615700613300216800620b00616000612b00216e", - "0x2b00603300200220b00600211e00200220b0060020090020ed16816e15b", - "0x213800208e00620b00600213100200220b00611b00606100200220b006", - "0x620b00616b08e00705b00216b00620b00616b00604b00216b00620b006", - "0x605800209200620b0060d016c00705d00216c00620b0060021350020d0", - "0x620b00601500600c00217100620b00600200615d00216d00620b006092", - "0x613300209600620b00600900612b00217300620b006017006016002094", - "0x11e00200220b00600200900217509617309417101600617500620b00616d", - "0x9900620b00600200615d0020d100620b00605400605800200220b006002", - "0x900612b00209b00620b00601700601600217600620b00601500600c002", - "0x209d17a09b17609901600609d00620b0060d100613300217a00620b006", - "0x13100200220b00600c00606100200220b00600211e00200220b006002009", - "0xcc00620b0060cc00604b0020cc00620b00600213400217c00620b006002", - "0x17d00705d00217d00620b0060021350020a000620b0060cc17c00705b002", - "0x620b00600200615d00217e00620b0060a20060580020a200620b0060a0", - "0x612b0020cd00620b00601400601600217f00620b00601000600c0020a4", - "0xa80d20cd17f0a40160060a800620b00617e0061330020d200620b006009", - "0x720b00700700600700700200220b00600200600200220b006002002002", - "0x1b00620b00600c00600f00200220b00600200900201401000722f00f016", - "0x607700201600620b00601600600c00201701500720b00601b006076002", - "0x20b00601500601b00200220b00600200900201c00623001900620b007017", - "0x211b05400720b00606500601c00206500620b0060c40060190020c4006", - "0x720b00602900601c00202900620b00600206500200220b0060540060c4", - "0x605400202c00620b00611b00605400200220b00602a0060c400202b02a", - "0x20b00702d02c00702900202c00620b00602c00611b00202d00620b00602b", - "0x2e00602b00202e00620b00600202a00200220b006002009002002231002", - "0x900200223200600202d00203000620b00602f00602c00202f00620b006", - "0x204800620b00603300602e00203300620b00600202a00200220b006002", - "0x603900602c00203900620b00603000602f00203000620b00604800602c", - "0x220b00600200900211e00623303500620b00703900603000203900620b", - "0x20b00603700603900203700620b00600204800200220b006035006033002", - "0x200900203c03a00723410d12000720b00703700f016009035002037006", - "0x600212000212400620b00600203700200220b00600211e00200220b006", - "0x203c00212a00620b00600203a00203e00620b00600210d00207d00620b", - "0x3e00204100620b00600207d00212b00620b00600212400212c00620b006", - "0x12d00620b00604304112b12c12a03e07d12401412a00204300620b006002", - "0x12000600c00200220b00604500604700212e04500720b00612d00607f002", - "0x13200620b00600200615d00204f00620b00610d00601600204e00620b006", - "0x1900604b00205300620b00612e00604100205100620b00600900612b002", - "0x4d13013104701620b00612f05305113204f04e00f16800212f00620b006", - "0x8e00200220b00600200900213300623505600620b00704b0060ed00204b", - "0x720b00605800616b00213600620b00600213100205800620b006056006", - "0x604e00213700620b00605b00602c00200220b0061340060d000205b134", - "0x605d00603300205d13500720b00605f13700716c00205f00620b006136", - "0x5300200220b00606100605100213806100720b00613500613200200220b", - "0x20b00613900605600213900620b00606400612f00206400620b006138006", - "0x1600206900620b00604700600c00213b00620b00613000615d002067006", - "0x20b00606700613300206c00620b00604d00612b00206a00620b006131006", - "0x613300605800200220b00600200900213c06c06a06913b01600613c006", - "0x207100620b00604700600c00213f00620b00613000615d00206f00620b", - "0x606f00613300214500620b00604d00612b00214100620b006131006016", - "0x600211e00200220b00600200900207514514107113f01600607500620b", - "0x600213400207600620b00600213100200220b00601900604d00200220b", - "0x7900620b00607707600705b00207700620b00607700604b00207700620b", - "0x14b00605800214b00620b00607914600705d00214600620b006002135002", - "0x7f00620b00603a00600c00214a00620b00600200615d00207b00620b006", - "0x7b00613300215100620b00600900612b0020c700620b00603c006016002", - "0x211e00200220b0060020090021521510c707f14a01600615200620b006", - "0x612b00200220b00601900604d00200220b00611e00603300200220b006", - "0x20b00614f00603300214f14e00720b00608300613700208300620b006009", - "0x615000604b00215000620b00600205f00208500620b006002131002002", - "0x216100620b00600213500215e00620b00615008500705b00215000620b", - "0x200615d00215f00620b00616000605800216000620b00615e16100705d", - "0x15c00620b00600f00601600216300620b00601600600c00215d00620b006", - "0x16315d01600608700620b00615f00613300216200620b00614e00612b002", - "0x601c00603300200220b00600211e00200220b00600200900208716215c", - "0x600213800215400620b00600213100200220b00601500606100200220b", - "0x8a00620b00615715400705b00215700620b00615700604b00215700620b", - "0x16e00605800216e00620b00608a15b00705d00215b00620b006002135002", - "0x8e00620b00601600600c0020ed00620b00600200615d00216800620b006", - "0x1680061330020d000620b00600900612b00216b00620b00600f006016002", - "0x211e00200220b00600200900216c0d016b08e0ed01600616c00620b006", - "0x213400209200620b00600213100200220b00600c00606100200220b006", - "0x620b00616d09200705b00216d00620b00616d00604b00216d00620b006", - "0x605800217300620b00617109400705d00209400620b006002135002171", - "0x620b00601000600c00217500620b00600200615d00209600620b006173", - "0x613300217600620b00600900612b00209900620b0060140060160020d1", - "0x201600620b00600206400209b1760990d117501600609b00620b006096", - "0x600200220b00600200200200220b00600213900201000620b006002092", - "0x900201b01700723601501400720b00700600200700700200220b006002", - "0x5400620b00600900600f00206500620b00601400600c00200220b006002", - "0x23700f00620b0070c40061710020c401c01900920b00605406500716d002", - "0x1500601600202c00620b00601900600c00200220b00600200900211b006", - "0x620b00600f01000709400202e00620b00601c00600f00202d00620b006", - "0x200220b00600200600202b02a02900920b00602e02d02c00914600200f", - "0x2f00607b00200220b00600200900203000623802f00620b00702b00614b", - "0x600200900203500623903900620b00704800614a00204803300720b006", - "0x1c00203700620b00611e00601900211e00620b00603300601b00200220b", - "0x620b00600206500200220b0061200060c400210d12000720b006037006", - "0x605400200220b00603c0060c400212403c00720b00603a00601c00203a", - "0x620b00607d00611b00203e00620b00612400605400207d00620b00610d", - "0x202a00200220b00600200900200223a00220b00703e07d00702900207d", - "0x12b00620b00612c00602c00212c00620b00612a00602b00212a00620b006", - "0x204100620b00600202a00200220b00600200900200223b00600202d002", - "0x612b00602f00212b00620b00604300602c00204300620b00604100602e", - "0x23c04500620b00712d00603000212d00620b00612d00602c00212d00620b", - "0x20b00600204800200220b00604500603300200220b00600200900212e006", - "0x13100720b00704702a02900903500204700620b006047006039002047006", - "0x203700200220b00600211e00200220b00600200900204b04d00723d130", - "0x3a00213200620b00600210d00204f00620b00600212000204e00620b006", - "0x212f00620b00600212400205300620b00600203c00205100620b006002", - "0x5113204f04e01412a00213300620b00600203e00205600620b00600207d", - "0x13000601600213500620b00613100600c00205800620b00613305612f053", - "0x5f00620b00605800604100213700620b00600700612b00205d00620b006", - "0x13500f09600213800620b00603900604e00206100620b00600f006173002", - "0x620b00600c01600713b00205b00c13413600c20b00613806105f13705d", - "0xd100200220b00600200900213900623e06400620b00705b00617500200c", - "0x620b00600213100200220b00606700604700213b06700720b006064006", - "0x600c00200220b00606a00605100206c06a00720b00613b006132002069", - "0x620b00606c00609900214100620b00613400601600207100620b006136", - "0x13c00920b00607514514107100c17600207500620b00606900604e002145", - "0x200220b00600200900207700623f07600620b00713f00607100213f06f", - "0x607900613200200220b00614600603300214607900720b006076006141", - "0x214a00620b00607b00605300200220b00614b00605100207b14b00720b", - "0x613c00600c0020c700620b00607f00605600207f00620b00614a00612f", - "0x214e00620b00600c00612b00215200620b00606f00601600215100620b", - "0x200220b00600200900214f14e15215100c00614f00620b0060c7006133", - "0x606f00601600208500620b00613c00600c00208300620b006077006058", - "0x616100620b00608300613300215e00620b00600c00612b00215000620b", - "0x216000620b00613900605800200220b00600200900216115e15008500c", - "0x600c00612b00215d00620b00613400601600215f00620b00613600600c", - "0x200900215c16315d15f00c00615c00620b00616000613300216300620b", - "0x3900605100200220b00601600614500200220b00600211e00200220b006", - "0x213400216200620b00600213100200220b00600f00609b00200220b006", - "0x620b00608716200705b00208700620b00608700604b00208700620b006", - "0x605800208a00620b00615415700705d00215700620b006002135002154", - "0x620b00604b00601600216e00620b00604d00600c00215b00620b00608a", - "0x16e00c00608e00620b00615b0061330020ed00620b00600700612b002168", - "0x612e00603300200220b00600211e00200220b00600200900208e0ed168", - "0xf00609b00200220b00603900605100200220b00601600614500200220b", - "0xd016b00720b00616c00613700216c00620b00600700612b00200220b006", - "0x620b00600205f00209200620b00600213100200220b0060d0006033002", - "0x13500217100620b00616d09200705b00216d00620b00616d00604b00216d", - "0x20b00617300605800217300620b00617109400705d00209400620b006002", - "0x12b0020d100620b00602a00601600217500620b00602900600c002096006", - "0x1760990d117500c00617600620b00609600613300209900620b00616b006", - "0x200220b00603500603300200220b00600211e00200220b006002009002", - "0x220b00600f00609b00200220b00603300606100200220b006016006145", - "0x20b00617a00604b00217a00620b00600213800209b00620b006002131002", - "0x5d00217c00620b00600213500209d00620b00617a09b00705b00217a006", - "0x602900600c0020a000620b0060cc0060580020cc00620b00609d17c007", - "0x217e00620b00600700612b0020a200620b00602a00601600217d00620b", - "0x200220b0060020090020a417e0a217d00c0060a400620b0060a0006133", - "0x200220b00600f00609b00200220b00601600614500200220b00600211e", - "0x602a0060160020cd00620b00602900600c00217f00620b006030006058", - "0x618000620b00617f0061330020a800620b00600700612b0020d200620b", - "0x603300200220b00600211e00200220b0060020090021800a80d20cd00c", - "0x17a00200220b00601c00606100200220b00601600614500200220b00611b", - "0x20ab00620b0060021380020ce00620b00600213100200220b006010006", - "0x600213500218100620b0060ab0ce00705b0020ab00620b0060ab00604b", - "0xc900620b0060c80060580020c800620b0061810cf00705d0020cf00620b", - "0x700612b0020cb00620b0060150060160020ca00620b00601900600c002", - "0x90020b30c60cb0ca00c0060b300620b0060c90061330020c600620b006", - "0x606100200220b00601600614500200220b00600211e00200220b006002", - "0x1340020b500620b00600213100200220b00601000617a00200220b006009", - "0x20b00618e0b500705b00218e00620b00618e00604b00218e00620b006002", - "0x580020ba00620b0060b70b900705d0020b900620b0060021350020b7006", - "0x20b00601b0060160020bd00620b00601700600c0020bb00620b0060ba006", - "0xc0060bf00620b0060bb0061330020be00620b00600700612b00218f006", - "0x200200200220b00600213900201600620b0060020640020bf0be18f0bd", - "0x24001000f00720b00700600200700700200220b00600200600200220b006", - "0x601600201c00620b00600f00600c00200220b006002009002015014007", - "0x60650c401c00914600206500620b00600900600f0020c400620b006010", - "0x24105400620b00701900614b00200220b00600200600201901b01700920b", - "0x614a00202a02900720b00605400607b00200220b00600200900211b006", - "0x20b00602900601b00200220b00600200900202c00624202b00620b00702a", - "0x203002f00720b00602e00601c00202e00620b00602d00601900202d006", - "0x720b00603300601c00203300620b00600206500200220b00602f0060c4", - "0x605400203500620b00603000605400200220b0060480060c4002039048", - "0x20b00711e03500702900203500620b00603500611b00211e00620b006039", - "0x3700602b00203700620b00600202a00200220b006002009002002243002", - "0x900200224400600202d00210d00620b00612000602c00212000620b006", - "0x203c00620b00603a00602e00203a00620b00600202a00200220b006002", - "0x612400602c00212400620b00610d00602f00210d00620b00603c00602c", - "0x220b00600200900203e00624507d00620b00712400603000212400620b", - "0x20b00612a00603900212a00620b00600204800200220b00607d006033002", - "0x200900204304100724612b12c00720b00712a01b01700903500212a006", - "0x600212000212d00620b00600203700200220b00600211e00200220b006", - "0x203c00204700620b00600203a00212e00620b00600210d00204500620b", - "0x3e00204d00620b00600207d00213000620b00600212400213100620b006", - "0x4e00620b00604b04d13013104712e04512d01412a00204b00620b006002", - "0x700612b00212f00620b00612b00601600205300620b00612c00600c002", - "0x5800620b00602b00604e00213300620b00604e00604100205600620b006", - "0xc01600713b00205100c13204f00c20b00605813305612f05301609d002", - "0x20b00600200900213400624713600620b00705100617500200c00620b006", - "0x213100200220b00605b00604700213505b00720b0061360060d1002002", - "0x220b00613700605100205f13700720b00613500613200205d00620b006", - "0x5f00609900206700620b00613200601600213900620b00604f00600c002", - "0x606913b06713900c17600206900620b00605d00604e00213b00620b006", - "0x600200900206c00624806a00620b00706400607100206413806100920b", - "0x13200200220b00606f00603300206f13c00720b00606a00614100200220b", - "0x20b00607100605300200220b00613f00605100207113f00720b00613c006", - "0xc00207500620b00614500605600214500620b00614100612f002141006", - "0x20b00600c00612b00207700620b00613800601600207600620b006061006", - "0x600200900214607907707600c00614600620b006075006133002079006", - "0x1600207b00620b00606100600c00214b00620b00606c00605800200220b", - "0x20b00614b00613300207f00620b00600c00612b00214a00620b006138006", - "0x20b00613400605800200220b0060020090020c707f14a07b00c0060c7006", - "0x12b00214e00620b00613200601600215200620b00604f00600c002151006", - "0x8314f14e15200c00608300620b00615100613300214f00620b00600c006", - "0x200220b00601600614500200220b00600211e00200220b006002009002", - "0x15000620b00600213400208500620b00600213100200220b00602b006051", - "0x213500215e00620b00615008500705b00215000620b00615000604b002", - "0x620b00616000605800216000620b00615e16100705d00216100620b006", - "0x612b00216300620b00604300601600215d00620b00604100600c00215f", - "0x216215c16315d00c00616200620b00615f00613300215c00620b006007", - "0x14500200220b00603e00603300200220b00600211e00200220b006002009", - "0x15700620b00600700612b00200220b00602b00605100200220b006016006", - "0x600213100200220b00615400603300215408700720b006157006137002", - "0x5b00215b00620b00615b00604b00215b00620b00600205f00208a00620b", - "0x616e16800705d00216800620b00600213500216e00620b00615b08a007", - "0x216b00620b00601700600c00208e00620b0060ed0060580020ed00620b", - "0x608e00613300216c00620b00608700612b0020d000620b00601b006016", - "0x20b00600211e00200220b00600200900209216c0d016b00c00609200620b", - "0x602900606100200220b00601600614500200220b00602c006033002002", - "0x17100604b00217100620b00600213800216d00620b00600213100200220b", - "0x17300620b00600213500209400620b00617116d00705b00217100620b006", - "0x600c00217500620b00609600605800209600620b00609417300705d002", - "0x620b00600700612b00209900620b00601b0060160020d100620b006017", - "0x20b00600200900209b1760990d100c00609b00620b006175006133002176", - "0x20b00611b00605800200220b00601600614500200220b00600211e002002", - "0x12b00217c00620b00601b00601600209d00620b00601700600c00217a006", - "0xa00cc17c09d00c0060a000620b00617a0061330020cc00620b006007006", - "0x200220b00601600614500200220b00600211e00200220b006002009002", - "0xa200620b00600213400217d00620b00600213100200220b006009006061", - "0x213500217e00620b0060a217d00705b0020a200620b0060a200604b002", - "0x620b00617f00605800217f00620b00617e0a400705d0020a400620b006", - "0x612b0020a800620b0060150060160020d200620b00601400600c0020cd", - "0x20ce1800a80d200c0060ce00620b0060cd00613300218000620b006007", - "0x1600720b00700700200700700200220b00600200600200220b006002002", - "0x201b00620b00600c00600f00200220b00600200900201401000724900f", - "0x1700607700201600620b00601600600c00201701500720b00601b006076", - "0x620b00601500601b00200220b00600200900201c00624a01900620b007", - "0xc400211b05400720b00606500601c00206500620b0060c40060190020c4", - "0x2a00720b00602900601c00202900620b00600206500200220b006054006", - "0x2b00605400202c00620b00611b00605400200220b00602a0060c400202b", - "0x220b00702d02c00702900202c00620b00602c00611b00202d00620b006", - "0x602e00602b00202e00620b00600202a00200220b00600200900200224b", - "0x200900200224c00600202d00203000620b00602f00602c00202f00620b", - "0x2c00204800620b00603300602e00203300620b00600202a00200220b006", - "0x20b00603900602c00203900620b00603000602f00203000620b006048006", - "0x200220b00600200900211e00624d03500620b007039006030002039006", - "0x620b00603700603900203700620b00600204800200220b006035006033", - "0x600200900203c03a00724e10d12000720b00703700f016009035002037", - "0x20b00600212000212400620b00600203700200220b00600211e00200220b", - "0x600203c00212a00620b00600203a00203e00620b00600210d00207d006", - "0x203e00204100620b00600207d00212b00620b00600212400212c00620b", - "0x212d00620b00604304112b12c12a03e07d12401412a00204300620b006", - "0x612000600c00200220b00604500604700212e04500720b00612d00607f", - "0x213200620b00610d00601600204f00620b00600600612c00204e00620b", - "0x601900604b00205300620b00612e00604100205100620b00600900612b", - "0x4b04d13013104701620b00612f05305113204f04e00f17c00212f00620b", - "0x615200200220b00600200900213300624f05600620b00704b006151002", - "0x13400720b00605800613000213600620b00600213100205800620b006056", - "0x13600604e00213700620b00605b00604b00200220b00613400604d00205b", - "0x20b00605d00603300205d13500720b00605f13700704f00205f00620b006", - "0x605300200220b00606100605100213806100720b006135006132002002", - "0x620b00613900605600213900620b00606400612f00206400620b006138", - "0x601600206900620b00613100612c00213b00620b00604700600c002067", - "0x620b00606700613300206c00620b00604d00612b00206a00620b006130", - "0x20b00613300605800200220b00600200900213c06c06a06913b01600613c", - "0x1600207100620b00613100612c00213f00620b00604700600c00206f006", - "0x20b00606f00613300214500620b00604d00612b00214100620b006130006", - "0x20b00600211e00200220b00600200900207514514107113f016006075006", - "0x20b00600213400207600620b00600213100200220b00601900604d002002", - "0x207900620b00607707600705b00207700620b00607700604b002077006", - "0x614b00605800214b00620b00607914600705d00214600620b006002135", - "0x207f00620b00600600612c00214a00620b00603a00600c00207b00620b", - "0x607b00613300215100620b00600900612b0020c700620b00603c006016", - "0x600211e00200220b0060020090021521510c707f14a01600615200620b", - "0x900612b00200220b00601900604d00200220b00611e00603300200220b", - "0x220b00614f00603300214f14e00720b00608300613700208300620b006", - "0x20b00615000604b00215000620b00600205f00208500620b006002131002", - "0x5d00216100620b00600213500215e00620b00615008500705b002150006", - "0x601600600c00215f00620b00616000605800216000620b00615e161007", - "0x215c00620b00600f00601600216300620b00600600612c00215d00620b", - "0x15c16315d01600608700620b00615f00613300216200620b00614e00612b", - "0x20b00601c00603300200220b00600211e00200220b006002009002087162", - "0x20b00600213800215400620b00600213100200220b006015006061002002", - "0x208a00620b00615715400705b00215700620b00615700604b002157006", - "0x616e00605800216e00620b00608a15b00705d00215b00620b006002135", - "0x208e00620b00600600612c0020ed00620b00601600600c00216800620b", - "0x61680061330020d000620b00600900612b00216b00620b00600f006016", - "0x600211e00200220b00600200900216c0d016b08e0ed01600616c00620b", - "0x600213400209200620b00600213100200220b00600c00606100200220b", - "0x17100620b00616d09200705b00216d00620b00616d00604b00216d00620b", - "0x17300605800217300620b00617109400705d00209400620b006002135002", - "0xd100620b00600600612c00217500620b00601000600c00209600620b006", - "0x9600613300217600620b00600900612b00209900620b006014006016002", - "0x200600200220b00600200200209b1760990d117501600609b00620b006", - "0x200900201401000725000f01600720b00700700200700700200220b006", - "0x1701500720b00601b00607600201b00620b00600c00600f00200220b006", - "0x201c00625101900620b00701700607700201600620b00601600600c002", - "0x720b00605400607600205400620b00601500600f00200220b006002009", - "0x200220b00600200900202900625211b00620b0070650060770020650c4", - "0x2b00607700202b02a00720b00602c00607600202c00620b0060c400600f", - "0x620b00602a00600f00200220b00600200900202e00625302d00620b007", - "0x625404800620b00703000607700203002f00720b006033006076002033", - "0x603500601900203500620b00602f00601b00200220b006002009002039", - "0x200220b0060370060c400212003700720b00611e00601c00211e00620b", - "0x603a0060c400203c03a00720b00610d00601c00210d00620b006002065", - "0x11b00207d00620b00603c00605400212400620b00612000605400200220b", - "0x600200900200225500220b00707d12400702900212400620b006124006", - "0x602c00212a00620b00603e00602b00203e00620b00600202a00200220b", - "0x202a00200220b00600200900200225600600202d00212c00620b00612a", - "0x12c00620b00604100602c00204100620b00612b00602e00212b00620b006", - "0x4300603000204300620b00604300602c00204300620b00612c00602f002", - "0x220b00612d00603300200220b00600200900204500625712d00620b007", - "0xf01600903500212e00620b00612e00603900212e00620b006002048002", - "0x600211e00200220b00600200900204d13000725813104700720b00712e", - "0x600210d00204e00620b00600212000204b00620b00600203700200220b", - "0x212400205100620b00600203c00213200620b00600203a00204f00620b", - "0x12a00205600620b00600203e00212f00620b00600207d00205300620b006", - "0x720b00613300607f00213300620b00605612f05305113204f04e04b014", - "0x612c00205f00620b00604700600c00200220b006058006047002136058", - "0x620b00600900612b00213800620b00613100601600206100620b006006", - "0x604b00206700620b00601900604b00213900620b006136006041002064", - "0x620b00604800604b00206900620b00602d00604b00213b00620b00611b", - "0x5d13505b13401620b00606a06913b06713906413806105f0150cc00206a", - "0x15200200220b00600200900213c00625906c00620b007137006151002137", - "0x720b00606f00613000213f00620b00600213100206f00620b00606c006", - "0x604e00207600620b00614100604b00200220b00607100604d002141071", - "0x607500603300207514500720b00607707600704f00207700620b00613f", - "0x5300200220b00607900605100214607900720b00614500613200200220b", - "0x20b00607b00605600207b00620b00614b00612f00214b00620b006146006", - "0x160020c700620b00605b00612c00207f00620b00613400600c00214a006", - "0x20b00614a00613300215200620b00605d00612b00215100620b006135006", - "0x613c00605800200220b00600200900214e1521510c707f01600614e006", - "0x208500620b00605b00612c00208300620b00613400600c00214f00620b", - "0x614f00613300215e00620b00605d00612b00215000620b006135006016", - "0x600211e00200220b00600200900216115e15008508301600616100620b", - "0x11b00604d00200220b00602d00604d00200220b00604800604d00200220b", - "0x213400216000620b00600213100200220b00601900604d00200220b006", - "0x620b00615f16000705b00215f00620b00615f00604b00215f00620b006", - "0x605800215c00620b00615d16300705d00216300620b00600213500215d", - "0x620b00600600612c00208700620b00613000600c00216200620b00615c", - "0x613300208a00620b00600900612b00215700620b00604d006016002154", - "0x11e00200220b00600200900215b08a15715408701600615b00620b006162", - "0x4d00200220b00604800604d00200220b00604500603300200220b006002", - "0x200220b00601900604d00200220b00611b00604d00200220b00602d006", - "0x16800603300216816e00720b0060ed0061370020ed00620b00600900612b", - "0x604b00216b00620b00600205f00208e00620b00600213100200220b006", - "0x620b0060021350020d000620b00616b08e00705b00216b00620b00616b", - "0xc00216d00620b00609200605800209200620b0060d016c00705d00216c", - "0x20b00600f00601600209400620b00600600612c00217100620b006016006", - "0x1600617500620b00616d00613300209600620b00616e00612b002173006", - "0x603300200220b00600211e00200220b006002009002175096173094171", - "0x4d00200220b00602d00604d00200220b00602f00606100200220b006039", - "0x20d100620b00600213100200220b00601900604d00200220b00611b006", - "0x60990d100705b00209900620b00609900604b00209900620b006002138", - "0x217a00620b00617609b00705d00209b00620b00600213500217600620b", - "0x600600612c00217c00620b00601600600c00209d00620b00617a006058", - "0x217d00620b00600900612b0020a000620b00600f0060160020cc00620b", - "0x220b0060020090020a217d0a00cc17c0160060a200620b00609d006133", - "0x220b00602a00606100200220b00602e00603300200220b00600211e002", - "0x620b00600213100200220b00601900604d00200220b00611b00604d002", - "0x17e00705b0020a400620b0060a400604b0020a400620b00600213800217e", - "0x620b00617f0cd00705d0020cd00620b00600213500217f00620b0060a4", - "0x612c00218000620b00601600600c0020a800620b0060d20060580020d2", - "0x620b00600900612b0020ab00620b00600f0060160020ce00620b006006", - "0x60020090020cf1810ab0ce1800160060cf00620b0060a8006133002181", - "0x60c400606100200220b00602900603300200220b00600211e00200220b", - "0x60021380020c800620b00600213100200220b00601900604d00200220b", - "0xca00620b0060c90c800705b0020c900620b0060c900604b0020c900620b", - "0xc60060580020c600620b0060ca0cb00705d0020cb00620b006002135002", - "0x18e00620b00600600612c0020b500620b00601600600c0020b300620b006", - "0xb30061330020b900620b00600900612b0020b700620b00600f006016002", - "0x211e00200220b0060020090020ba0b90b718e0b50160060ba00620b006", - "0x213100200220b00601500606100200220b00601c00603300200220b006", - "0x20bd00620b0060bd00604b0020bd00620b0060021380020bb00620b006", - "0x18f0be00705d0020be00620b00600213500218f00620b0060bd0bb00705b", - "0x19000620b00601600600c0020c100620b0060bf0060580020bf00620b006", - "0x900612b00219b00620b00600f0060160020c300620b00600600612c002", - "0x20d419c19b0c31900160060d400620b0060c100613300219c00620b006", - "0x13100200220b00600c00606100200220b00600211e00200220b006002009", - "0x1a000620b0061a000604b0021a000620b00600213400219d00620b006002", - "0x19f00705d00219f00620b0060021350020d600620b0061a019d00705b002", - "0x620b00601000600c0020d900620b0060d70060580020d700620b0060d6", - "0x612b0021a300620b0060140060160020db00620b00600600612c0021a1", - "0x1a51a41a30db1a10160061a500620b0060d90061330021a400620b006009", - "0x720b00700900600700700200220b00600200600200220b006002002002", - "0x1900620b00601600600f00200220b00600200900201501400725a01000f", - "0x607700200f00620b00600f00600c00201b01700720b006019006076002", - "0x20b00601700600f00200220b0060020090020c400625b01c00620b00701b", - "0x25c02900620b00705400607700205406500720b00611b00607600211b006", - "0x2d00607600202d00620b00606500600f00200220b00600200900202a006", - "0x600200900202f00625d02e00620b00702c00607700202c02b00720b006", - "0x1c00203300620b00603000601900203000620b00602b00601b00200220b", - "0x620b00600206500200220b0060480060c400203904800720b006033006", - "0x605400200220b00611e0060c400203711e00720b00603500601c002035", - "0x620b00612000611b00210d00620b00603700605400212000620b006039", - "0x202a00200220b00600200900200225e00220b00710d120007029002120", - "0x12400620b00603c00602c00203c00620b00603a00602b00203a00620b006", - "0x207d00620b00600202a00200220b00600200900200225f00600202d002", - "0x612400602f00212400620b00603e00602c00203e00620b00607d00602e", - "0x26012c00620b00712a00603000212a00620b00612a00602c00212a00620b", - "0x20b00600204800200220b00612c00603300200220b00600200900212b006", - "0x4300720b00704101000f00903500204100620b006041006039002041006", - "0x203700200220b00600211e00200220b00600200900212e04500726112d", - "0x3a00213000620b00600210d00213100620b00600212000204700620b006", - "0x204e00620b00600212400204b00620b00600203c00204d00620b006002", - "0x4d13013104701412a00213200620b00600203e00204f00620b00600207d", - "0x700612c00213400620b00604300600c00205100620b00613204f04e04b", - "0x5d00620b00600200615d00213500620b00612d00601600205b00620b006", - "0x1c00604b00205f00620b00605100604100213700620b00600c00612b002", - "0x6400620b00602e00604b00213800620b00602900604b00206100620b006", - "0x5813305612f05300f20b00606413806105f13705d13505b1340150a0002", - "0xa200200220b00600200900206700626213900620b00713600617d002136", - "0x6900720b00613b00613200213b00620b00600213100200220b006139006", - "0x6c00612f00206c00620b00606a00605300200220b00606900605100206a", - "0x13f00620b00613300615d00206f00620b00613c00605600213c00620b006", - "0x5600601600214100620b00612f00612c00207100620b00605300600c002", - "0x7600620b00606f00613300207500620b00605800612b00214500620b006", - "0x20b00606700605800200220b00600200900207607514514107113f00f006", - "0x12c00214600620b00605300600c00207900620b00613300615d002077006", - "0x20b00605800612b00207b00620b00605600601600214b00620b00612f006", - "0x900207f14a07b14b14607900f00607f00620b00607700613300214a006", - "0x604d00200220b00602e00604d00200220b00600211e00200220b006002", - "0x1340020c700620b00600213100200220b00601c00604d00200220b006029", - "0x20b0061510c700705b00215100620b00615100604b00215100620b006002", - "0x5800214f00620b00615214e00705d00214e00620b006002135002152006", - "0x20b00604500600c00208500620b00600200615d00208300620b00614f006", - "0x12b00216100620b00612e00601600215e00620b00600700612c002150006", - "0x16115e15008500f00615f00620b00608300613300216000620b00600c006", - "0x20b00612b00603300200220b00600211e00200220b00600200900215f160", - "0x601c00604d00200220b00602900604d00200220b00602e00604d002002", - "0x216315d00720b00615c00613700215c00620b00600c00612b00200220b", - "0x8700620b00600205f00216200620b00600213100200220b006163006033", - "0x213500215400620b00608716200705b00208700620b00608700604b002", - "0x620b00608a00605800208a00620b00615415700705d00215700620b006", - "0x612c00216800620b00600f00600c00216e00620b00600200615d00215b", - "0x620b00615d00612b00208e00620b0060100060160020ed00620b006007", - "0x20090020d016b08e0ed16816e00f0060d000620b00615b00613300216b", - "0x2b00606100200220b00602f00603300200220b00600211e00200220b006", - "0x213100200220b00601c00604d00200220b00602900604d00200220b006", - "0x209200620b00609200604b00209200620b00600213800216c00620b006", - "0x16d17100705d00217100620b00600213500216d00620b00609216c00705b", - "0x9600620b00600200615d00217300620b00609400605800209400620b006", - "0x100060160020d100620b00600700612c00217500620b00600f00600c002", - "0x9b00620b00617300613300217600620b00600c00612b00209900620b006", - "0x220b00600211e00200220b00600200900209b1760990d117509600f006", - "0x20b00601c00604d00200220b00606500606100200220b00602a006033002", - "0x609d00604b00209d00620b00600213800217a00620b006002131002002", - "0x20cc00620b00600213500217c00620b00609d17a00705b00209d00620b", - "0x200615d00217d00620b0060a00060580020a000620b00617c0cc00705d", - "0xa400620b00600700612c00217e00620b00600f00600c0020a200620b006", - "0x17d0061330020cd00620b00600c00612b00217f00620b006010006016002", - "0x11e00200220b0060020090020d20cd17f0a417e0a200f0060d200620b006", - "0x13100200220b00601700606100200220b0060c400603300200220b006002", - "0x18000620b00618000604b00218000620b0060021380020a800620b006002", - "0xab00705d0020ab00620b0060021350020ce00620b0061800a800705b002", - "0x620b00600200615d0020cf00620b00618100605800218100620b0060ce", - "0x60160020ca00620b00600700612c0020c900620b00600f00600c0020c8", - "0x620b0060cf0061330020c600620b00600c00612b0020cb00620b006010", - "0x20b00600211e00200220b0060020090020b30c60cb0ca0c90c800f0060b3", - "0x20b0060021340020b500620b00600213100200220b006016006061002002", - "0x20b700620b00618e0b500705b00218e00620b00618e00604b00218e006", - "0x60ba0060580020ba00620b0060b70b900705d0020b900620b006002135", - "0x218f00620b00601400600c0020bd00620b00600200615d0020bb00620b", - "0x600c00612b0020bf00620b0060150060160020be00620b00600700612c", - "0x21900c10bf0be18f0bd00f00619000620b0060bb0061330020c100620b", - "0xc00720b00700600200700700200220b00600200600200220b006002002", - "0x201700620b00600900600f00200220b00600200900201000f007263016", - "0x1500607700200c00620b00600c00600c00201501400720b006017006076", - "0x620b00601400601b00200220b00600200900201900626401b00620b007", - "0xc400205406500720b0060c400601c0020c400620b00601c00601900201c", - "0x2900720b00611b00601c00211b00620b00600206500200220b006065006", - "0x2a00605400202b00620b00605400605400200220b0060290060c400202a", - "0x220b00702c02b00702900202b00620b00602b00611b00202c00620b006", - "0x602d00602b00202d00620b00600202a00200220b006002009002002265", - "0x200900200226600600202d00202f00620b00602e00602c00202e00620b", - "0x2c00203300620b00603000602e00203000620b00600202a00200220b006", - "0x20b00604800602c00204800620b00602f00602f00202f00620b006033006", - "0x200220b00600200900203500626703900620b007048006030002048006", - "0x620b00611e00603900211e00620b00600204800200220b006039006033", - "0x600200900203a10d00726812003700720b00711e01600c00903500211e", - "0x20b00600212000203c00620b00600203700200220b00600211e00200220b", - "0x600203c00203e00620b00600203a00207d00620b00600210d002124006", - "0x203e00212b00620b00600207d00212c00620b00600212400212a00620b", - "0x204300620b00604112b12c12a03e07d12403c01412a00204100620b006", - "0x600700612b00213000620b00612000601600213100620b00603700600c", - "0x204e00620b00601b00604b00204b00620b00604300604100204d00620b", - "0x20b00704700617d00204712e04512d00c20b00604e04b04d13013101617e", - "0x13100200220b00604f0060a200200220b00600200900213200626904f006", - "0x20b00605300605100212f05300720b00605100613200205100620b006002", - "0x605600213300620b00605600612f00205600620b00612f006053002002", - "0x620b00604500601600213600620b00612d00600c00205800620b006133", - "0x13600c00613500620b00605800613300205b00620b00612e00612b002134", - "0x600c00205d00620b00613200605800200220b00600200900213505b134", - "0x620b00612e00612b00205f00620b00604500601600213700620b00612d", - "0x20b00600200900213806105f13700c00613800620b00605d006133002061", - "0x620b00600213100200220b00601b00604d00200220b00600211e002002", - "0x6400705b00213900620b00613900604b00213900620b006002134002064", - "0x620b00606713b00705d00213b00620b00600213500206700620b006139", - "0x601600206c00620b00610d00600c00206a00620b006069006058002069", - "0x620b00606a00613300206f00620b00600700612b00213c00620b00603a", - "0x200220b00600211e00200220b00600200900213f06f13c06c00c00613f", - "0x620b00600700612b00200220b00601b00604d00200220b006035006033", - "0x213100200220b00614100603300214107100720b006145006137002145", - "0x207600620b00607600604b00207600620b00600205f00207500620b006", - "0x7707900705d00207900620b00600213500207700620b00607607500705b", - "0x7b00620b00600c00600c00214b00620b00614600605800214600620b006", - "0x14b00613300207f00620b00607100612b00214a00620b006016006016002", - "0x600211e00200220b0060020090020c707f14a07b00c0060c700620b006", - "0x600213100200220b00601400606100200220b00601900603300200220b", - "0x5b00215200620b00615200604b00215200620b00600213800215100620b", - "0x614e14f00705d00214f00620b00600213500214e00620b006152151007", - "0x215000620b00600c00600c00208500620b00608300605800208300620b", - "0x608500613300216100620b00600700612b00215e00620b006016006016", - "0x20b00600211e00200220b00600200900216016115e15000c00616000620b", - "0x20b00600213400215f00620b00600213100200220b006009006061002002", - "0x216300620b00615d15f00705b00215d00620b00615d00604b00215d006", - "0x616200605800216200620b00616315c00705d00215c00620b006002135", - "0x215700620b00601000601600215400620b00600f00600c00208700620b", - "0x8a15715400c00615b00620b00608700613300208a00620b00600700612b", - "0x20b00700600200700700200220b00600200600200220b00600200200215b", - "0x620b00600900600f00200220b00600200900201000f00726a01600c007", - "0x7700200c00620b00600c00600c00201501400720b006017006076002017", - "0x601400601b00200220b00600200900201900626b01b00620b007015006", - "0x5406500720b0060c400601c0020c400620b00601c00601900201c00620b", - "0x20b00611b00601c00211b00620b00600206500200220b0060650060c4002", - "0x5400202b00620b00605400605400200220b0060290060c400202a029007", - "0x702c02b00702900202b00620b00602b00611b00202c00620b00602a006", - "0x602b00202d00620b00600202a00200220b00600200900200226c00220b", - "0x200226d00600202d00202f00620b00602e00602c00202e00620b00602d", - "0x3300620b00603000602e00203000620b00600202a00200220b006002009", - "0x4800602c00204800620b00602f00602f00202f00620b00603300602c002", - "0x20b00600200900203500626e03900620b00704800603000204800620b006", - "0x611e00603900211e00620b00600204800200220b006039006033002002", - "0x900203a10d00726f12003700720b00711e01600c00903500211e00620b", - "0x212000203c00620b00600203700200220b00600211e00200220b006002", - "0x3c00203e00620b00600203a00207d00620b00600210d00212400620b006", - "0x212b00620b00600207d00212c00620b00600212400212a00620b006002", - "0x620b00604112b12c12a03e07d12403c01412a00204100620b00600203e", - "0x612b00213000620b00612000601600213100620b00603700600c002043", - "0x620b00601b00604b00204b00620b00604300604100204d00620b006007", - "0x4700617d00204712e04512d00c20b00604e04b04d1301310160a400204e", - "0x220b00604f0060a200200220b00600200900213200627004f00620b007", - "0x5300605100212f05300720b00605100613200205100620b006002131002", - "0x213300620b00605600612f00205600620b00612f00605300200220b006", - "0x604500601600213600620b00612d00600c00205800620b006133006056", - "0x613500620b00605800613300205b00620b00612e00612b00213400620b", - "0x205d00620b00613200605800200220b00600200900213505b13413600c", - "0x612e00612b00205f00620b00604500601600213700620b00612d00600c", - "0x200900213806105f13700c00613800620b00605d00613300206100620b", - "0x600213100200220b00601b00604d00200220b00600211e00200220b006", - "0x5b00213900620b00613900604b00213900620b00600213400206400620b", - "0x606713b00705d00213b00620b00600213500206700620b006139064007", - "0x206c00620b00610d00600c00206a00620b00606900605800206900620b", - "0x606a00613300206f00620b00600700612b00213c00620b00603a006016", - "0x20b00600211e00200220b00600200900213f06f13c06c00c00613f00620b", - "0x600700612b00200220b00601b00604d00200220b006035006033002002", - "0x200220b00614100603300214107100720b00614500613700214500620b", - "0x620b00607600604b00207600620b00600205f00207500620b006002131", - "0x705d00207900620b00600213500207700620b00607607500705b002076", - "0x20b00600c00600c00214b00620b00614600605800214600620b006077079", - "0x13300207f00620b00607100612b00214a00620b00601600601600207b006", - "0x11e00200220b0060020090020c707f14a07b00c0060c700620b00614b006", - "0x13100200220b00601400606100200220b00601900603300200220b006002", - "0x15200620b00615200604b00215200620b00600213800215100620b006002", - "0x14f00705d00214f00620b00600213500214e00620b00615215100705b002", - "0x620b00600c00600c00208500620b00608300605800208300620b00614e", - "0x613300216100620b00600700612b00215e00620b006016006016002150", - "0x211e00200220b00600200900216016115e15000c00616000620b006085", - "0x213400215f00620b00600213100200220b00600900606100200220b006", - "0x620b00615d15f00705b00215d00620b00615d00604b00215d00620b006", - "0x605800216200620b00616315c00705d00215c00620b006002135002163", - "0x620b00601000601600215400620b00600f00600c00208700620b006162", - "0x15400c00615b00620b00608700613300208a00620b00600700612b002157", - "0x600200700700200220b00600200600200220b00600200200215b08a157", - "0x600900600f00200220b00600200900201000f00727101600c00720b007", - "0xc00620b00600c00600c00201501400720b00601700607600201700620b", - "0x601b00200220b00600200900201900627201b00620b007015006077002", - "0x720b0060c400601c0020c400620b00601c00601900201c00620b006014", - "0x11b00601c00211b00620b00600206500200220b0060650060c4002054065", - "0x2b00620b00605400605400200220b0060290060c400202a02900720b006", - "0x2b00702900202b00620b00602b00611b00202c00620b00602a006054002", - "0x202d00620b00600202a00200220b00600200900200227300220b00702c", - "0x27400600202d00202f00620b00602e00602c00202e00620b00602d00602b", - "0x20b00603000602e00203000620b00600202a00200220b006002009002002", - "0x2c00204800620b00602f00602f00202f00620b00603300602c002033006", - "0x200900203500627503900620b00704800603000204800620b006048006", - "0x603900211e00620b00600204800200220b00603900603300200220b006", - "0x3a10d00727612003700720b00711e01600c00903500211e00620b00611e", - "0x203c00620b00600203700200220b00600211e00200220b006002009002", - "0x3e00620b00600203a00207d00620b00600210d00212400620b006002120", - "0x620b00600207d00212c00620b00600212400212a00620b00600203c002", - "0x604112b12c12a03e07d12403c01412a00204100620b00600203e00212b", - "0x213000620b00612000601600213100620b00603700600c00204300620b", - "0x601b00604b00204b00620b00604300604100204d00620b00600700612b", - "0x17d00204712e04512d00c20b00604e04b04d13013101617f00204e00620b", - "0x604f0060a200200220b00600200900213200627704f00620b007047006", - "0x5100212f05300720b00605100613200205100620b00600213100200220b", - "0x620b00605600612f00205600620b00612f00605300200220b006053006", - "0x601600213600620b00612d00600c00205800620b006133006056002133", - "0x620b00605800613300205b00620b00612e00612b00213400620b006045", - "0x620b00613200605800200220b00600200900213505b13413600c006135", - "0x612b00205f00620b00604500601600213700620b00612d00600c00205d", - "0x213806105f13700c00613800620b00605d00613300206100620b00612e", - "0x13100200220b00601b00604d00200220b00600211e00200220b006002009", - "0x13900620b00613900604b00213900620b00600213400206400620b006002", - "0x13b00705d00213b00620b00600213500206700620b00613906400705b002", - "0x620b00610d00600c00206a00620b00606900605800206900620b006067", - "0x613300206f00620b00600700612b00213c00620b00603a00601600206c", - "0x211e00200220b00600200900213f06f13c06c00c00613f00620b00606a", - "0x612b00200220b00601b00604d00200220b00603500603300200220b006", - "0x20b00614100603300214107100720b00614500613700214500620b006007", - "0x607600604b00207600620b00600205f00207500620b006002131002002", - "0x207900620b00600213500207700620b00607607500705b00207600620b", - "0xc00600c00214b00620b00614600605800214600620b00607707900705d", - "0x7f00620b00607100612b00214a00620b00601600601600207b00620b006", - "0x220b0060020090020c707f14a07b00c0060c700620b00614b006133002", - "0x220b00601400606100200220b00601900603300200220b00600211e002", - "0x20b00615200604b00215200620b00600213800215100620b006002131002", - "0x5d00214f00620b00600213500214e00620b00615215100705b002152006", - "0x600c00600c00208500620b00608300605800208300620b00614e14f007", - "0x216100620b00600700612b00215e00620b00601600601600215000620b", - "0x200220b00600200900216016115e15000c00616000620b006085006133", - "0x215f00620b00600213100200220b00600900606100200220b00600211e", - "0x615d15f00705b00215d00620b00615d00604b00215d00620b006002134", - "0x216200620b00616315c00705d00215c00620b00600213500216300620b", - "0x601000601600215400620b00600f00600c00208700620b006162006058", - "0x615b00620b00608700613300208a00620b00600700612b00215700620b", - "0x700700200220b00600200600200220b00600200200215b08a15715400c", - "0x600f00200220b00600200900201000f00727801600c00720b007006002", - "0x20b00600c00600c00201501400720b00601700607600201700620b006009", - "0x200220b00600200900201900627901b00620b00701500607700200c006", - "0x60c400601c0020c400620b00601c00601900201c00620b00601400601b", - "0x1c00211b00620b00600206500200220b0060650060c400205406500720b", - "0x20b00605400605400200220b0060290060c400202a02900720b00611b006", - "0x2900202b00620b00602b00611b00202c00620b00602a00605400202b006", - "0x620b00600202a00200220b00600200900200227a00220b00702c02b007", - "0x202d00202f00620b00602e00602c00202e00620b00602d00602b00202d", - "0x3000602e00203000620b00600202a00200220b00600200900200227b006", - "0x4800620b00602f00602f00202f00620b00603300602c00203300620b006", - "0x203500627c03900620b00704800603000204800620b00604800602c002", - "0x211e00620b00600204800200220b00603900603300200220b006002009", - "0x727d12003700720b00711e01600c00903500211e00620b00611e006039", - "0x620b00600203700200220b00600211e00200220b00600200900203a10d", - "0x20b00600203a00207d00620b00600210d00212400620b00600212000203c", - "0x600207d00212c00620b00600212400212a00620b00600203c00203e006", - "0x12b12c12a03e07d12403c01412a00204100620b00600203e00212b00620b", - "0x620b00612000601600213100620b00603700600c00204300620b006041", - "0x604b00204b00620b00604300604100204d00620b00600700612b002130", - "0x4712e04512d00c20b00604e04b04d1301310160cd00204e00620b00601b", - "0x60a200200220b00600200900213200627e04f00620b00704700617d002", - "0x12f05300720b00605100613200205100620b00600213100200220b00604f", - "0x605600612f00205600620b00612f00605300200220b006053006051002", - "0x213600620b00612d00600c00205800620b00613300605600213300620b", - "0x605800613300205b00620b00612e00612b00213400620b006045006016", - "0x613200605800200220b00600200900213505b13413600c00613500620b", - "0x205f00620b00604500601600213700620b00612d00600c00205d00620b", - "0x6105f13700c00613800620b00605d00613300206100620b00612e00612b", - "0x220b00601b00604d00200220b00600211e00200220b006002009002138", - "0x20b00613900604b00213900620b00600213400206400620b006002131002", - "0x5d00213b00620b00600213500206700620b00613906400705b002139006", - "0x610d00600c00206a00620b00606900605800206900620b00606713b007", - "0x206f00620b00600700612b00213c00620b00603a00601600206c00620b", - "0x200220b00600200900213f06f13c06c00c00613f00620b00606a006133", - "0x200220b00601b00604d00200220b00603500603300200220b00600211e", - "0x14100603300214107100720b00614500613700214500620b00600700612b", - "0x604b00207600620b00600205f00207500620b00600213100200220b006", - "0x620b00600213500207700620b00607607500705b00207600620b006076", - "0xc00214b00620b00614600605800214600620b00607707900705d002079", - "0x20b00607100612b00214a00620b00601600601600207b00620b00600c006", - "0x60020090020c707f14a07b00c0060c700620b00614b00613300207f006", - "0x601400606100200220b00601900603300200220b00600211e00200220b", - "0x15200604b00215200620b00600213800215100620b00600213100200220b", - "0x14f00620b00600213500214e00620b00615215100705b00215200620b006", - "0x600c00208500620b00608300605800208300620b00614e14f00705d002", - "0x620b00600700612b00215e00620b00601600601600215000620b00600c", - "0x20b00600200900216016115e15000c00616000620b006085006133002161", - "0x620b00600213100200220b00600900606100200220b00600211e002002", - "0x15f00705b00215d00620b00615d00604b00215d00620b00600213400215f", - "0x620b00616315c00705d00215c00620b00600213500216300620b00615d", - "0x601600215400620b00600f00600c00208700620b006162006058002162", - "0x620b00608700613300208a00620b00600700612b00215700620b006010", - "0x200220b00600200600200220b00600200200215b08a15715400c00615b", - "0x200220b00600200900201000f00727f01600c00720b007006002007007", - "0x601500601c00201500620b00601400601900201400620b00600900601b", - "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", - "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", - "0xc00206500620b00606500611b00205400620b0060c4006054002065006", - "0x600200900200228000220b00705406500702900200c00620b00600c006", - "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", - "0x202a00200220b00600200900200228100600202d00202a00620b006029", - "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", - "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", - "0x200220b00600211e00200220b00600200900202f00628202e00620b007", - "0x620b00603000603900203000620b00600204800200220b00602e006033", - "0x600200900203503900728304803300720b00703001600c009035002030", - "0x600210d00203700620b00600212000211e00620b00600203700200220b", - "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", - "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", - "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", - "0x604100204500620b00600700612b00212d00620b006048006016002043", - "0x204112b12c12a00c20b00612e04512d04300c0d200212e00620b00603e", - "0x470060a200200220b00600200900213100628404700620b00704100617d", - "0x204b04d00720b00613000613200213000620b00600213100200220b006", - "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", - "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", - "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", - "0x20b00613100605800200220b00600200900205612f05305100c006056006", - "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", - "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", - "0x5d00620b00600213400213500620b00600213100200220b006002009002", - "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", - "0x620b00606100605800206100620b00613705f00705d00205f00620b006", - "0x612b00213900620b00603500601600206400620b00603900600c002138", - "0x213b06713906400c00613b00620b00613800613300206700620b006007", - "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", - "0x606a00603300206a06900720b00606c00613700206c00620b006007006", - "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", - "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", - "0x600c00214500620b00614100605800214100620b00613f07100705d002", - "0x620b00606900612b00207600620b00601600601600207500620b00600c", - "0x20b00600200900207907707607500c00607900620b006145006133002077", - "0x620b00600213100200220b00600900606100200220b00600211e002002", - "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", - "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", - "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", - "0x620b0060c700613300214e00620b00600700612b00215200620b006010", - "0x200220b00600200600200220b00600200200214f14e15215100c00614f", - "0x200220b00600200900201000f00728501600c00720b007006002007007", - "0x601500601c00201500620b00601400601900201400620b00600900601b", - "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", - "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", - "0xc00206500620b00606500611b00205400620b0060c4006054002065006", - "0x600200900200228600220b00705406500702900200c00620b00600c006", - "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", - "0x202a00200220b00600200900200228700600202d00202a00620b006029", - "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", - "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", - "0x200220b00600211e00200220b00600200900202f00628802e00620b007", - "0x620b00603000603900203000620b00600204800200220b00602e006033", - "0x600200900203503900728904803300720b00703001600c009035002030", - "0x600210d00203700620b00600212000211e00620b00600203700200220b", - "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", - "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", - "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", - "0x604100204500620b00600700612b00212d00620b006048006016002043", - "0x204112b12c12a00c20b00612e04512d04300c0a800212e00620b00603e", - "0x470060a200200220b00600200900213100628a04700620b00704100617d", - "0x204b04d00720b00613000613200213000620b00600213100200220b006", - "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", - "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", - "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", - "0x20b00613100605800200220b00600200900205612f05305100c006056006", - "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", - "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", - "0x5d00620b00600213400213500620b00600213100200220b006002009002", - "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", - "0x620b00606100605800206100620b00613705f00705d00205f00620b006", - "0x612b00213900620b00603500601600206400620b00603900600c002138", - "0x213b06713906400c00613b00620b00613800613300206700620b006007", - "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", - "0x606a00603300206a06900720b00606c00613700206c00620b006007006", - "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", - "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", - "0x600c00214500620b00614100605800214100620b00613f07100705d002", - "0x620b00606900612b00207600620b00601600601600207500620b00600c", - "0x20b00600200900207907707607500c00607900620b006145006133002077", - "0x620b00600213100200220b00600900606100200220b00600211e002002", - "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", - "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", - "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", - "0x620b0060c700613300214e00620b00600700612b00215200620b006010", - "0x200220b00600200600200220b00600200200214f14e15215100c00614f", - "0x200220b00600200900201000f00728b01600c00720b007006002007007", - "0x601500601c00201500620b00601400601900201400620b00600900601b", - "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", - "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", - "0xc00206500620b00606500611b00205400620b0060c4006054002065006", - "0x600200900200228c00220b00705406500702900200c00620b00600c006", - "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", - "0x202a00200220b00600200900200228d00600202d00202a00620b006029", - "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", - "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", - "0x200220b00600211e00200220b00600200900202f00628e02e00620b007", - "0x620b00603000603900203000620b00600204800200220b00602e006033", - "0x600200900203503900728f04803300720b00703001600c009035002030", - "0x600210d00203700620b00600212000211e00620b00600203700200220b", - "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", - "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", - "0x620b00603300600c00203e00620b00607d12403c03a10d12003711e014", - "0x604100204500620b00600700612b00212d00620b006048006016002043", - "0x204112b12c12a00c20b00612e04512d04300c18000212e00620b00603e", - "0x470060a200200220b00600200900213100629004700620b00704100617d", - "0x204b04d00720b00613000613200213000620b00600213100200220b006", - "0x20b00604e00612f00204e00620b00604b00605300200220b00604d006051", - "0x1600205100620b00612a00600c00213200620b00604f00605600204f006", - "0x20b00613200613300212f00620b00612b00612b00205300620b00612c006", - "0x20b00613100605800200220b00600200900205612f05305100c006056006", - "0x12b00213600620b00612c00601600205800620b00612a00600c002133006", - "0x5b13413605800c00605b00620b00613300613300213400620b00612b006", - "0x5d00620b00600213400213500620b00600213100200220b006002009002", - "0x213500213700620b00605d13500705b00205d00620b00605d00604b002", - "0x620b00606100605800206100620b00613705f00705d00205f00620b006", - "0x612b00213900620b00603500601600206400620b00603900600c002138", - "0x213b06713906400c00613b00620b00613800613300206700620b006007", - "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", - "0x606a00603300206a06900720b00606c00613700206c00620b006007006", - "0x6f00604b00206f00620b00600205f00213c00620b00600213100200220b", - "0x7100620b00600213500213f00620b00606f13c00705b00206f00620b006", - "0x600c00214500620b00614100605800214100620b00613f07100705d002", - "0x620b00606900612b00207600620b00601600601600207500620b00600c", - "0x20b00600200900207907707607500c00607900620b006145006133002077", - "0x620b00600213100200220b00600900606100200220b00600211e002002", - "0x14600705b00214b00620b00614b00604b00214b00620b006002134002146", - "0x620b00607b14a00705d00214a00620b00600213500207b00620b00614b", - "0x601600215100620b00600f00600c0020c700620b00607f00605800207f", - "0x620b0060c700613300214e00620b00600700612b00215200620b006010", - "0x200220b00600200600200220b00600200200214f14e15215100c00614f", - "0x200220b00600200900201000f00729101600c00720b007006002007007", - "0x601500601c00201500620b00601400601900201400620b00600900601b", - "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", - "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", - "0xc00206500620b00606500611b00205400620b0060c4006054002065006", - "0x600200900200229200220b00705406500702900200c00620b00600c006", - "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", - "0x202a00200220b00600200900200229300600202d00202a00620b006029", - "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", - "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", - "0x200220b00600211e00200220b00600200900202f00629402e00620b007", - "0x620b00603000603900203000620b00600204800200220b00602e006033", - "0x600200900203503900729504803300720b00703001600c009035002030", - "0x600210d00203700620b00600212000211e00620b00600203700200220b", - "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", - "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", - "0x720b00603e00607f00203e00620b00607d12403c03a10d12003711e014", - "0x612b00212d00620b00604800601600200220b00612a00604700212c12a", - "0x612e04512d0090ce00212e00620b00612c00604100204500620b006007", - "0x620b00704300615100203300620b00603300600c00204304112b00920b", - "0x13100213000620b00604700615200200220b006002009002131006296047", - "0x20b00604b00604d00204e04b00720b00613000613000204d00620b006002", - "0x704f00205300620b00604d00604e00205100620b00604e00604b002002", - "0x20b00604f00613200200220b00613200603300213204f00720b006053051", - "0x12f00213300620b00605600605300200220b00612f00605100205612f007", - "0x20b00603300600c00213600620b00605800605600205800620b006133006", - "0x13300213500620b00604100612b00205b00620b00612b006016002134006", - "0x5800200220b00600200900205d13505b13400c00605d00620b006136006", - "0x20b00612b00601600205f00620b00603300600c00213700620b006131006", - "0xc00606400620b00613700613300213800620b00604100612b002061006", - "0x213400213900620b00600213100200220b00600200900206413806105f", - "0x620b00606713900705b00206700620b00606700604b00206700620b006", - "0x605800206a00620b00613b06900705d00206900620b00600213500213b", - "0x620b00603500601600213c00620b00603900600c00206c00620b00606a", - "0x13c00c00607100620b00606c00613300213f00620b00600700612b00206f", - "0x602f00603300200220b00600211e00200220b00600200900207113f06f", - "0x214514100720b00607500613700207500620b00600700612b00200220b", - "0x7700620b00600205f00207600620b00600213100200220b006145006033", - "0x213500207900620b00607707600705b00207700620b00607700604b002", - "0x620b00614b00605800214b00620b00607914600705d00214600620b006", - "0x612b00207f00620b00601600601600214a00620b00600c00600c00207b", - "0x21510c707f14a00c00615100620b00607b0061330020c700620b006141", - "0x13100200220b00600900606100200220b00600211e00200220b006002009", - "0x14e00620b00614e00604b00214e00620b00600213400215200620b006002", - "0x8300705d00208300620b00600213500214f00620b00614e15200705b002", - "0x620b00600f00600c00215000620b00608500605800208500620b00614f", - "0x613300216000620b00600700612b00216100620b00601000601600215e", - "0x200600200220b00600200200215f16016115e00c00615f00620b006150", - "0x200900201000f00729701600c00720b00700600200700700200220b006", - "0x201500620b00601400601900201400620b00600900601b00200220b006", - "0x20b00600206500200220b0060170060c400201b01700720b00601500601c", - "0x5400200220b00601c0060c40020c401c00720b00601900601c002019006", - "0x20b00606500611b00205400620b0060c400605400206500620b00601b006", - "0x229800220b00705406500702900200c00620b00600c00600c002065006", - "0x620b00611b00602b00211b00620b00600202a00200220b006002009002", - "0x20b00600200900200229900600202d00202a00620b00602900602c002029", - "0x2c00602c00202c00620b00602b00602e00202b00620b00600202a002002", - "0x2d00620b00602d00602c00202d00620b00602a00602f00202a00620b006", - "0x211e00200220b00600200900202f00629a02e00620b00702d006030002", - "0x603900203000620b00600204800200220b00602e00603300200220b006", - "0x3503900729b04803300720b00703001600c00903500203000620b006030", - "0x3700620b00600212000211e00620b00600203700200220b006002009002", - "0x620b00600203c00210d00620b00600203a00212000620b00600210d002", - "0x20b00600203e00212400620b00600207d00203c00620b00600212400203a", - "0x607f00203e00620b00607d12403c03a10d12003711e01412a00207d006", - "0x620b00604800601600200220b00612a00604700212c12a00720b00603e", - "0x90ab00212e00620b00612c00604100204500620b00600700612b00212d", - "0x615100203300620b00603300600c00204304112b00920b00612e04512d", - "0x20b00604700615200200220b00600200900213100629c04700620b007043", - "0x4d00204e04b00720b00613000613000204d00620b006002131002130006", - "0x620b00604d00604e00205100620b00604e00604b00200220b00604b006", - "0x13200200220b00613200603300213204f00720b00605305100704f002053", - "0x20b00605600605300200220b00612f00605100205612f00720b00604f006", - "0xc00213600620b00605800605600205800620b00613300612f002133006", - "0x20b00604100612b00205b00620b00612b00601600213400620b006033006", - "0x600200900205d13505b13400c00605d00620b006136006133002135006", - "0x1600205f00620b00603300600c00213700620b00613100605800200220b", - "0x20b00613700613300213800620b00604100612b00206100620b00612b006", - "0x620b00600213100200220b00600200900206413806105f00c006064006", - "0x13900705b00206700620b00606700604b00206700620b006002134002139", - "0x620b00613b06900705d00206900620b00600213500213b00620b006067", - "0x601600213c00620b00603900600c00206c00620b00606a00605800206a", - "0x620b00606c00613300213f00620b00600700612b00206f00620b006035", - "0x200220b00600211e00200220b00600200900207113f06f13c00c006071", - "0x20b00607500613700207500620b00600700612b00200220b00602f006033", - "0x205f00207600620b00600213100200220b006145006033002145141007", - "0x620b00607707600705b00207700620b00607700604b00207700620b006", - "0x605800214b00620b00607914600705d00214600620b006002135002079", - "0x620b00601600601600214a00620b00600c00600c00207b00620b00614b", - "0x14a00c00615100620b00607b0061330020c700620b00614100612b00207f", - "0x600900606100200220b00600211e00200220b0060020090021510c707f", - "0x14e00604b00214e00620b00600213400215200620b00600213100200220b", - "0x8300620b00600213500214f00620b00614e15200705b00214e00620b006", - "0x600c00215000620b00608500605800208500620b00614f08300705d002", - "0x620b00600700612b00216100620b00601000601600215e00620b00600f", - "0x20b00600200200215f16016115e00c00615f00620b006150006133002160", - "0xf00729d01600c00720b00700600200700700200220b006002006002002", - "0x601400601900201400620b00600900601b00200220b006002009002010", - "0x200220b0060170060c400201b01700720b00601500601c00201500620b", - "0x601c0060c40020c401c00720b00601900601c00201900620b006002065", - "0x11b00205400620b0060c400605400206500620b00601b00605400200220b", - "0x705406500702900200c00620b00600c00600c00206500620b006065006", - "0x602b00211b00620b00600202a00200220b00600200900200229e00220b", - "0x200229f00600202d00202a00620b00602900602c00202900620b00611b", - "0x2c00620b00602b00602e00202b00620b00600202a00200220b006002009", - "0x2d00602c00202d00620b00602a00602f00202a00620b00602c00602c002", - "0x20b00600200900202f0062a002e00620b00702d00603000202d00620b006", - "0x620b00600204800200220b00602e00603300200220b00600211e002002", - "0x4803300720b00703001600c00903500203000620b006030006039002030", - "0x212000211e00620b00600203700200220b0060020090020350390072a1", - "0x3c00210d00620b00600203a00212000620b00600210d00203700620b006", - "0x212400620b00600207d00203c00620b00600212400203a00620b006002", - "0x620b00607d12403c03a10d12003711e01412a00207d00620b00600203e", - "0x601600200220b00612a00604700212c12a00720b00603e00607f00203e", - "0x620b00612c00604100204500620b00600700612b00212d00620b006048", - "0x620b00603300600c00204304112b00920b00612e04512d00918100212e", - "0x15200200220b0060020090021310062a204700620b007043006151002033", - "0x720b00613000613000204d00620b00600213100213000620b006047006", - "0x604e00205100620b00604e00604b00200220b00604b00604d00204e04b", - "0x613200603300213204f00720b00605305100704f00205300620b00604d", - "0x5300200220b00612f00605100205612f00720b00604f00613200200220b", - "0x20b00605800605600205800620b00613300612f00213300620b006056006", - "0x12b00205b00620b00612b00601600213400620b00603300600c002136006", - "0x5d13505b13400c00605d00620b00613600613300213500620b006041006", - "0x20b00603300600c00213700620b00613100605800200220b006002009002", - "0x13300213800620b00604100612b00206100620b00612b00601600205f006", - "0x13100200220b00600200900206413806105f00c00606400620b006137006", - "0x6700620b00606700604b00206700620b00600213400213900620b006002", - "0x6900705d00206900620b00600213500213b00620b00606713900705b002", - "0x620b00603900600c00206c00620b00606a00605800206a00620b00613b", - "0x613300213f00620b00600700612b00206f00620b00603500601600213c", - "0x211e00200220b00600200900207113f06f13c00c00607100620b00606c", - "0x13700207500620b00600700612b00200220b00602f00603300200220b006", - "0x620b00600213100200220b00614500603300214514100720b006075006", - "0x7600705b00207700620b00607700604b00207700620b00600205f002076", - "0x620b00607914600705d00214600620b00600213500207900620b006077", - "0x601600214a00620b00600c00600c00207b00620b00614b00605800214b", - "0x620b00607b0061330020c700620b00614100612b00207f00620b006016", - "0x200220b00600211e00200220b0060020090021510c707f14a00c006151", - "0x14e00620b00600213400215200620b00600213100200220b006009006061", - "0x213500214f00620b00614e15200705b00214e00620b00614e00604b002", - "0x620b00608500605800208500620b00614f08300705d00208300620b006", - "0x612b00216100620b00601000601600215e00620b00600f00600c002150", - "0x215f16016115e00c00615f00620b00615000613300216000620b006007", - "0xc00720b00700600200700700200220b00600200600200220b006002002", - "0x201400620b00600900601b00200220b00600200900201000f0072a3016", - "0x170060c400201b01700720b00601500601c00201500620b006014006019", - "0x20c401c00720b00601900601c00201900620b00600206500200220b006", - "0x20b0060c400605400206500620b00601b00605400200220b00601c0060c4", - "0x2900200c00620b00600c00600c00206500620b00606500611b002054006", - "0x620b00600202a00200220b0060020090020022a400220b007054065007", - "0x202d00202a00620b00602900602c00202900620b00611b00602b00211b", - "0x2b00602e00202b00620b00600202a00200220b0060020090020022a5006", - "0x2d00620b00602a00602f00202a00620b00602c00602c00202c00620b006", - "0x202f0062a602e00620b00702d00603000202d00620b00602d00602c002", - "0x4800200220b00602e00603300200220b00600211e00200220b006002009", - "0x703001600c00903500203000620b00603000603900203000620b006002", - "0x620b00600203700200220b0060020090020350390072a704803300720b", - "0x20b00600203a00212000620b00600210d00203700620b00600212000211e", - "0x600207d00203c00620b00600212400203a00620b00600203c00210d006", - "0x12403c03a10d12003711e01412a00207d00620b00600203e00212400620b", - "0x20b00612a00604700212c12a00720b00603e00607f00203e00620b00607d", - "0x612b00212e00620b00604800601600204500620b00603300600c002002", - "0x13104712e04500c0cf00213100620b00612c00604100204700620b006007", - "0x900204d0062a813000620b00712d0060c800212d04304112b00c20b006", - "0x204e00620b00600213100204b00620b0061300060c900200220b006002", - "0x61320060c600200220b00604f0060cb00213204f00720b00604b0060ca", - "0x5100720b00605612f0070b300205600620b00604e00604e00212f00620b", - "0x605100205813300720b00605100613200200220b006053006033002053", - "0x13400620b00613600612f00213600620b00605800605300200220b006133", - "0x4100601600213500620b00612b00600c00205b00620b006134006056002", - "0x5f00620b00605b00613300213700620b00604300612b00205d00620b006", - "0x6100620b00604d00605800200220b00600200900205f13705d13500c006", - "0x4300612b00206400620b00604100601600213800620b00612b00600c002", - "0x900206713906413800c00606700620b00606100613300213900620b006", - "0x4b00206900620b00600213400213b00620b00600213100200220b006002", - "0x20b00600213500206a00620b00606913b00705b00206900620b006069006", - "0x206f00620b00613c00605800213c00620b00606a06c00705d00206c006", - "0x600700612b00207100620b00603500601600213f00620b00603900600c", - "0x200900214514107113f00c00614500620b00606f00613300214100620b", - "0x700612b00200220b00602f00603300200220b00600211e00200220b006", - "0x220b00607600603300207607500720b00607700613700207700620b006", - "0x20b00614600604b00214600620b00600205f00207900620b006002131002", - "0x5d00207b00620b00600213500214b00620b00614607900705b002146006", - "0x600c00600c00207f00620b00614a00605800214a00620b00614b07b007", - "0x215200620b00607500612b00215100620b0060160060160020c700620b", - "0x200220b00600200900214e1521510c700c00614e00620b00607f006133", - "0x214f00620b00600213100200220b00600900606100200220b00600211e", - "0x608314f00705b00208300620b00608300604b00208300620b006002134", - "0x215e00620b00608515000705d00215000620b00600213500208500620b", - "0x601000601600216000620b00600f00600c00216100620b00615e006058", - "0x616300620b00616100613300215d00620b00600700612b00215f00620b", - "0x700700200220b00600200600200220b00600200200216315d15f16000c", - "0x601b00200220b00600200900201000f0072a901600c00720b007006002", - "0x720b00601500601c00201500620b00601400601900201400620b006009", - "0x1900601c00201900620b00600206500200220b0060170060c400201b017", - "0x6500620b00601b00605400200220b00601c0060c40020c401c00720b006", - "0xc00600c00206500620b00606500611b00205400620b0060c4006054002", - "0x220b0060020090020022aa00220b00705406500702900200c00620b006", - "0x602900602c00202900620b00611b00602b00211b00620b00600202a002", - "0x20b00600202a00200220b0060020090020022ab00600202d00202a00620b", - "0x2f00202a00620b00602c00602c00202c00620b00602b00602e00202b006", - "0x20b00702d00603000202d00620b00602d00602c00202d00620b00602a006", - "0x603300200220b00600211e00200220b00600200900202f0062ac02e006", - "0x203000620b00603000603900203000620b00600204800200220b00602e", - "0x220b0060020090020350390072ad04803300720b00703001600c009035", - "0x620b00600210d00203700620b00600212000211e00620b006002037002", - "0x20b00600212400203a00620b00600203c00210d00620b00600203a002120", - "0x11e01412a00207d00620b00600203e00212400620b00600207d00203c006", - "0x12c12a00720b00603e00607f00203e00620b00607d12403c03a10d120037", - "0x60410060b500204100620b00612c00604100200220b00612a006047002", - "0x204512d00720b00612b00618e00204300620b00600213100212b00620b", - "0x20b00604300604e00213100620b0060450060b900200220b00612d0060b7", - "0x200220b00604700603300204712e00720b0061301310070ba002130006", - "0x604b00605300200220b00604d00605100204b04d00720b00612e006132", - "0x213200620b00604f00605600204f00620b00604e00612f00204e00620b", - "0x600700612b00205300620b00604800601600205100620b00603300600c", - "0x200900205612f05305100c00605600620b00613200613300212f00620b", - "0x604b00205800620b00600213400213300620b00600213100200220b006", - "0x620b00600213500213600620b00605813300705b00205800620b006058", - "0xc00213500620b00605b00605800205b00620b00613613400705d002134", - "0x20b00600700612b00213700620b00603500601600205d00620b006039006", - "0x600200900206105f13705d00c00606100620b00613500613300205f006", - "0x600700612b00200220b00602f00603300200220b00600211e00200220b", - "0x200220b00606400603300206413800720b00613900613700213900620b", - "0x620b00613b00604b00213b00620b00600205f00206700620b006002131", - "0x705d00206a00620b00600213500206900620b00613b06700705b00213b", - "0x20b00600c00600c00213c00620b00606c00605800206c00620b00606906a", - "0x13300207100620b00613800612b00213f00620b00601600601600206f006", - "0x11e00200220b00600200900214107113f06f00c00614100620b00613c006", - "0x13400214500620b00600213100200220b00600900606100200220b006002", - "0x20b00607514500705b00207500620b00607500604b00207500620b006002", - "0x5800207900620b00607607700705d00207700620b006002135002076006", - "0x20b00601000601600214b00620b00600f00600c00214600620b006079006", - "0xc00607f00620b00614600613300214a00620b00600700612b00207b006", - "0x200700700200220b00600200600200220b00600200200207f14a07b14b", - "0x900601b00200220b00600200900201000f0072ae01600c00720b007006", - "0x1700720b00601500601c00201500620b00601400601900201400620b006", - "0x601900601c00201900620b00600206500200220b0060170060c400201b", - "0x206500620b00601b00605400200220b00601c0060c40020c401c00720b", - "0x600c00600c00206500620b00606500611b00205400620b0060c4006054", - "0x200220b0060020090020022af00220b00705406500702900200c00620b", - "0x20b00602900602c00202900620b00611b00602b00211b00620b00600202a", - "0x620b00600202a00200220b0060020090020022b000600202d00202a006", - "0x602f00202a00620b00602c00602c00202c00620b00602b00602e00202b", - "0x620b00702d00603000202d00620b00602d00602c00202d00620b00602a", - "0x2e00603300200220b00600211e00200220b00600200900202f0062b102e", - "0x3500203000620b00603000603900203000620b00600204800200220b006", - "0x200220b0060020090020350390072b204803300720b00703001600c009", - "0x12000620b00600210d00203700620b00600212000211e00620b006002037", - "0x620b00600212400203a00620b00600203c00210d00620b00600203a002", - "0x3711e01412a00207d00620b00600203e00212400620b00600207d00203c", - "0x212c12a00720b00603e00607f00203e00620b00607d12403c03a10d120", - "0x12b00620b00600213100200220b00612c00604700200220b00612a006047", - "0x4300604d00212d04300720b00604100613000204100620b0060020bb002", - "0x213100620b00612b00604e00204700620b00612d00604b00200220b006", - "0x4500613200200220b00612e00603300212e04500720b00613104700704f", - "0x4b00620b00604d00605300200220b00613000605100204d13000720b006", - "0x3300600c00204f00620b00604e00605600204e00620b00604b00612f002", - "0x5300620b00600700612b00205100620b00604800601600213200620b006", - "0x220b00600200900212f05305113200c00612f00620b00604f006133002", - "0x20b00613300604b00213300620b00600213400205600620b006002131002", - "0x5d00213600620b00600213500205800620b00613305600705b002133006", - "0x603900600c00205b00620b00613400605800213400620b006058136007", - "0x213700620b00600700612b00205d00620b00603500601600213500620b", - "0x200220b00600200900205f13705d13500c00605f00620b00605b006133", - "0x6400620b00600700612b00200220b00602f00603300200220b00600211e", - "0x600213100200220b00613800603300213806100720b006064006137002", - "0x5b00206700620b00606700604b00206700620b00600205f00213900620b", - "0x613b06900705d00206900620b00600213500213b00620b006067139007", - "0x213c00620b00600c00600c00206c00620b00606a00605800206a00620b", - "0x606c00613300213f00620b00606100612b00206f00620b006016006016", - "0x20b00600211e00200220b00600200900207113f06f13c00c00607100620b", - "0x20b00600213400214100620b00600213100200220b006009006061002002", - "0x207500620b00614514100705b00214500620b00614500604b002145006", - "0x607700605800207700620b00607507600705d00207600620b006002135", - "0x214b00620b00601000601600214600620b00600f00600c00207900620b", - "0x7b14b14600c00614a00620b00607900613300207b00620b00600700612b", - "0x20b00700600200700700200220b00600200600200220b00600200200214a", - "0x620b00600900601b00200220b00600200900201000f0072b301600c007", - "0xc400201b01700720b00601500601c00201500620b006014006019002014", - "0x1c00720b00601900601c00201900620b00600206500200220b006017006", - "0xc400605400206500620b00601b00605400200220b00601c0060c40020c4", - "0xc00620b00600c00600c00206500620b00606500611b00205400620b006", - "0x600202a00200220b0060020090020022b400220b007054065007029002", - "0x202a00620b00602900602c00202900620b00611b00602b00211b00620b", - "0x2e00202b00620b00600202a00200220b0060020090020022b500600202d", - "0x20b00602a00602f00202a00620b00602c00602c00202c00620b00602b006", - "0x62b602e00620b00702d00603000202d00620b00602d00602c00202d006", - "0x220b00602e00603300200220b00600211e00200220b00600200900202f", - "0x1600c00903500203000620b00603000603900203000620b006002048002", - "0x600203700200220b0060020090020350390072b704803300720b007030", - "0x203a00212000620b00600210d00203700620b00600212000211e00620b", - "0x7d00203c00620b00600212400203a00620b00600203c00210d00620b006", - "0x3a10d12003711e01412a00207d00620b00600203e00212400620b006002", - "0x12a00604700212c12a00720b00603e00607f00203e00620b00607d12403c", - "0x212e00620b00604800601600204500620b00603300600c00200220b006", - "0x12e04500c0bd00213100620b00612c00604100204700620b00600700612b", - "0x4d0062b813000620b00712d00618f00212d04304112b00c20b006131047", - "0x620b00600213100204b00620b0061300060be00200220b006002009002", - "0x611b00200220b00604f0060c400213204f00720b00604b00601c00204e", - "0x20b00605612f0070bf00205600620b00604e00604e00212f00620b006132", - "0x205813300720b00605100613200200220b006053006033002053051007", - "0x20b00613600612f00213600620b00605800605300200220b006133006051", - "0x1600213500620b00612b00600c00205b00620b006134006056002134006", - "0x20b00605b00613300213700620b00604300612b00205d00620b006041006", - "0x20b00604d00605800200220b00600200900205f13705d13500c00605f006", - "0x12b00206400620b00604100601600213800620b00612b00600c002061006", - "0x6713906413800c00606700620b00606100613300213900620b006043006", - "0x6900620b00600213400213b00620b00600213100200220b006002009002", - "0x213500206a00620b00606913b00705b00206900620b00606900604b002", - "0x620b00613c00605800213c00620b00606a06c00705d00206c00620b006", - "0x612b00207100620b00603500601600213f00620b00603900600c00206f", - "0x214514107113f00c00614500620b00606f00613300214100620b006007", - "0x12b00200220b00602f00603300200220b00600211e00200220b006002009", - "0x607600603300207607500720b00607700613700207700620b006007006", - "0x14600604b00214600620b00600205f00207900620b00600213100200220b", - "0x7b00620b00600213500214b00620b00614607900705b00214600620b006", - "0x600c00207f00620b00614a00605800214a00620b00614b07b00705d002", - "0x620b00607500612b00215100620b0060160060160020c700620b00600c", - "0x20b00600200900214e1521510c700c00614e00620b00607f006133002152", - "0x620b00600213100200220b00600900606100200220b00600211e002002", - "0x14f00705b00208300620b00608300604b00208300620b00600213400214f", - "0x620b00608515000705d00215000620b00600213500208500620b006083", - "0x601600216000620b00600f00600c00216100620b00615e00605800215e", - "0x620b00616100613300215d00620b00600700612b00215f00620b006010", - "0x200220b00600200600200220b00600200200216315d15f16000c006163", - "0x200220b00600200900201000f0072b901600c00720b007006002007007", - "0x601500601c00201500620b00601400601900201400620b00600900601b", - "0x1c00201900620b00600206500200220b0060170060c400201b01700720b", - "0x20b00601b00605400200220b00601c0060c40020c401c00720b006019006", - "0xc00206500620b00606500611b00205400620b0060c4006054002065006", - "0x60020090020022ba00220b00705406500702900200c00620b00600c006", - "0x602c00202900620b00611b00602b00211b00620b00600202a00200220b", - "0x202a00200220b0060020090020022bb00600202d00202a00620b006029", - "0x2a00620b00602c00602c00202c00620b00602b00602e00202b00620b006", - "0x2d00603000202d00620b00602d00602c00202d00620b00602a00602f002", - "0x200220b00600211e00200220b00600200900202f0062bc02e00620b007", - "0x620b00603000603900203000620b00600204800200220b00602e006033", - "0x60020090020350390072bd04803300720b00703001600c009035002030", - "0x600210d00203700620b00600212000211e00620b00600203700200220b", - "0x212400203a00620b00600203c00210d00620b00600203a00212000620b", - "0x12a00207d00620b00600203e00212400620b00600207d00203c00620b006", - "0x720b00603e00607f00203e00620b00607d12403c03a10d12003711e014", - "0x601600204500620b00603300600c00200220b00612a00604700212c12a", - "0x620b00612c00604100204700620b00600700612b00212e00620b006048", - "0x712d00618f00212d04304112b00c20b00613104712e04500c0c1002131", - "0x4b00620b0061300060be00200220b00600200900204d0062be13000620b", - "0x4f0060c400213204f00720b00604b00601c00204e00620b006002131002", - "0x205600620b00604e00604e00212f00620b00613200611b00200220b006", - "0x5100613200200220b00605300603300205305100720b00605612f0070bf", - "0x13600620b00605800605300200220b00613300605100205813300720b006", - "0x12b00600c00205b00620b00613400605600213400620b00613600612f002", - "0x13700620b00604300612b00205d00620b00604100601600213500620b006", - "0x220b00600200900205f13705d13500c00605f00620b00605b006133002", - "0x4100601600213800620b00612b00600c00206100620b00604d006058002", - "0x6700620b00606100613300213900620b00604300612b00206400620b006", - "0x213b00620b00600213100200220b00600200900206713906413800c006", - "0x606913b00705b00206900620b00606900604b00206900620b006002134", - "0x213c00620b00606a06c00705d00206c00620b00600213500206a00620b", - "0x603500601600213f00620b00603900600c00206f00620b00613c006058", - "0x614500620b00606f00613300214100620b00600700612b00207100620b", - "0x603300200220b00600211e00200220b00600200900214514107113f00c", - "0x7500720b00607700613700207700620b00600700612b00200220b00602f", - "0x20b00600205f00207900620b00600213100200220b006076006033002076", - "0x214b00620b00614607900705b00214600620b00614600604b002146006", - "0x614a00605800214a00620b00614b07b00705d00207b00620b006002135", - "0x215100620b0060160060160020c700620b00600c00600c00207f00620b", - "0x1521510c700c00614e00620b00607f00613300215200620b00607500612b", - "0x220b00600900606100200220b00600211e00200220b00600200900214e", - "0x20b00608300604b00208300620b00600213400214f00620b006002131002", - "0x5d00215000620b00600213500208500620b00608314f00705b002083006", - "0x600f00600c00216100620b00615e00605800215e00620b006085150007", - "0x215d00620b00600700612b00215f00620b00601000601600216000620b", - "0x200220b00600200200216315d15f16000c00616300620b006161006133", - "0x201000f0072bf01600c00720b00700600200700700200220b006002006", - "0x620b00601400601900201400620b00600900601b00200220b006002009", - "0x206500200220b0060170060c400201b01700720b00601500601c002015", - "0x220b00601c0060c40020c401c00720b00601900601c00201900620b006", - "0x6500611b00205400620b0060c400605400206500620b00601b006054002", - "0x220b00705406500702900200c00620b00600c00600c00206500620b006", - "0x611b00602b00211b00620b00600202a00200220b0060020090020022c0", - "0x20090020022c100600202d00202a00620b00602900602c00202900620b", - "0x2c00202c00620b00602b00602e00202b00620b00600202a00200220b006", - "0x20b00602d00602c00202d00620b00602a00602f00202a00620b00602c006", - "0x200220b00600200900202f0062c202e00620b00702d00603000202d006", - "0x203000620b00600204800200220b00602e00603300200220b00600211e", - "0x72c304803300720b00703001600c00903500203000620b006030006039", - "0x20b00600212000211e00620b00600203700200220b006002009002035039", - "0x600203c00210d00620b00600203a00212000620b00600210d002037006", - "0x203e00212400620b00600207d00203c00620b00600212400203a00620b", - "0x203e00620b00607d12403c03a10d12003711e01412a00207d00620b006", - "0x603300600c00200220b00612a00604700212c12a00720b00603e00607f", - "0x204700620b00600700612b00212e00620b00604800601600204500620b", - "0x4304112b00c20b00613104712e04500c19000213100620b00612c006041", - "0x19b00200220b00600200900204d0062c413000620b00712d0060c300212d", - "0x720b00604b00619c00204e00620b00600213100204b00620b006130006", - "0x604e00212f00620b00613200619d00200220b00604f0060d400213204f", - "0x605300603300205305100720b00605612f0071a000205600620b00604e", - "0x5300200220b00613300605100205813300720b00605100613200200220b", - "0x20b00613400605600213400620b00613600612f00213600620b006058006", - "0x12b00205d00620b00604100601600213500620b00612b00600c00205b006", - "0x5f13705d13500c00605f00620b00605b00613300213700620b006043006", - "0x20b00612b00600c00206100620b00604d00605800200220b006002009002", - "0x13300213900620b00604300612b00206400620b006041006016002138006", - "0x13100200220b00600200900206713906413800c00606700620b006061006", - "0x6900620b00606900604b00206900620b00600213400213b00620b006002", - "0x6c00705d00206c00620b00600213500206a00620b00606913b00705b002", - "0x620b00603900600c00206f00620b00613c00605800213c00620b00606a", - "0x613300214100620b00600700612b00207100620b00603500601600213f", - "0x211e00200220b00600200900214514107113f00c00614500620b00606f", - "0x13700207700620b00600700612b00200220b00602f00603300200220b006", - "0x620b00600213100200220b00607600603300207607500720b006077006", - "0x7900705b00214600620b00614600604b00214600620b00600205f002079", - "0x620b00614b07b00705d00207b00620b00600213500214b00620b006146", - "0x60160020c700620b00600c00600c00207f00620b00614a00605800214a", - "0x620b00607f00613300215200620b00607500612b00215100620b006016", - "0x200220b00600211e00200220b00600200900214e1521510c700c00614e", - "0x8300620b00600213400214f00620b00600213100200220b006009006061", - "0x213500208500620b00608314f00705b00208300620b00608300604b002", - "0x620b00615e00605800215e00620b00608515000705d00215000620b006", - "0x612b00215f00620b00601000601600216000620b00600f00600c002161", - "0x216315d15f16000c00616300620b00616100613300215d00620b006007", - "0xc00720b00700600200700700200220b00600200600200220b006002002", - "0x201700620b00600900600f00200220b00600200900201000f0072c5016", - "0x1500607700200c00620b00600c00600c00201501400720b006017006076", - "0x620b00601400601b00200220b0060020090020190062c601b00620b007", - "0xc400205406500720b0060c400601c0020c400620b00601c00601900201c", - "0x2900720b00611b00601c00211b00620b00600206500200220b006065006", - "0x2a00605400202b00620b00605400605400200220b0060290060c400202a", - "0x220b00702c02b00702900202b00620b00602b00611b00202c00620b006", - "0x602d00602b00202d00620b00600202a00200220b0060020090020022c7", - "0x20090020022c800600202d00202f00620b00602e00602c00202e00620b", - "0x2c00203300620b00603000602e00203000620b00600202a00200220b006", - "0x20b00604800602c00204800620b00602f00602f00202f00620b006033006", - "0x200220b0060020090020350062c903900620b007048006030002048006", - "0x620b00611e00603900211e00620b00600204800200220b006039006033", - "0x600200900203a10d0072ca12003700720b00711e01600c00903500211e", - "0x20b00600212000203c00620b00600203700200220b00600211e00200220b", - "0x600203c00203e00620b00600203a00207d00620b00600210d002124006", - "0x203e00212b00620b00600207d00212c00620b00600212400212a00620b", - "0x204300620b00604112b12c12a03e07d12403c01412a00204100620b006", - "0x604500604100200220b00612d00604700204512d00720b00604300607f", - "0x12e00620b0061310470070d600213100620b00601b00604b00204700620b", - "0x4d0060d000204b04d00720b00612e00616b00213000620b006002131002", - "0x205100620b00613000604e00213200620b00604b00602c00200220b006", - "0x4e00613200200220b00604f00603300204f04e00720b00605113200716c", - "0x5600620b00612f00605300200220b00605300605100212f05300720b006", - "0x3700600c00205800620b00613300605600213300620b00605600612f002", - "0x5b00620b00600700612b00213400620b00612000601600213600620b006", - "0x220b00600200900213505b13413600c00613500620b006058006133002", - "0x5d00620b00600213100200220b00601b00604d00200220b00600211e002", - "0x13705d00705b00213700620b00613700604b00213700620b006002134002", - "0x13800620b00605f06100705d00206100620b00600213500205f00620b006", - "0x3a00601600213900620b00610d00600c00206400620b006138006058002", - "0x6900620b00606400613300213b00620b00600700612b00206700620b006", - "0x3300200220b00600211e00200220b00600200900206913b06713900c006", - "0x13c00620b00600700612b00200220b00601b00604d00200220b006035006", - "0x600213100200220b00606c00603300206c06a00720b00613c006137002", - "0x5b00213f00620b00613f00604b00213f00620b00600205f00206f00620b", - "0x607114100705d00214100620b00600213500207100620b00613f06f007", - "0x207600620b00600c00600c00207500620b00614500605800214500620b", - "0x607500613300207900620b00606a00612b00207700620b006016006016", - "0x20b00600211e00200220b00600200900214607907707600c00614600620b", - "0x20b00600213100200220b00601400606100200220b006019006033002002", - "0x705b00207b00620b00607b00604b00207b00620b00600213800214b006", - "0x20b00614a07f00705d00207f00620b00600213500214a00620b00607b14b", - "0x1600215200620b00600c00600c00215100620b0060c70060580020c7006", - "0x20b00615100613300214f00620b00600700612b00214e00620b006016006", - "0x220b00600211e00200220b00600200900208314f14e15200c006083006", - "0x620b00600213400208500620b00600213100200220b006009006061002", - "0x13500215e00620b00615008500705b00215000620b00615000604b002150", - "0x20b00616000605800216000620b00615e16100705d00216100620b006002", - "0x12b00216300620b00601000601600215d00620b00600f00600c00215f006", - "0x16215c16315d00c00616200620b00615f00613300215c00620b006007006", - "0x720b00700600200700700200220b00600200600200220b006002002002", - "0x1400620b00600900601b00200220b00600200900201000f0072cb01600c", - "0x60c400201b01700720b00601500601c00201500620b006014006019002", - "0xc401c00720b00601900601c00201900620b00600206500200220b006017", - "0x60c400605400206500620b00601b00605400200220b00601c0060c4002", - "0x200c00620b00600c00600c00206500620b00606500611b00205400620b", - "0x20b00600202a00200220b0060020090020022cc00220b007054065007029", - "0x2d00202a00620b00602900602c00202900620b00611b00602b00211b006", - "0x602e00202b00620b00600202a00200220b0060020090020022cd006002", - "0x620b00602a00602f00202a00620b00602c00602c00202c00620b00602b", - "0x2f0062ce02e00620b00702d00603000202d00620b00602d00602c00202d", - "0x200220b00602e00603300200220b00600211e00200220b006002009002", - "0x3001600c00903500203000620b00603000603900203000620b006002048", - "0x20b00600203700200220b0060020090020350390072cf04803300720b007", - "0x600203a00212000620b00600210d00203700620b00600212000211e006", - "0x207d00203c00620b00600212400203a00620b00600203c00210d00620b", - "0x3c03a10d12003711e01412a00207d00620b00600203e00212400620b006", - "0x612a00604700212c12a00720b00603e00607f00203e00620b00607d124", - "0x600219f00212b00620b00600213100200220b00612c00604700200220b", - "0x200220b00604300604d00212d04300720b00604100613000204100620b", - "0x13104700704f00213100620b00612b00604e00204700620b00612d00604b", - "0x13000720b00604500613200200220b00612e00603300212e04500720b006", - "0x4b00612f00204b00620b00604d00605300200220b00613000605100204d", - "0x13200620b00603300600c00204f00620b00604e00605600204e00620b006", - "0x4f00613300205300620b00600700612b00205100620b006048006016002", - "0x600213100200220b00600200900212f05305113200c00612f00620b006", - "0x5b00213300620b00613300604b00213300620b00600213400205600620b", - "0x605813600705d00213600620b00600213500205800620b006133056007", - "0x213500620b00603900600c00205b00620b00613400605800213400620b", - "0x605b00613300213700620b00600700612b00205d00620b006035006016", - "0x20b00600211e00200220b00600200900205f13705d13500c00605f00620b", - "0x6400613700206400620b00600700612b00200220b00602f006033002002", - "0x213900620b00600213100200220b00613800603300213806100720b006", - "0x606713900705b00206700620b00606700604b00206700620b00600205f", - "0x206a00620b00613b06900705d00206900620b00600213500213b00620b", - "0x601600601600213c00620b00600c00600c00206c00620b00606a006058", - "0x607100620b00606c00613300213f00620b00606100612b00206f00620b", - "0x606100200220b00600211e00200220b00600200900207113f06f13c00c", - "0x4b00214500620b00600213400214100620b00600213100200220b006009", - "0x20b00600213500207500620b00614514100705b00214500620b006145006", - "0x207900620b00607700605800207700620b00607507600705d002076006", - "0x600700612b00214b00620b00601000601600214600620b00600f00600c", - "0x200200214a07b14b14600c00614a00620b00607900613300207b00620b", - "0x2d001600c00720b00700600200700700200220b00600200600200220b006", - "0x601900201400620b00600900601b00200220b00600200900201000f007", - "0x20b0060170060c400201b01700720b00601500601c00201500620b006014", - "0x60c40020c401c00720b00601900601c00201900620b006002065002002", - "0x5400620b0060c400605400206500620b00601b00605400200220b00601c", - "0x6500702900200c00620b00600c00600c00206500620b00606500611b002", - "0x211b00620b00600202a00200220b0060020090020022d100220b007054", - "0x2d200600202d00202a00620b00602900602c00202900620b00611b00602b", - "0x20b00602b00602e00202b00620b00600202a00200220b006002009002002", - "0x2c00202d00620b00602a00602f00202a00620b00602c00602c00202c006", - "0x200900202f0062d302e00620b00702d00603000202d00620b00602d006", - "0x600204800200220b00602e00603300200220b00600211e00200220b006", - "0x720b00703001600c00903500203000620b00603000603900203000620b", - "0x211e00620b00600203700200220b0060020090020350390072d4048033", - "0x10d00620b00600203a00212000620b00600210d00203700620b006002120", - "0x620b00600207d00203c00620b00600212400203a00620b00600203c002", - "0x607d12403c03a10d12003711e01412a00207d00620b00600203e002124", - "0x200220b00612a00604700212c12a00720b00603e00607f00203e00620b", - "0x4100620b0060020bb00212b00620b00600213100200220b00612c006047", - "0x12d00604b00200220b00604300604d00212d04300720b006041006130002", - "0x720b00613104700704f00213100620b00612b00604e00204700620b006", - "0x5100204d13000720b00604500613200200220b00612e00603300212e045", - "0x620b00604b00612f00204b00620b00604d00605300200220b006130006", - "0x601600213200620b00603300600c00204f00620b00604e00605600204e", - "0x620b00604f00613300205300620b00600700612b00205100620b006048", - "0x5600620b00600213100200220b00600200900212f05305113200c00612f", - "0x13305600705b00213300620b00613300604b00213300620b006002134002", - "0x13400620b00605813600705d00213600620b00600213500205800620b006", - "0x3500601600213500620b00603900600c00205b00620b006134006058002", - "0x5f00620b00605b00613300213700620b00600700612b00205d00620b006", - "0x3300200220b00600211e00200220b00600200900205f13705d13500c006", - "0x720b00606400613700206400620b00600700612b00200220b00602f006", - "0x600205f00213900620b00600213100200220b006138006033002138061", - "0x13b00620b00606713900705b00206700620b00606700604b00206700620b", - "0x6a00605800206a00620b00613b06900705d00206900620b006002135002", - "0x6f00620b00601600601600213c00620b00600c00600c00206c00620b006", - "0x6f13c00c00607100620b00606c00613300213f00620b00606100612b002", - "0x20b00600900606100200220b00600211e00200220b00600200900207113f", - "0x614500604b00214500620b00600213400214100620b006002131002002", - "0x207600620b00600213500207500620b00614514100705b00214500620b", - "0xf00600c00207900620b00607700605800207700620b00607507600705d", - "0x7b00620b00600700612b00214b00620b00601000601600214600620b006", - "0x220b00600200200214a07b14b14600c00614a00620b006079006133002", - "0x1000f0072d501600c00720b00700600200700700200220b006002006002", - "0x20b00601700607600201700620b00600900600f00200220b006002009002", - "0x2d601b00620b00701500607700200c00620b00600c00600c002015014007", - "0x1c00601900201c00620b00601400601b00200220b006002009002019006", - "0x220b0060650060c400205406500720b0060c400601c0020c400620b006", - "0x290060c400202a02900720b00611b00601c00211b00620b006002065002", - "0x202c00620b00602a00605400202b00620b00605400605400200220b006", - "0x20090020022d700220b00702c02b00702900202b00620b00602b00611b", - "0x2c00202e00620b00602d00602b00202d00620b00600202a00200220b006", - "0x2a00200220b0060020090020022d800600202d00202f00620b00602e006", - "0x620b00603300602c00203300620b00603000602e00203000620b006002", - "0x603000204800620b00604800602c00204800620b00602f00602f00202f", - "0x20b00603900603300200220b0060020090020350062d903900620b007048", - "0xc00903500211e00620b00611e00603900211e00620b006002048002002", - "0x211e00200220b00600200900203a10d0072da12003700720b00711e016", - "0x210d00212400620b00600212000203c00620b00600203700200220b006", - "0x12400212a00620b00600203c00203e00620b00600203a00207d00620b006", - "0x204100620b00600203e00212b00620b00600207d00212c00620b006002", - "0x20b00604300607f00204300620b00604112b12c12a03e07d12403c01412a", - "0x4b00204700620b00604500604100200220b00612d00604700204512d007", - "0x20b00600213100212e00620b0061310470070d700213100620b00601b006", - "0x4b00200220b00604d00604d00204b04d00720b00612e006130002130006", - "0x605113200704f00205100620b00613000604e00213200620b00604b006", - "0x12f05300720b00604e00613200200220b00604f00603300204f04e00720b", - "0x605600612f00205600620b00612f00605300200220b006053006051002", - "0x213600620b00603700600c00205800620b00613300605600213300620b", - "0x605800613300205b00620b00600700612b00213400620b006120006016", - "0x20b00600211e00200220b00600200900213505b13413600c00613500620b", - "0x20b00600213400205d00620b00600213100200220b00601b00604d002002", - "0x205f00620b00613705d00705b00213700620b00613700604b002137006", - "0x613800605800213800620b00605f06100705d00206100620b006002135", - "0x206700620b00603a00601600213900620b00610d00600c00206400620b", - "0x13b06713900c00606900620b00606400613300213b00620b00600700612b", - "0x220b00603500603300200220b00600211e00200220b006002009002069", - "0x613c00613700213c00620b00600700612b00200220b00601b00604d002", - "0x5f00206f00620b00600213100200220b00606c00603300206c06a00720b", - "0x20b00613f06f00705b00213f00620b00613f00604b00213f00620b006002", - "0x5800214500620b00607114100705d00214100620b006002135002071006", - "0x20b00601600601600207600620b00600c00600c00207500620b006145006", - "0xc00614600620b00607500613300207900620b00606a00612b002077006", - "0x1900603300200220b00600211e00200220b006002009002146079077076", - "0x213800214b00620b00600213100200220b00601400606100200220b006", - "0x620b00607b14b00705b00207b00620b00607b00604b00207b00620b006", - "0x60580020c700620b00614a07f00705d00207f00620b00600213500214a", - "0x620b00601600601600215200620b00600c00600c00215100620b0060c7", - "0x15200c00608300620b00615100613300214f00620b00600700612b00214e", - "0x600900606100200220b00600211e00200220b00600200900208314f14e", - "0x15000604b00215000620b00600213400208500620b00600213100200220b", - "0x16100620b00600213500215e00620b00615008500705b00215000620b006", - "0x600c00215f00620b00616000605800216000620b00615e16100705d002", - "0x620b00600700612b00216300620b00601000601600215d00620b00600f", - "0x20b00600207500216215c16315d00c00616200620b00615f00613300215c", - "0x220b00600200600200220b00600200200200220b00600213900200f006", - "0x220b0060020090020170150072db01401000720b007007002007007002", - "0x600c00201901b00720b00601c00607600201c00620b00600c00600f002", - "0x60020090020c40062dc01600620b00701900607700201000620b006010", - "0xf00202a00620b00601400601600202900620b00601000600c00200220b", - "0x2a02900914600201600620b00601600f00707900202b00620b00601b006", - "0x620b00711b00614b00200220b00600200600211b05406500920b00602b", - "0x202f02e00720b00602c00607b00200220b00600200900202d0062dd02c", - "0x2e00601b00200220b0060020090020330062de03000620b00702f00614a", - "0x3500720b00603900601c00203900620b00604800601900204800620b006", - "0x603700601c00203700620b00600206500200220b0060350060c400211e", - "0x203a00620b00611e00605400200220b0061200060c400210d12000720b", - "0x3c03a00702900203a00620b00603a00611b00203c00620b00610d006054", - "0x2b00212400620b00600202a00200220b0060020090020022df00220b007", - "0x22e000600202d00203e00620b00607d00602c00207d00620b006124006", - "0x620b00612a00602e00212a00620b00600202a00200220b006002009002", - "0x602c00212b00620b00603e00602f00203e00620b00612c00602c00212c", - "0x60020090020430062e104100620b00712b00603000212b00620b00612b", - "0x12d00603900212d00620b00600204800200220b00604100603300200220b", - "0x21310470072e212e04500720b00712d05406500903500212d00620b006", - "0x12000213000620b00600203700200220b00600211e00200220b006002009", - "0x204e00620b00600203a00204b00620b00600210d00204d00620b006002", - "0x5100620b00600207d00213200620b00600212400204f00620b00600203c", - "0x20b00605305113204f04e04b04d13001412a00205300620b00600203e002", - "0xc00200220b00605600604700213305600720b00612f00607f00212f006", - "0x20b00612e00601600213700620b00600600612c00205d00620b006045006", - "0x4b00213800620b00613300604100206100620b00600900612b00205f006", - "0x5f13705d0100d900213900620b00603000604e00206400620b006016006", - "0x6700620b00713500615100213505b13413605801620b006139064138061", - "0x213100206900620b00606700615200200220b00600200900213b0062e3", - "0x220b00606c00604d00213c06c00720b00606900613000206a00620b006", - "0x7100704f00214100620b00606a00604e00207100620b00613c00604b002", - "0x720b00606f00613200200220b00613f00603300213f06f00720b006141", - "0x612f00207600620b00607500605300200220b006145006051002075145", - "0x620b00605800600c00207900620b00607700605600207700620b006076", - "0x612b00207b00620b00613400601600214b00620b00613600612c002146", - "0x7f14a07b14b14601600607f00620b00607900613300214a00620b00605b", - "0x20b00605800600c0020c700620b00613b00605800200220b006002009002", - "0x12b00214e00620b00613400601600215200620b00613600612c002151006", - "0x14f14e15215101600608300620b0060c700613300214f00620b00605b006", - "0x220b00603000605100200220b00600211e00200220b006002009002083", - "0x620b00600213400208500620b00600213100200220b00601600604d002", - "0x13500215e00620b00615008500705b00215000620b00615000604b002150", - "0x20b00616000605800216000620b00615e16100705d00216100620b006002", - "0x1600216300620b00600600612c00215d00620b00604700600c00215f006", - "0x20b00615f00613300216200620b00600900612b00215c00620b006131006", - "0x20b00600211e00200220b00600200900208716215c16315d016006087006", - "0x601600604d00200220b00603000605100200220b006043006033002002", - "0x215715400720b00608a00613700208a00620b00600900612b00200220b", - "0x16e00620b00600205f00215b00620b00600213100200220b006157006033", - "0x213500216800620b00616e15b00705b00216e00620b00616e00604b002", - "0x620b00608e00605800208e00620b0061680ed00705d0020ed00620b006", - "0x601600216c00620b00600600612c0020d000620b00606500600c00216b", - "0x620b00616b00613300216d00620b00615400612b00209200620b006054", - "0x220b00600211e00200220b00600200900217116d09216c0d0016006171", - "0x20b00601600604d00200220b00602e00606100200220b006033006033002", - "0x617300604b00217300620b00600213800209400620b006002131002002", - "0x217500620b00600213500209600620b00617309400705b00217300620b", - "0x6500600c00209900620b0060d10060580020d100620b00609617500705d", - "0x17a00620b00605400601600209b00620b00600600612c00217600620b006", - "0x9b17601600617c00620b00609900613300209d00620b00600900612b002", - "0x601600604d00200220b00600211e00200220b00600200900217c09d17a", - "0x12c0020a000620b00606500600c0020cc00620b00602d00605800200220b", - "0x20b00600900612b0020a200620b00605400601600217d00620b006006006", - "0x20090020a417e0a217d0a00160060a400620b0060cc00613300217e006", - "0x1b00606100200220b0060c400603300200220b00600211e00200220b006", - "0x213800217f00620b00600213100200220b00600f00614e00200220b006", - "0x620b0060cd17f00705b0020cd00620b0060cd00604b0020cd00620b006", - "0x605800218000620b0060d20a800705d0020a800620b0060021350020d2", - "0x620b00600600612c0020ab00620b00601000600c0020ce00620b006180", - "0x61330020c800620b00600900612b0020cf00620b006014006016002181", - "0x11e00200220b0060020090020c90c80cf1810ab0160060c900620b0060ce", - "0x13100200220b00600f00614e00200220b00600c00606100200220b006002", - "0xcb00620b0060cb00604b0020cb00620b0060021340020ca00620b006002", - "0xb300705d0020b300620b0060021350020c600620b0060cb0ca00705b002", - "0x620b00601500600c00218e00620b0060b50060580020b500620b0060c6", - "0x612b0020ba00620b0060170060160020b900620b00600600612c0020b7", - "0xbd0bb0ba0b90b70160060bd00620b00618e0061330020bb00620b006009", - "0x720b00700600200700700200220b00600200600200220b006002002002", - "0x1700620b00600900600f00200220b00600200900201000f0072e401600c", - "0x607700200c00620b00600c00600c00201501400720b006017006076002", - "0x20b00601400600f00200220b0060020090020190062e501b00620b007015", - "0x2e605400620b0070c40060770020c401c00720b006065006076002065006", - "0x2900601900202900620b00601c00601b00200220b00600200900211b006", - "0x220b00602b0060c400202c02b00720b00602a00601c00202a00620b006", - "0x2e0060c400202f02e00720b00602d00601c00202d00620b006002065002", - "0x203300620b00602f00605400203000620b00602c00605400200220b006", - "0x20090020022e700220b00703303000702900203000620b00603000611b", - "0x2c00203900620b00604800602b00204800620b00600202a00200220b006", - "0x2a00200220b0060020090020022e800600202d00203500620b006039006", - "0x620b00603700602c00203700620b00611e00602e00211e00620b006002", - "0x603000212000620b00612000602c00212000620b00603500602f002035", - "0x20b00610d00603300200220b00600200900203a0062e910d00620b007120", - "0xc00903500203c00620b00603c00603900203c00620b006002048002002", - "0x211e00200220b00600200900212a03e0072ea07d12400720b00703c016", - "0x210d00212b00620b00600212000212c00620b00600203700200220b006", - "0x12400212d00620b00600203c00204300620b00600203a00204100620b006", - "0x204700620b00600203e00212e00620b00600207d00204500620b006002", - "0x20b00612400600c00213100620b00604712e04512d04304112b12c01412a", - "0x4100205100620b00600700612b00213200620b00607d00601600204f006", - "0x20b00605400604b00212f00620b00601b00604b00205300620b006131006", - "0x17d00204e04b04d13000c20b00605612f05305113204f00f1a1002056006", - "0x61330060a200200220b0060020090020580062eb13300620b00704e006", - "0x5100205b13400720b00613600613200213600620b00600213100200220b", - "0x620b00613500612f00213500620b00605b00605300200220b006134006", - "0x601600205f00620b00613000600c00213700620b00605d00605600205d", - "0x620b00613700613300213800620b00604b00612b00206100620b00604d", - "0x620b00605800605800200220b00600200900206413806105f00c006064", - "0x612b00213b00620b00604d00601600206700620b00613000600c002139", - "0x206a06913b06700c00606a00620b00613900613300206900620b00604b", - "0x4d00200220b00605400604d00200220b00600211e00200220b006002009", - "0x213c00620b00600213400206c00620b00600213100200220b00601b006", - "0x600213500206f00620b00613c06c00705b00213c00620b00613c00604b", - "0x14100620b00607100605800207100620b00606f13f00705d00213f00620b", - "0x700612b00207500620b00612a00601600214500620b00603e00600c002", - "0x900207707607514500c00607700620b00614100613300207600620b006", - "0x604d00200220b00603a00603300200220b00600211e00200220b006002", - "0x214b00620b00600700612b00200220b00601b00604d00200220b006054", - "0x20b00600213100200220b00614600603300214607900720b00614b006137", - "0x705b00214a00620b00614a00604b00214a00620b00600205f00207b006", - "0x20b00607f0c700705d0020c700620b00600213500207f00620b00614a07b", - "0x1600214e00620b00600c00600c00215200620b006151006058002151006", - "0x20b00615200613300208300620b00607900612b00214f00620b006016006", - "0x220b00600211e00200220b00600200900208508314f14e00c006085006", - "0x20b00601b00604d00200220b00601c00606100200220b00611b006033002", - "0x615e00604b00215e00620b00600213800215000620b006002131002002", - "0x216000620b00600213500216100620b00615e15000705b00215e00620b", - "0xc00600c00215d00620b00615f00605800215f00620b00616116000705d", - "0x16200620b00600700612b00215c00620b00601600601600216300620b006", - "0x220b00600200900208716215c16300c00608700620b00615d006133002", - "0x220b00601400606100200220b00601900603300200220b00600211e002", - "0x20b00615700604b00215700620b00600213800215400620b006002131002", - "0x5d00215b00620b00600213500208a00620b00615715400705b002157006", - "0x600c00600c00216800620b00616e00605800216e00620b00608a15b007", - "0x216b00620b00600700612b00208e00620b0060160060160020ed00620b", - "0x200220b0060020090020d016b08e0ed00c0060d000620b006168006133", - "0x216c00620b00600213100200220b00600900606100200220b00600211e", - "0x609216c00705b00209200620b00609200604b00209200620b006002134", - "0x209400620b00616d17100705d00217100620b00600213500216d00620b", - "0x601000601600209600620b00600f00600c00217300620b006094006058", - "0x609900620b0061730061330020d100620b00600700612b00217500620b", - "0x200900620b00600700601b00200220b00600211e0020990d117509600c", - "0x61a300200220b00600200900200f0062ec01600c00720b0070090060db", - "0x620b0060100061a400201400620b00600c00609900201000620b006016", - "0x1700620b00600202a00200220b0060020090020022ed00600202d002015", - "0x1b0061a400201400620b00600f00609900201b00620b0060170061a5002", - "0x1900620b00601900600f00201900620b00601400605300201500620b006", - "0x61a600200220b0060020090020c40062ee01c00620b0070150060df002", - "0x11b00620b0060021ad00205400620b0060650061b200206500620b00601c", - "0x1900600f00202d00620b00600600601600202c00620b00600200600c002", - "0x3000620b00605400604b00202f00620b00611b00604300202e00620b006", - "0x20b00702b00601400202b02a02900920b00603002f02e02d02c0161ae002", - "0x3503900720b00603300601500200220b0060020090020480062ef033006", - "0x600c00203700620b00611e0060e500211e00620b0060350390071b4002", - "0x620b0060370060e700210d00620b00602a00601600212000620b006029", - "0x3c00620b0060480061b800200220b00600200900203a10d12000900603a", - "0x3c0060e700207d00620b00602a00601600212400620b00602900600c002", - "0x60c400603300200220b00600200900203e07d12400900603e00620b006", - "0x71b400212c00620b00612a0061ba00212a00620b00600202a00200220b", - "0x20b00600200600c00204100620b00612b0060e500212b00620b00612c019", - "0x900604500620b0060410060e700212d00620b006006006016002043006", - "0x201700620b00600900612b00201500620b00600700601600204512d043", - "0x62f001b00620b0070140060ea00201401000f00920b0060170150071bd", - "0x601c0061bf00201c00620b00601b0060ec00200220b006002009002019", - "0x200220b00606500604d00205406500720b0060c40061300020c400620b", - "0x602900604d00202a02900720b00611b00613000211b00620b0060020ef", - "0x1c100202c00620b00602a0061b200202b00620b0060540061b200200220b", - "0x702d0061c500202d00620b00602d00604b00202d00620b00602c02b007", - "0x2e00202f00620b00600202a00200220b00600200900202e0062f100220b", - "0x22f200600202d00203300620b00603000602c00203000620b00602f006", - "0x4800620b00600202a00200220b00602e0060f200200220b006002009002", - "0x3300602f00203300620b00603900602c00203900620b00604800602b002", - "0x11e00620b00703500603000203500620b00603500602c00203500620b006", - "0x611e00603300200220b00600211e00200220b0060020090020370062f3", - "0xf400212400620b00601000612b00203c00620b00600f00601600200220b", - "0x3e0062f407d00620b00703a0061c800203a10d12000920b00612403c007", - "0x20b00612a0061d400212a00620b00607d0061ca00200220b006002009002", - "0x1d600200220b00612b00613600204112b00720b0060160060f800212c006", - "0x4d13013104712e04512d01020b00612c0061eb00204300620b006041006", - "0x20b00612e0061ef00200220b0060450060fa00200220b00612d00604d002", - "0x20b00600202a00200220b00604d00604d00200220b00613000604d002002", - "0x12c00205600620b00600200600c00204e00620b00604b00602b00204b006", - "0x20b00610d00612b00205800620b00612000601600213300620b006006006", - "0x4b00205b00620b0060430060fc00213400620b00600c006041002136006", - "0x20b00604e00602c00205d00620b00604700600f00213500620b006131006", - "0x5113204f01620b00613705d13505b1341360581330560150fe002137006", - "0x200220b0060020090020610062f505f00620b00712f00617d00212f053", - "0x20b00600210000200220b00606400603300206413800720b00605f0061f6", - "0x213b00620b0060670061f900206700620b0061391380071f8002139006", - "0x605100601600206a00620b00613200612c00206900620b00604f00600c", - "0x606f00620b00613b0062f600213c00620b00605300612b00206c00620b", - "0x13f00620b00606100610300200220b00600200900206f13c06c06a069016", - "0x5100601600214100620b00613200612c00207100620b00604f00600c002", - "0x7600620b00613f0062f600207500620b00605300612b00214500620b006", - "0x220b00601600613600200220b006002009002076075145141071016006", - "0x600200600c00207700620b00603e00610300200220b00600c006047002", - "0x214b00620b00612000601600214600620b00600600612c00207900620b", - "0x14b14607901600614a00620b0060770062f600207b00620b00610d00612b", - "0x20b00603700603300200220b00600211e00200220b00600200900214a07b", - "0x20b00600213100200220b00601600613600200220b00600c006047002002", - "0x705b0020c700620b0060c700604b0020c700620b0060021fb00207f006", - "0x20b00615115200705d00215200620b00600213500215100620b0060c707f", - "0x12c00208300620b00600200600c00214f00620b00614e00610300214e006", - "0x20b00601000612b00215000620b00600f00601600208500620b006006006", - "0x200900216115e15008508301600616100620b00614f0062f600215e006", - "0x1600613600200220b00600c00604700200220b00600211e00200220b006", - "0x215f00620b00600200600c00216000620b00601900610300200220b006", - "0x601000612b00216300620b00600f00601600215d00620b00600600612c", - "0x1b200216215c16315d15f01600616200620b0061600062f600215c00620b", - "0x20b00600202a00200900620b00600700600705b00200700620b006002006", - "0x700600f00620b00600c0061ff00201600620b00600900604e00200c006", - "0x61ff00200700620b00600200612b00200600620b00600202a00200f016", - "0x600207500200f00620b00600220600200900700700600900620b006006", - "0x612b00201900620b00600600601600200220b00600213900201400620b", - "0x1b0060ea00201b01701500920b00601c0190071bd00201c00620b006007", - "0x620b0060c40060ec00200220b0060020090020650062f70c400620b007", - "0x4d00202a02900720b00611b00613000211b00620b0060540061bf002054", - "0x2c00720b00602b00613000202b00620b0060020ef00200220b006029006", - "0x2d0061b200202e00620b00602a0061b200200220b00602c00604d00202d", - "0x620b00603000604b00203000620b00602f02e0071c100202f00620b006", - "0x202a00200220b0060020090020330062f800220b0070300061c5002030", - "0x3500620b00603900602c00203900620b00604800602e00204800620b006", - "0x200220b0060330060f200200220b0060020090020022f900600202d002", - "0x20b00603700602c00203700620b00611e00602b00211e00620b00600202a", - "0x3000212000620b00612000602c00212000620b00603500602f002035006", - "0x610d00603300200220b00600200900203a0062fa10d00620b007120006", - "0xf400212a00620b00601700612b00203e00620b00601500601600200220b", - "0x12b0062fb12c00620b00707d0061c800207d12403c00920b00612a03e007", - "0x20b0060410061d400204100620b00612c0061ca00200220b006002009002", - "0x450060fa00213013101004712e04512d01020b0060430061eb002043006", - "0x604d00200220b00604700606100200220b00612e0061ef00200220b006", - "0x4b04d00720b00612d00613000200220b00613000604d00200220b006131", - "0x4f00604d00213204f00720b00604e00613000204e00620b006002000002", - "0x12f05300720b00605100613000205100620b00604b0061b200200220b006", - "0x605600613000205600620b0061320061b200200220b00605300604d002", - "0x213600620b00612f0061b200200220b00613300604d00205813300720b", - "0x1341360071c100213600620b00613600604b00213400620b0060580061b2", - "0x1000620b00601000604b00205b00620b00605b00604b00205b00620b006", - "0x61c500201000620b00601001400707900204d00620b00604d00604b002", - "0x5d00620b00600202a00200220b0060020090021350062fc00220b00705b", - "0x600202d00205f00620b00613700602c00213700620b00605d00602e002", - "0x20b00600202a00200220b0061350060f200200220b0060020090020022fd", - "0x2f00205f00620b00613800602c00213800620b00606100602b002061006", - "0x20b00706400603000206400620b00606400602c00206400620b00605f006", - "0x4d00200220b00613900603300200220b0060020090020670062fe139006", - "0x603300200220b0060020090020022ff00600202d00200220b00604d006", - "0x220b00613b00604d00206913b00720b00604d00613000200220b006067", - "0x6c00604d00213c06c00720b00606a00613000206a00620b006002300002", - "0x213f00620b00613c0061b200206f00620b0060690061b200200220b006", - "0x710061c500207100620b00607100604b00207100620b00613f06f0071c1", - "0x214500620b00600202a00200220b00600200900214100630100220b007", - "0x30200600202d00207600620b00607500602c00207500620b00614500602e", - "0x620b00600202a00200220b0061410060f200200220b006002009002002", - "0x602f00207600620b00607900602c00207900620b00607700602b002077", - "0x620b00714600603000214600620b00614600602c00214600620b006076", - "0x211e00200220b00614b00603300200220b00600200900207b00630314b", - "0x200220b00614a00613600207f14a00720b00600c0060f800200220b006", - "0x603c00601600208300620b00600200600c0020c700620b00607f0061d6", - "0x215e00620b0060c70060fc00215000620b00612400612b00208500620b", - "0x620b00714f00630500214f14e15215100c20b00615e15008508300c304", - "0x30800201600620b00616100630700200220b006002009002160006306161", - "0x15d00630900215d15f00720b00601600606c00201600620b00601600f007", - "0x620b00615100600c00215c00620b00616301000730a00216300620b006", - "0x604100216e00620b00614e00612b00215b00620b00615200601600208a", - "0x16816e15b08a01630c0020ed00620b00615c00630b00216800620b006009", - "0x216b00630d08e00620b00715700617d00215715408716200c20b0060ed", - "0x20b00616c00603300216c0d000720b00608e0061f600200220b006002009", - "0xc00216d00620b00609200630f00209200620b00615f0d000730e002002", - "0x20b00615400612b00209400620b00608700601600217100620b006162006", - "0x600200900209617309417100c00609600620b00616d006310002173006", - "0x600c00217500620b00616b00631100200220b00615f00613c00200220b", - "0x620b00615400612b00209900620b0060870060160020d100620b006162", - "0x20b00600200900209b1760990d100c00609b00620b006175006310002176", - "0x600f00631200200220b00600900604700200220b00601000604d002002", - "0x1600209d00620b00615100600c00217a00620b00616000631100200220b", - "0x20b00617a0063100020cc00620b00614e00612b00217c00620b006152006", - "0x220b00600211e00200220b0060020090020a00cc17c09d00c0060a0006", - "0x20b00600f00631200200220b00601000604d00200220b00607b006033002", - "0x20b00600213100200220b00600c00613600200220b006009006047002002", - "0x705b0020a200620b0060a200604b0020a200620b00600231300217d006", - "0x20b00617e0a400705d0020a400620b00600213500217e00620b0060a217d", - "0x160020d200620b00600200600c0020cd00620b00617f00631100217f006", - "0x20b0060cd00631000218000620b00612400612b0020a800620b00603c006", - "0x220b00600211e00200220b0060020090020ce1800a80d200c0060ce006", - "0x20b00600900604700200220b00600f00631200200220b00600c006136002", - "0x200600c0020ab00620b00612b00631100200220b00601400614e002002", - "0xc800620b00612400612b0020cf00620b00603c00601600218100620b006", - "0x220b0060020090020c90c80cf18100c0060c900620b0060ab006310002", - "0x220b00600c00613600200220b00603a00603300200220b00600211e002", - "0x20b00601400614e00200220b00600900604700200220b00600f006312002", - "0x60cb00604b0020cb00620b0060021fb0020ca00620b006002131002002", - "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", - "0x200600c00218e00620b0060b50063110020b500620b0060c60b300705d", - "0xba00620b00601700612b0020b900620b0060150060160020b700620b006", - "0x220b0060020090020bb0ba0b90b700c0060bb00620b00618e006310002", - "0x220b00600f00631200200220b00600c00613600200220b00600211e002", - "0x20b00606500631100200220b00601400614e00200220b006009006047002", - "0x12b0020be00620b00601500601600218f00620b00600200600c0020bd006", - "0xc10bf0be18f00c0060c100620b0060bd0063100020bf00620b006017006", - "0x601600631500201600700720b00600700631400200220b00600211e002", - "0x200220b00600f0060c400201000f00720b00600c00601c00200c00620b", - "0x1b0170070bf00201b00620b00600900604e00201700620b00601000611b", - "0x1900620b00600700630900200220b00601500603300201501400720b006", - "0x1900631600211b00620b00600600601600205400620b00600200600c002", - "0x602a02911b05400c31700202a00620b00601400604e00202900620b006", - "0x600200900202c00631802b00620b0070650060710020650c401c00920b", - "0x2a00200220b00602e00603300202e02d00720b00602b00614100200220b", - "0x20b00603000631a00203000620b00602f02d00731900202f00620b006002", - "0x31b00203900620b0060c400601600204800620b00601c00600c002033006", - "0x631c00200220b00600200900203503904800900603500620b006033006", - "0x620b0060c400601600203700620b00601c00600c00211e00620b00602c", - "0x20b00600200601b00210d12003700900610d00620b00611e00631b002120", - "0x220b00600200900200c00631d00900700720b0070060060db002006006", - "0x160061a400200f00620b00600700609900201600620b0060090061a3002", - "0x600202a00200220b00600200900200231e00600202d00201000620b006", - "0x200f00620b00600c00609900201500620b0060140061a500201400620b", - "0x601700600f00201700620b00600f00605300201000620b0060150061a4", - "0x220b00600200900201900631f01b00620b0070100060df00201700620b", - "0xc40063200020c400620b00601c0061b200201c00620b00601b0061a6002", - "0x11b00620b00606500632100205400620b00601700600f00206500620b006", - "0x202a00200220b00601900603300200220b00600200900211b054007006", - "0x2b00620b00601700600f00202a00620b00602900632200202900620b006", - "0x1b00200220b00600211e00202c02b00700602c00620b00602a006321002", - "0x900200f00632301600c00720b0070090060db00200900620b006007006", - "0x1400620b00600c00609900201000620b0060160061a300200220b006002", - "0x220b00600200900200232400600202d00201500620b0060100061a4002", - "0x600f00609900201b00620b0060170061a500201700620b00600202a002", - "0x201900620b00601400605300201500620b00601b0061a400201400620b", - "0x90020c400632501c00620b0070150060df00201900620b00601900600f", - "0x5400620b0060650061b200206500620b00601c0061a600200220b006002", - "0x600600601600202c00620b00600200600c00211b00620b006002131002", - "0x202f00620b00611b00604e00202e00620b00601900600f00202d00620b", - "0x2a02900920b00603002f02e02d02c01632600203000620b00605400604b", - "0x7b00200220b00600200900204800632703300620b00702b00614b00202b", - "0x11e00632900211e00620b00603503900732800203503900720b006033006", - "0x10d00620b00602a00601600212000620b00602900600c00203700620b006", - "0x200220b00600200900203a10d12000900603a00620b00603700632a002", - "0x602a00601600212400620b00602900600c00203c00620b00604800632b", - "0x600200900203e07d12400900603e00620b00603c00632a00207d00620b", - "0x12a00632c00212a00620b00600202a00200220b0060c400603300200220b", - "0x620b00612b00632900212b00620b00612c01900732800212c00620b006", - "0x632a00212d00620b00600600601600204300620b00600200600c002041", - "0x201401000720b00600f00613200204512d04300900604500620b006041", - "0x20b00600200600c00201500620b00601400605300200220b006010006051", - "0x12b00211b00620b00600700601600205400620b00600600612c002065006", - "0x20b00601600604b00202a00620b00600c00604100202900620b006009006", - "0x2c02b02a02911b05406501032d00202c00620b00601500600f00202b006", - "0x202e00632e02d00620b0070c40060ed0020c401c01901b01701620b006", - "0x620b00702f00603000202f00620b00602d00608e00200220b006002009", - "0x20ef00200220b00603000603300200220b00600200900203300632f030", - "0x900200233000600202d00203900620b00604800604b00204800620b006", - "0x4b00203500620b00600210000200220b00603300603300200220b006002", - "0x20b00611e00633200211e00620b00603900633100203900620b006035006", - "0x1600210d00620b00601b00612c00212000620b00601700600c002037006", - "0x20b00603700621200203c00620b00601c00612b00203a00620b006019006", - "0x602e00633300200220b00600200900212403c03a10d120016006124006", - "0x212a00620b00601b00612c00203e00620b00601700600c00207d00620b", - "0x607d00621200212b00620b00601c00612b00212c00620b006019006016", - "0x233400200c00620b00600233400204112b12c12a03e01600604100620b", - "0x13900201700620b00600233500201400620b00600207500200f00620b006", - "0xf0020c400620b00600200600c00200220b00600211e00200220b006002", - "0x633700201c01901b00920b0060650c400733600206500620b006007006", - "0x20b00601900600f00200220b00600200900205400633801500620b00701c", - "0x1500620b00601501700733900202911b00720b00602a00607600202a006", - "0x600c00200220b00600200900202b00633a01000620b007029006077002", - "0x20b00603002f00721100203000620b00611b00600f00202f00620b00601b", - "0x620b00702e00633b00201000620b00601001400707900202e02d02c009", - "0xf00211e00620b00602c00600c00200220b00600200900203300633c016", - "0x733d00203503904800920b00603711e00721100203700620b00602d006", - "0x200900212000633e00900620b00703500633b00201600620b00601600f", - "0x207d00620b00600600601600212400620b00604800600c00200220b006", - "0x12400933f00200900620b00600900c00733d00203e00620b00603900600f", - "0x212c00634112a00620b00703c00634000203c03a10d00920b00603e07d", - "0x20b00704100634300204112b00720b00612a00634200200220b006002009", - "0x604300901601001501621000200220b00600200900212d006344043006", - "0x4700620b00612e12b00734600212e00620b00604500634500204500620b", - "0x3a00601600213000620b00610d00600c00213100620b006047006347002", - "0x200900204b04d13000900604b00620b00613100634800204d00620b006", - "0x634900200220b00600900634900200220b0060150060fa00200220b006", - "0x204e00620b00612d00634a00200220b00601000604d00200220b006016", - "0x10d00600c00213200620b00604f00634700204f00620b00604e12b007346", - "0x12f00620b00613200634800205300620b00603a00601600205100620b006", - "0xfa00200220b00601000604d00200220b00600200900212f053051009006", - "0x200220b00601600634900200220b00600900634900200220b006015006", - "0x603a00601600213300620b00610d00600c00205600620b00612c00634b", - "0x600200900213605813300900613600620b00605600634800205800620b", - "0x150060fa00200220b00601000604d00200220b00601600634900200220b", - "0x34600213400620b00612000634a00200220b00600c00634c00200220b006", - "0x604800600c00213500620b00605b00634700205b00620b006134039007", - "0x605f00620b00613500634800213700620b00600600601600205d00620b", - "0x60fa00200220b00601000604d00200220b00600200900205f13705d009", - "0x34a00200220b00600f00634c00200220b00600c00634c00200220b006015", - "0x613800634700213800620b00606102d00734600206100620b006033006", - "0x206700620b00600600601600213900620b00602c00600c00206400620b", - "0x34c00200220b00600200900213b06713900900613b00620b006064006348", - "0x200220b00600c00634c00200220b0060150060fa00200220b00600f006", - "0x606911b00734600206900620b00602b00634a00200220b00601400614e", - "0x213c00620b00601b00600c00206c00620b00606a00634700206a00620b", - "0x13f06f13c00900613f00620b00606c00634800206f00620b006006006016", - "0x220b00600c00634c00200220b00600f00634c00200220b006002009002", - "0x20b00605400634a00200220b00601700634d00200220b00601400614e002", - "0x214500620b00614100634700214100620b006071019007346002071006", - "0x614500634800207600620b00600600601600207500620b00601b00600c", - "0x20b00600208300201500620b00600220600207707607500900607700620b", - "0x600234e00206500620b00600207500201c00620b00600214f00201b006", - "0x235100202c00620b00600235000202a00620b00600234f00211b00620b", - "0x20f00204800620b00600235300203000620b00600235200202e00620b006", - "0x210d00620b00600207500203700620b00600235400203500620b006002", - "0x12a00620b00600206400207d00620b00600208500203c00620b00600214f", - "0x200220b00600211e00200220b00600213900212b00620b006002075002", - "0x13104100720b00604100635600212e04512d04304101620b00600f006355", - "0x604d00204d13000720b00604700613000204700620b0061310061bf002", - "0x4f04e00720b00604b00613000204b00620b00600235700200220b006130", - "0x613200613000213200620b00604d0061b200200220b00604e00604d002", - "0x212f00620b00604f0061b200200220b00605100604d00205305100720b", - "0x60530061b200200220b00605600604d00213305600720b00612f006130", - "0x13400620b0061360580071c100213600620b0061330061b200205800620b", - "0x900205b00635800220b0071340061c500213400620b00613400604b002", - "0x205d00620b00613500602e00213500620b00600202a00200220b006002", - "0x200220b00600200900200235900600202d00213700620b00605d00602c", - "0x620b00605f00602b00205f00620b00600202a00200220b00605b0060f2", - "0x635600213800620b00613700602f00213700620b00606100602c002061", - "0x612d00635b00213904300720b00604300635a00206404100720b006041", - "0x720b00612e00635c00213b04500720b00604500635b00206712d00720b", - "0x20b00606a00608a00206a00620b00606913b06713906401621000206912e", - "0x13c00635d06c00620b00713800603000213800620b00613800602c002002", - "0x4512d04304101621000200220b00606c00603300200220b006002009002", - "0x620b00600c00612b00213f00620b00600700601600206f00620b00612e", - "0x20b00600200900200235e00600202d00214100620b00606f006163002071", - "0xc00612b00207700620b00600700601600200220b00613c006033002002", - "0x20b00600200600207607514500920b0060790770071bd00207900620b006", - "0xec00200220b00600200900214b00635f14600620b0070760060ea002002", - "0x614a0060fa00207f14a00720b00607b00636000207b00620b006146006", - "0x215200620b00607f0063610021510c700720b00604100636000200220b", - "0x14f00604d00208314f00720b00614e00613000214e00620b0061520061bf", - "0x215000620b0060850061bf00208500620b00615100636100200220b006", - "0x60830061b200200220b00615e00604d00216115e00720b006150006130", - "0x15d00620b00615f1600071c100215f00620b0061610061b200216000620b", - "0x900216300636200220b00715d0061c500215d00620b00615d00604b002", - "0x216200620b00615c00602e00215c00620b00600202a00200220b006002", - "0x200220b00600200900200236300600202d00208700620b00616200602c", - "0x620b00615400602b00215400620b00600202a00200220b0061630060f2", - "0x602c00208a00620b00608700602f00208700620b00615700602c002157", - "0x600200900216e00636415b00620b00708a00603000208a00620b00608a", - "0x430c701621000200220b00615b00603300200220b00600211e00200220b", - "0x607500612b00213f00620b00614500601600216800620b00612e04512d", - "0x20d000620b00613f00601600214100620b00616800616300207100620b", - "0x600216b08e0ed00920b00616c0d000736500216c00620b00607100612b", - "0x20b00600200900216d00636709200620b00716b00636600200220b006002", - "0x9617312009401620b00614100635500217100620b006092006368002002", - "0x209917100720b00617100635b0020d117300720b00617300635b002175", - "0x36a09b17600720b0070990d100200936900212000620b00612010d007079", - "0x17100634900200220b00609b00634900200220b00600200900209d17a007", - "0xc0020cc00620b00617c00602b00217c00620b00600202a00200220b006", - "0x236b00600202d00217d00620b0060cc00602c0020a000620b006176006", - "0x720b00609600635b00200220b00609d00634900200220b006002009002", - "0x20090020cd17f00736c0a417e00720b0070a217117a0093690020a2096", - "0x602b0020d200620b00600202a00200220b0060a400634900200220b006", - "0x620b0060a800602c00218000620b00617e00600c0020a800620b0060d2", - "0x220b0060cd00634900200220b00600200900200236d00600202d0020ce", - "0x617f00600c00218100620b0060ab00602e0020ab00620b00600202a002", - "0x20a000620b00618000636e0020ce00620b00618100602c00218000620b", - "0x60cf00602c0020cf00620b00617d00602f00217d00620b0060ce00636f", - "0x220b0060020090020c90063700c800620b0070cf0060300020cf00620b", - "0x18e0b50b30c60cb0ca01420b00601600637100200220b0060c8006033002", - "0x219000620b0060a000600c0020bb0ba00720b00618e0063720020b90b7", - "0x608e00612b00219b00620b00600900615d0020c300620b0060ed006016", - "0x19d12000720b00612000635a0020d400620b0060bb00637300219c00620b", - "0x1620b00619d0d419c19b0c319000f37400219d00620b00619d00604b002", - "0x60020090020d60063751a000620b0070c10060ed0020c10bf0be18f0bd", - "0x2c0020d700620b00619f00602f00219f00620b0061a000608e00200220b", - "0x20b0060d900602c0020d900620b0060d700602f0020d700620b0060d7006", - "0x200220b0060020090020db0063761a100620b0070d90060300020d9006", - "0x12000720b00612000635a00200220b0061a100603300200220b00600211e", - "0x20b00612407d00715f00212400620b0061750961731a30940162100021a3", - "0x21ad00620b00618f0060160021a51a400720b00612400620e002124006", - "0x1c80021b21a60df00920b0061ae1ad0070f40021ae00620b0060bf00612b", - "0x61b40061ca00200220b0060020090020e50063771b400620b0071b2006", - "0x1bd1ba01020b0061b80061eb0021b800620b0060e70061d40020e700620b", - "0x200220b0061bd0060fa00200220b0061ba00604d0021c10ef1bf0ec0ea", - "0x220b0061bf00604d00200220b0060ec00606100200220b0060ea0061ef", - "0x620b0060020000021c500620b00600237800200220b0061c100604d002", - "0x37a0021c800620b0060020ef0020f400620b0060ef0f21c50093790020f2", - "0x620b0061ca00604b0021c800620b0061c800604b0021ca00620b006002", - "0x1d600720b0060f400637c0020f81d400720b0061ca1c80be00937b0021ca", - "0x20b00600237e0020fa00620b0060020ef00200220b0061d600637d0021eb", - "0x37b0021ef00620b0061ef00604b0020fa00620b0060fa00604b0021ef006", - "0x63800021eb00620b0061eb00637f0020fe0fc00720b0061ef0fa1d4009", - "0x1f800604d0021f91f810000920b0061f60063810021f61eb00720b0061eb", - "0x4b0022f600620b0061000061b200200220b0061f900604d00200220b006", - "0x63800021fb10300720b0062f60fe0fc00937b0020fe00620b0060fe006", - "0x20600604d00230000020600920b0061ff0063810021ff1eb00720b0061eb", - "0x4b00230400620b0060000061b200200220b00630000604d00200220b006", - "0x638100230730500720b0063041fb10300937b0021fb00620b0061fb006", - "0x20b00630900604d00200220b00630800604d00230a30930800920b0061eb", - "0x937b00230700620b00630700604b00230b00620b00630a0061b2002002", - "0x630e00604b00230f00620b00600238200230e30c00720b00630b307305", - "0x720b00630f30e30c00937b00230f00620b00630f00604b00230e00620b", - "0x37b00231100620b00631100604b0020f800620b0060f800604b002311310", - "0x612b00231600620b0060df00601600231331200720b0063110f8310009", - "0x31200615d00231503e31400920b00631731600738300231700620b0061a6", - "0x620b00603e12a00713b00231300620b00631300604b00231200620b006", - "0xec00200220b00600200900231a00638431900620b0073150060ea00203e", - "0x31c31331200937b00231c00620b00631b0061bf00231b00620b006319006", - "0x620b00631400601600232900620b0060bd00600c00212c32000720b006", - "0x707900232c00620b0061a500616300232b00620b00632000615d00232a", - "0x32832632232100c20b00632c32b32a32900c38500212c00620b00612c12b", - "0x615200200220b00600200900233100638632d00620b007328006151002", - "0x600238200233321200720b00633212c32600937b00233200620b00632d", - "0x233400620b00633400604b00233300620b00633300604b00233400620b", - "0x33733633501620b0061a40063550020c403a00720b00633433321200937b", - "0x33700634900200220b00633600604d00200220b0063350060fa002211339", - "0x233d33b00720b00601000613200200220b00633900634900200220b006", - "0x620b00600202a00233f00620b00633d00605300200220b00633b006051", - "0xb90b70ba0b50b30c60cb0ca01412a00234200620b00634000602e002340", - "0x34900620b00600600612c00234800620b00632100600c00234300620b006", - "0x34300604100234b00620b00603e00612b00234a00620b006322006016002", - "0x620b00634d0060fc00234d21100720b00621100635c00234c00620b006", - "0x234e0c400720b0060c400635a0020c400620b0060c406500707900234d", - "0x634200602c00234f00620b00633f00600f00234e00620b00634e00604b", - "0x34c34b34a3493480150fe00203a00620b00603a03c00708700235000620b", - "0x620b00601701b00716200234734634501721001620b00635034f34e34d", - "0x1f600200220b00600200900235200638735100620b00734700617d002017", - "0x620b00600202a00200220b00620f00603300220f35300720b006351006", - "0x2902b02d05401420b00635300637100235500620b00635400602e002354", - "0x36100620b00634500601600236000620b00621000600c00202f03335611e", - "0x35600637300236600620b00634600612b00236500620b00603a00615d002", - "0x36e00620b00635500602c00236900620b00612000604b00236800620b006", - "0x38900235c35b01935a35701620b00636e369368366365361360010388002", - "0x2c00720d00202d00620b00602d02e00738a00205400620b00605411b007", - "0x611e03700738c00202900620b00602902a00738b00202b00620b00602b", - "0x620b00602f03000738e00203300620b00603304800738d00211e00620b", - "0x639036f00620b00735c00638f00201900620b00601901c00708700202f", - "0x37200603300237203900720b00636f00639100200220b006002009002371", - "0x237a00620b00635a00601600237900620b00635700600c00200220b006", - "0x3903500739200237c00620b0062110060fc00237b00620b00635b00612b", - "0x30500237820e37437300c20b00637c37b37a37900c30400203900620b006", - "0x637d00630700200220b00600200900237e00639337d00620b007378006", - "0x37f00720b00601400606c00201400620b00601401500730800201400620b", - "0x12a00238200620b0063810c400730a00238100620b006380006309002380", - "0x620b00637300600c00238300620b00602f03303911e02902b02d054014", - "0x604100238c00620b00620e00612b00238b00620b00637400601600220d", - "0x38d38c38b20d01630c00238e00620b00638200630b00238d00620b006383", - "0x239100639438f00620b00738a00617d00238a38938838500c20b00638e", - "0x20b00639500603300239539200720b00638f0061f600200220b006002009", - "0xc00239600620b00620c00630f00220c00620b00637f39200730e002002", - "0x20b00638800601600239800620b00601700612c00239700620b006385006", - "0x31000239b00620b00638900612b00239a00620b00601900615d002399006", - "0x220b00600200900239c39b39a39939839700f00639c00620b006396006", - "0x638500600c00239d00620b00639100631100200220b00637f00613c002", - "0x23a000620b00638800601600239f00620b00601700612c00239e00620b", - "0x639d0063100023a200620b00638900612b0023a100620b00601900615d", - "0x604d00200220b0060020090023a33a23a13a039f39e00f0063a300620b", - "0x39600200220b00602f00620c00200220b00605400639500200220b0060c4", - "0x200220b00611e00639800200220b00603900639700200220b006033006", - "0x220b00602d00639b00200220b00602b00639a00200220b006029006399", - "0x637300600c0023a400620b00637e00631100200220b006015006312002", - "0x23a700620b0063740060160023a600620b00601700612c0023a500620b", - "0x63a40063100023a900620b00620e00612b0023a800620b00601900615d", - "0x604d00200220b0060020090023aa3a93a83a73a63a500f0063aa00620b", - "0x39b00200220b00602b00639a00200220b00605400639500200220b0060c4", - "0x200220b00602f00620c00200220b00601500631200200220b00602d006", - "0x220b00602900639900200220b00611e00639800200220b006033006396", - "0x20b00637100631100200220b00603500639d00200220b00621100639c002", - "0x160023ad00620b00601700612c0023ac00620b00635700600c0023ab006", - "0x20b00635b00612b0023af00620b00601900615d0023ae00620b00635a006", - "0x90023b13b03af3ae3ad3ac00f0063b100620b0063ab0063100023b0006", - "0x31200200220b00603500639d00200220b0060c400604d00200220b006002", - "0x200220b00603000639e00200220b00601c00615700200220b006015006", - "0x220b00611b00639f00200220b00612000604d00200220b00621100639c", - "0x20b00602a0063a200200220b00602c0063a100200220b00602e0063a0002", - "0x635200631100200220b0060480063a400200220b0060370063a3002002", - "0x23b400620b00601700612c0023b300620b00621000600c0023b200620b", - "0x634600612b0023b600620b00603a00615d0023b500620b006345006016", - "0x23b83b73b63b53b43b300f0063b800620b0063b20063100023b700620b", - "0x200220b0060480063a400200220b0060c600639a00200220b006002009", - "0x220b0061a400608a00200220b00602c0063a100200220b00603500639d", - "0x20b00601c00615700200220b00601500631200200220b0060370063a3002", - "0x612000604d00200220b00601000605100200220b00603000639e002002", - "0x2e0063a000200220b00611b00639f00200220b00602a0063a200200220b", - "0x639b00200220b0060ca00639500200220b00601b00615400200220b006", - "0x39700200220b0060b700639600200220b0060b900620c00200220b0060cb", - "0x200220b0060b300639900200220b0060b500639800200220b0060ba006", - "0x220b00612c00604d00200220b00606500614e00200220b00603c006157", - "0x600612c0023ba00620b00632100600c0023b900620b006331006311002", - "0x3bd00620b00632600615d0023bc00620b0063220060160023bb00620b006", - "0x3bb3ba00f0063bf00620b0063b90063100023be00620b00603e00612b002", - "0x63a400200220b0060c600639a00200220b0060020090023bf3be3bd3bc", - "0x8a00200220b00602c0063a100200220b00603500639d00200220b006048", - "0x200220b00601500631200200220b0060370063a300200220b0061a4006", - "0x220b00601000605100200220b00603000639e00200220b00601c006157", - "0x20b00611b00639f00200220b00602a0063a200200220b00612000604d002", - "0x60ca00639500200220b00601b00615400200220b00602e0063a0002002", - "0xb900620c00200220b00606500614e00200220b0060cb00639b00200220b", - "0x639800200220b0060ba00639700200220b0060b700639600200220b006", - "0x8a00200220b00603c00615700200220b0060b300639900200220b0060b5", - "0x200220b00631300604d00200220b00612b00614e00200220b0061a5006", - "0x600600612c0023c100620b0060bd00600c0023c000620b00631a006311", - "0x23c400620b00631200615d0023c300620b0063140060160023c200620b", - "0x3c33c23c100f0063c600620b0063c00063100023c500620b00603e00612b", - "0x480063a400200220b0060c600639a00200220b0060020090023c63c53c4", - "0x608a00200220b00602c0063a100200220b00603500639d00200220b006", - "0x15700200220b00601500631200200220b0060370063a300200220b0061a4", - "0x200220b00601000605100200220b00603000639e00200220b00601c006", - "0x220b00611b00639f00200220b00602a0063a200200220b00612000604d", - "0x20b0060ca00639500200220b00601b00615400200220b00602e0063a0002", - "0x60b900620c00200220b00606500614e00200220b0060cb00639b002002", - "0xb500639800200220b0060ba00639700200220b0060b700639600200220b", - "0x608a00200220b00603c00615700200220b0060b300639900200220b006", - "0x31100200220b00612a00614500200220b00612b00614e00200220b0061a5", - "0x20b00600600612c0023c800620b0060bd00600c0023c700620b0060e5006", - "0x12b00221700620b0060be00615d0023ca00620b0060df0060160023c9006", - "0x2173ca3c93c800f0063cc00620b0063c70063100023cb00620b0061a6006", - "0x20b0060db00603300200220b00600211e00200220b0060020090023cc3cb", - "0x603500639d00200220b0060480063a400200220b0060c600639a002002", - "0x1500631200200220b0060370063a300200220b00602c0063a100200220b", - "0x605100200220b00603000639e00200220b00601c00615700200220b006", - "0x39f00200220b00602a0063a200200220b00612000604d00200220b006010", - "0x200220b00601b00615400200220b00602e0063a000200220b00611b006", - "0x220b00606500614e00200220b0060cb00639b00200220b0060ca006395", - "0x20b0060b700639600200220b0060b900620c00200220b00612a006145002", - "0x60b300639900200220b0060b500639800200220b0060ba006397002002", - "0x7d00615b00200220b00612b00614e00200220b00603c00615700200220b", - "0x634900200220b00609600634900200220b00617500639c00200220b006", - "0x3a50023cd00620b00600213100200220b0060940060fa00200220b006173", - "0x20b0062183cd00705b00221800620b00621800604b00221800620b006002", - "0x3110023d000620b0063ce3cf00705d0023cf00620b0060021350023ce006", - "0x20b00600600612c0023d200620b0060bd00600c0023d100620b0063d0006", - "0x12b0023d500620b0060be00615d0023d400620b00618f0060160023d3006", - "0x3d53d43d33d200f0063d700620b0063d10063100023d600620b0060bf006", - "0x20b0060c600639a00200220b00600211e00200220b0060020090023d73d6", - "0x602c0063a100200220b00603500639d00200220b0060480063a4002002", - "0x1c00615700200220b00601500631200200220b0060370063a300200220b", - "0x604d00200220b00601000605100200220b00603000639e00200220b006", - "0x3a000200220b00611b00639f00200220b00602a0063a200200220b006120", - "0x200220b0060ca00639500200220b00601b00615400200220b00602e006", - "0x220b00612a00614500200220b00606500614e00200220b0060cb00639b", - "0x20b0060ba00639700200220b0060b700639600200220b0060b900620c002", - "0x603c00615700200220b0060b300639900200220b0060b5006398002002", - "0x17500639c00200220b00607d00615b00200220b00612b00614e00200220b", - "0x60fa00200220b00617300634900200220b00609600634900200220b006", - "0x3d900620b0060bd00600c0023d800620b0060d600631100200220b006094", - "0xbe00615d0023db00620b00618f0060160023da00620b00600600612c002", - "0x3de00620b0063d80063100023dd00620b0060bf00612b0023dc00620b006", - "0x220b00600211e00200220b0060020090023de3dd3dc3db3da3d900f006", - "0x20b00603500639d00200220b0060480063a400200220b0060c9006033002", - "0x60370063a300200220b0060940060fa00200220b00602c0063a1002002", - "0x3000639e00200220b00601c00615700200220b00601500631200200220b", - "0x63a200200220b00612000604d00200220b00601000605100200220b006", - "0x15400200220b00602e0063a000200220b00611b00639f00200220b00602a", - "0x200220b00606500614e00200220b00612b00614e00200220b00601b006", - "0x220b00609600634900200220b00612a00614500200220b006173006349", - "0x20b00603c00615700200220b00607d00615b00200220b00617500639c002", - "0x20b0060023a60023df00620b00600213100200220b006016006047002002", - "0x23e100620b0063e03df00705b0023e000620b0063e000604b0023e0006", - "0x63e30063110023e300620b0063e13e200705d0023e200620b006002135", - "0x23e600620b00600600612c0023e500620b0060a000600c0023e400620b", - "0x608e00612b0023e800620b00600900615d0023e700620b0060ed006016", - "0x23ea3e93e83e73e63e500f0063ea00620b0063e40063100023e900620b", - "0x39d00200220b0060480063a400200220b00600211e00200220b006002009", - "0x200220b0060370063a300200220b00602c0063a100200220b006035006", - "0x220b00603000639e00200220b00601c00615700200220b006015006312", - "0x20b00602a0063a200200220b00614100608a00200220b006010006051002", - "0x601b00615400200220b00602e0063a000200220b00611b00639f002002", - "0x3c00615700200220b00606500614e00200220b00612b00614e00200220b", - "0x604700200220b00607d00615b00200220b00612a00614500200220b006", - "0x23eb00620b00616d00631100200220b00610d00614e00200220b006016", - "0x60ed0060160023ed00620b00600600612c0023ec00620b00600200600c", - "0x23f000620b00608e00612b0023ef00620b00600900615d0023ee00620b", - "0x20b0060020090023f13f03ef3ee3ed3ec00f0063f100620b0063eb006310", - "0x20b00610d00614e00200220b00616e00603300200220b00600211e002002", - "0x602c0063a100200220b00603500639d00200220b0060480063a4002002", - "0x1c00615700200220b00601500631200200220b0060370063a300200220b", - "0x63a200200220b00601000605100200220b00603000639e00200220b006", - "0x15400200220b00602e0063a000200220b00611b00639f00200220b00602a", - "0x200220b00606500614e00200220b00612b00614e00200220b00601b006", - "0x220b00601600604700200220b00612a00614500200220b00603c006157", - "0x20b00604500634900200220b00612e00639c00200220b00607d00615b002", - "0x60c70060fa00200220b00604300604d00200220b00612d006349002002", - "0x3f300604b0023f300620b0060023a70023f200620b00600213100200220b", - "0x3f500620b0060021350023f400620b0063f33f200705b0023f300620b006", - "0x600c0023f700620b0063f60063110023f600620b0063f43f500705d002", - "0x620b0061450060160023f900620b00600600612c0023f800620b006002", - "0x63100023fc00620b00607500612b0023fb00620b00600900615d0023fa", - "0x200220b0060020090023fd3fc3fb3fa3f93f800f0063fd00620b0063f7", - "0x200220b0060480063a400200220b00610d00614e00200220b00600211e", - "0x220b0060370063a300200220b00602c0063a100200220b00603500639d", - "0x20b00603000639e00200220b00601c00615700200220b006015006312002", - "0x611b00639f00200220b00602a0063a200200220b006010006051002002", - "0x12b00614e00200220b00601b00615400200220b00602e0063a000200220b", - "0x614500200220b00603c00615700200220b00606500614e00200220b006", - "0x39c00200220b00607d00615b00200220b00601600604700200220b00612a", - "0x200220b00612d00634900200220b00604500634900200220b00612e006", - "0x620b00614b00631100200220b0060410060fa00200220b00604300604d", - "0x60160023ff00620b00600600612c00221b00620b00600200600c0023fe", - "0x620b00607500612b00240100620b00600900615d00240000620b006145", - "0x20750024034024014003ff21b00f00640300620b0063fe006310002402", - "0x211e00200220b00600213900201500620b00600206400201000620b006", - "0x201b01700720b00601600620e00200220b00600c00604700200220b006", - "0x20b00600900612b00206500620b00600600601600200220b00601700608a", - "0x620b0070c40061c80020c401c01900920b0060540650070f4002054006", - "0x1d400202a00620b00611b0061ca00200220b00600200900202900640411b", - "0x4803303002f02e02d02c01020b00602b0061eb00202b00620b00602a006", - "0x20b00602e0061ef00200220b00602d0060fa00200220b00602c00604d002", - "0x604800604d00200220b00603000604d00200220b00602f006061002002", - "0x3900937900203500620b00600200000203900620b00600237800200220b", - "0x12000620b00600237a00203700620b0060020ef00211e00620b006033035", - "0x700937b00212000620b00612000604b00203700620b00603700604b002", - "0x3c00637d00212403c00720b00611e00637c00203a10d00720b006120037", - "0x604b00203e00620b00600237e00207d00620b0060020ef00200220b006", - "0x603e07d10d00937b00203e00620b00603e00604b00207d00620b00607d", - "0x12400720b00612400638000212400620b00612400637f00212c12a00720b", - "0x4d00200220b00604300604d00212d04304100920b00612b00638100212b", - "0x620b00612c00604b00204500620b0060410061b200200220b00612d006", - "0x12400720b00612400638000204712e00720b00604512c12a00937b00212c", - "0x4d00200220b00613000604d00204b04d13000920b006131006381002131", - "0x620b00604700604b00204e00620b00604d0061b200200220b00604b006", - "0x5100920b00612400638100213204f00720b00604e04712e00937b002047", - "0x12f0061b200200220b00605300604d00200220b00605100604d00212f053", - "0x20b00605613204f00937b00213200620b00613200604b00205600620b006", - "0x4b00205800620b00605800604b00213600620b006002382002058133007", - "0x604b00205b13400720b00613605813300937b00213600620b006136006", - "0x605b03a13400937b00205b00620b00605b00604b00203a00620b00603a", - "0x13800620b00601c00612b00206100620b00601900601600205d13500720b", - "0x213500620b00613500615d00205f01413700920b006138061007383002", - "0x5f0060ea00201400620b00601401500713b00205d00620b00605d00604b", - "0x620b0060640060ec00200220b00600200900213900640506400620b007", - "0xf06900720b00613b05d13500937b00213b00620b0060670061bf002067", - "0x6900615d00207100620b00613700601600213f00620b00600200600c002", - "0x620b00600f01000707900214500620b00601b00616300214100620b006", - "0x706f00615100206f13c06c06a00c20b00614514107113f00c38500200f", - "0x7700620b00607500615200200220b00600200900207600640607500620b", - "0x4b00214b00620b00600238200214607900720b00607700f13c00937b002", - "0x14b14607900937b00214b00620b00614b00604b00214600620b006146006", - "0x620b00607f00633200207f00620b00614a00633100214a07b00720b006", - "0x615d00215200620b00606c00601600215100620b00606a00600c0020c7", - "0x620b0060c700621200214f00620b00601400612b00214e00620b00607b", - "0x20b00600f00604d00200220b00600200900208314f14e152151016006083", - "0x601600215000620b00606a00600c00208500620b006076006333002002", - "0x620b00601400612b00216100620b00613c00615d00215e00620b00606c", - "0x600200900215f16016115e15001600615f00620b006085006212002160", - "0x5d00604d00200220b00601000614e00200220b00601b00608a00200220b", - "0x216300620b00600200600c00215d00620b00613900633300200220b006", - "0x601400612b00216200620b00613500615d00215c00620b006137006016", - "0x900215408716215c16301600615400620b00615d00621200208700620b", - "0x14500200220b00601000614e00200220b00601b00608a00200220b006002", - "0x620b00600200600c00215700620b00602900633300200220b006015006", - "0x612b00216e00620b00600700615d00215b00620b00601900601600208a", - "0xed16816e15b08a0160060ed00620b00615700621200216800620b00601c", - "0x600f00639500201c01901b01701501401000f01420b00600c006371002", - "0x1500639900200220b00601400639a00200220b00601000639b00200220b", - "0x620c00200220b00601900639600200220b00601700639800200220b006", - "0x2b00620b00600600601600202a00620b00600200600c00200220b00601c", - "0x1b00637300202d00620b00600900612b00202c00620b00600700615d002", - "0x2e02d02c02b02a00f37400202f00620b00601600604b00202e00620b006", - "0x3300640703000620b0070290060ed00202911b0540650c401620b00602f", - "0x20b00604800602f00204800620b00603000608e00200220b006002009002", - "0xc00211e00620b0060350063a900203500620b0060390063a8002039006", - "0x20b00605400615d00212000620b00606500601600203700620b0060c4006", - "0x1600603c00620b00611e0063aa00203a00620b00611b00612b00210d006", - "0x212400620b0060330063ab00200220b00600200900203c03a10d120037", - "0x605400615d00203e00620b00606500601600207d00620b0060c400600c", - "0x612b00620b0061240063aa00212c00620b00611b00612b00212a00620b", - "0x20b00700700603000200700620b00600200636f00212b12c12a03e07d016", - "0xef00200220b00600900603300200220b00600200900200c006408009006", - "0x200240900600202d00200f00620b00601600604b00201600620b006002", - "0x201000620b00600200000200220b00600c00603300200220b006002009", - "0x1400604d00201501400720b00600f00613000200f00620b00601000604b", - "0x201c00620b00600600604e00201900620b0060150061b200200220b006", - "0x600202a00200220b00601b00603300201b01700720b00601c01900704f", - "0x605400620b0060c40061ff00206500620b00601700604e0020c400620b", - "0x900700720b00600c00607600200c00620b00600600600f002054065007", - "0x73ac00200220b00600200900200f00640a01600620b007009006077002", - "0x140063ad00200220b00600200900201500640b01401000720b007016002", - "0x1900620b00600700600f00201b00620b00601000600c00201700620b006", - "0x200220b00600200900201c01901b00900601c00620b0060170063ae002", - "0x20b00601500600c00206500620b0060c40063af0020c400620b00600202a", - "0x900602900620b0060650063ae00211b00620b00600700600f002054006", - "0x600c00202a00620b00600f0063af00200220b00600200900202911b054", - "0x620b00602a0063ae00202c00620b00600700600f00202b00620b006002", - "0x200220b00600213900201000620b0060023b000202d02c02b00900602d", - "0x620b00600700612b00201b00620b00600600601600200220b00600211e", - "0x1c00620b0070170060ea00201701501400920b00601901b007383002019", - "0x636000206500620b00601c0060ec00200220b0060020090020c400640c", - "0x620b00601400601600200220b0060540060fa00211b05400720b006065", - "0x2b02a02900920b00602d02c0071bd00202d00620b00601500612b00202c", - "0x200900202f00640d02e00620b00702b0060ea00200220b006002006002", - "0x4803300720b00603000636000203000620b00602e0060ec00200220b006", - "0x60390061bf00203900620b00611b00636100200220b0060330060fa002", - "0x200220b00611e00604d00203711e00720b00603500613000203500620b", - "0x610d00613000210d00620b0061200061bf00212000620b006048006361", - "0x212400620b0060370061b200200220b00603a00604d00203c03a00720b", - "0x3e00604b00203e00620b00607d1240071c100207d00620b00603c0061b2", - "0x220b00600200900212a00640e00220b00703e0061c500203e00620b006", - "0x612b00602c00212b00620b00612c00602e00212c00620b00600202a002", - "0x612a0060f200200220b00600200900200240f00600202d00204100620b", - "0x602c00212d00620b00604300602b00204300620b00600202a00200220b", - "0x620b00604500602c00204500620b00604100602f00204100620b00612d", - "0x11e00200220b00600200900204700641012e00620b007045006030002045", - "0x13100c00720b00600c0063b100200220b00612e00603300200220b006002", - "0x602900601600204d00620b0060023b300213000620b0061310063b2002", - "0x205300620b0061300063b400205100620b00602a00612b00213200620b", - "0x4f04e04b00920b00612f05305113200c3b500212f00620b00604d00604b", - "0x608e00200220b00600200900213300641105600620b00704f0060ed002", - "0x620b00613600602c00213600620b00605800602f00205800620b006056", - "0x3300200220b00600200900205b00641213400620b007136006030002136", - "0x13504e04b0093b600213500c00720b00600c0063b100200220b006134006", - "0x600202a00200220b00600200900213806105f00941313705d00720b007", - "0x206700620b00605d00601600213900620b0060640063b700206400620b", - "0x41400600202d00206900620b0061390063b800213b00620b00613700612b", - "0x605f00601600206a00620b0061380063b900200220b006002009002002", - "0x206900620b00606a0063b800213b00620b00606100612b00206700620b", - "0x706c0063bc00206c00620b00613c0063bb00213c00620b0060690063ba", - "0x200220b00606f0063bd00200220b00600200900213f00641506f00620b", - "0x200600c00214100620b0060710063be00207100c00720b00600c0063b1", - "0x14b00620b00613b00612b00214600620b00606700601600207900620b006", - "0x790163c000214a00620b0061410063bf00207b00620b006009006041002", - "0x41607f00620b00707700617d00207707607514500c20b00614a07b14b146", - "0x603300215100f00720b00607f0061f600200220b0060020090020c7006", - "0x15000620b00614500600c00215200620b00600c0063c100200220b006151", - "0x1520063c200216100620b00607600612b00215e00620b006075006016002", - "0x620b00600f0100073c300215f00620b00601600604e00216000620b006", - "0x850063c500208508314f14e00c20b00615f16016115e1500163c400200f", - "0x620b00615d0063c600200220b00600200900216300641715d00620b007", - "0xc00208700620b0061620063c800216200620b00615c00f0073c700215c", - "0x20b00608300612b00215700620b00614f00601600215400620b00614e006", - "0x600200900215b08a15715400c00615b00620b0060870063c900208a006", - "0x600c00216e00620b0061630063ca00200220b00600f00604700200220b", - "0x620b00608300612b0020ed00620b00614f00601600216800620b00614e", - "0x20b00600200900216b08e0ed16800c00616b00620b00616e0063c900208e", - "0x601000621700200220b00601600605100200220b00600c00609b002002", - "0x1600216c00620b00614500600c0020d000620b0060c70063ca00200220b", - "0x20b0060d00063c900216d00620b00607600612b00209200620b006075006", - "0x20b00600c00609b00200220b00600200900217116d09216c00c006171006", - "0x600900604700200220b00601000621700200220b006016006051002002", - "0x1600217300620b00600200600c00209400620b00613f0063ca00200220b", - "0x20b0060940063c900217500620b00613b00612b00209600620b006067006", - "0x20b00605b00603300200220b0060020090020d117509617300c0060d1006", - "0x601000621700200220b00601600605100200220b00600c00609b002002", - "0x60023cb00209900620b00600213100200220b00600900604700200220b", - "0x9b00620b00617609900705b00217600620b00617600604b00217600620b", - "0x9d0063ca00209d00620b00609b17a00705d00217a00620b006002135002", - "0xa000620b00604b0060160020cc00620b00600200600c00217c00620b006", - "0xa00cc00c0060a200620b00617c0063c900217d00620b00604e00612b002", - "0x601600605100200220b00600c00609b00200220b0060020090020a217d", - "0x1330063ca00200220b00600900604700200220b00601000621700200220b", - "0x17f00620b00604b0060160020a400620b00600200600c00217e00620b006", - "0x17f0a400c0060d200620b00617e0063c90020cd00620b00604e00612b002", - "0x20b00604700603300200220b00600211e00200220b0060020090020d20cd", - "0x601000621700200220b00601600605100200220b00600c00609b002002", - "0x60023cc0020a800620b00600213100200220b00600900604700200220b", - "0xce00620b0061800a800705b00218000620b00618000604b00218000620b", - "0x1810063ca00218100620b0060ce0ab00705d0020ab00620b006002135002", - "0xc900620b0060290060160020c800620b00600200600c0020cf00620b006", - "0xc90c800c0060cb00620b0060cf0063c90020ca00620b00602a00612b002", - "0x20b00600c00609b00200220b00600211e00200220b0060020090020cb0ca", - "0x600900604700200220b00601000621700200220b006016006051002002", - "0x600c0020c600620b00602f0063ca00200220b00611b0060fa00200220b", - "0x620b00602a00612b0020b500620b0060290060160020b300620b006002", - "0x20b0060020090020b718e0b50b300c0060b700620b0060c60063c900218e", - "0x601000621700200220b00601600605100200220b00600c00609b002002", - "0x600c0020b900620b0060c40063ca00200220b00600900604700200220b", - "0x620b00601500612b0020bb00620b0060140060160020ba00620b006002", - "0x20b00600211e00218f0bd0bb0ba00c00618f00620b0060b90063c90020bd", - "0x1c00200c00620b00601600601900201600700720b0060070063cd002002", - "0x20b00601000611b00200220b00600f0060c400201000f00720b00600c006", - "0x1501400720b00601b0170070bf00201b00620b00600900604e002017006", - "0x600200600c00201900620b00600700605300200220b006015006033002", - "0x202900620b00601900600f00211b00620b00600600601600205400620b", - "0x650c401c00920b00602a02911b05400c21800202a00620b00601400604e", - "0x614100200220b00600200900202c00641802b00620b007065006071002", - "0x2f00620b00600202a00200220b00602e00603300202e02d00720b00602b", - "0x600c00203300620b00603000631a00203000620b00602f02d007319002", - "0x620b00603300631b00203900620b0060c400601600204800620b00601c", - "0x11e00620b00602c00631c00200220b006002009002035039048009006035", - "0x11e00631b00212000620b0060c400601600203700620b00601c00600c002", - "0x600206400200f00620b0060023b000210d12003700900610d00620b006", - "0x206400201900620b00600206400201700620b0060023ce00201400620b", - "0x600601600200220b00600211e00200220b0060021390020c400620b006", - "0x920b00602a02900738300202a00620b00600700612b00202900620b006", - "0x220b00600200900202c00641902b00620b00711b0060ea00211b054065", - "0x60fa00202f02e00720b00602d00636000202d00620b00602b0060ec002", - "0x3500620b00605400612b00203900620b00606500601600200220b00602e", - "0x60ea00200220b00600200600204803303000920b0060350390071bd002", - "0x20b00611e0060ec00200220b00600200900203700641a11e00620b007048", - "0x36100200220b00610d0060fa00203a10d00720b006120006360002120006", - "0x20b00612400613000212400620b00603c0061bf00203c00620b00602f006", - "0x1bf00212a00620b00603a00636100200220b00607d00604d00203e07d007", - "0x612b00604d00204112b00720b00612c00613000212c00620b00612a006", - "0x1c100212d00620b0060410061b200204300620b00603e0061b200200220b", - "0x70450061c500204500620b00604500604b00204500620b00612d043007", - "0x2e00204700620b00600202a00200220b00600200900212e00641b00220b", - "0x241c00600202d00213000620b00613100602c00213100620b006047006", - "0x4d00620b00600202a00200220b00612e0060f200200220b006002009002", - "0x13000602f00213000620b00604b00602c00204b00620b00604d00602b002", - "0x4f00620b00704e00603000204e00620b00604e00602c00204e00620b006", - "0x900637100200220b00604f00603300200220b00600200900213200641d", - "0x13505b00720b0060530063cf00213413605813305612f05305101420b006", - "0x1350063d000213800620b00603300612b00206100620b006030006016002", - "0x5f00615100205f13705d00920b0060641380610093d100206400620b006", - "0x620b00613900615200200220b00600200900206700641e13900620b007", - "0x20ef00200220b00606900604d00206a06900720b00613b00613000213b", - "0x220b00613c00604d00206f13c00720b00606c00613000206c00620b006", - "0x604d00214107100720b00613f00613000213f00620b00606a0061b2002", - "0x7500720b00614500613000214500620b00606f0061b200200220b006071", - "0x760061b200207700620b0061410061b200200220b00607500604d002076", - "0x620b00614600604b00214600620b0060790770071c100207900620b006", - "0x202a00200220b00600200900214b00641f00220b0071460061c5002146", - "0x7f00620b00614a00602c00214a00620b00607b00602e00207b00620b006", - "0x200220b00614b0060f200200220b00600200900200242000600202d002", - "0x20b00615100602c00215100620b0060c700602b0020c700620b00600202a", - "0x2f00215200620b00615200602c00215200620b00607f00602f00207f006", - "0x20b00714e00603000214e00620b00614e00602c00214e00620b006152006", - "0x603300200220b00600211e00200220b00600200900208300642114f006", - "0x620b00605d00601600215008500720b00612f0063d200200220b00614f", - "0x93d400216300620b0061500063d300215d00620b00613700612b00215f", - "0x16200642215c00620b00716000615100216016115e00920b00616315d15f", - "0x20b0060510063d500208700620b00615c00615200200220b006002009002", - "0x8500720b0060850063d700215705b00720b00605b0063d6002154051007", - "0x216e13300720b0061330063d900215b05600720b0060560063d800208a", - "0x63dc0020ed13600720b0061360063db00216805800720b0060580063da", - "0x620b00608e0ed16816e15b08a15715401412a00208e13400720b006134", - "0x90020d000642300220b0070870061c500200220b00616b00604700216b", - "0x620b00615e00601600209216c00720b0060560063dd00200220b006002", - "0x93df00217500620b0060920063de00209600620b00616100612b002173", - "0x709400615100200220b00600200600209417116d00920b006175096173", - "0x17600620b0060d100615200200220b0060020090020990064240d100620b", - "0x60020ef00200220b00609b00604d00217a09b00720b006176006130002", - "0x200220b00617c00604d0020cc17c00720b00609d00613000209d00620b", - "0x17d0a00071c100217d00620b0060cc0061b20020a000620b00617a0061b2", - "0x42500220b0070a20061c50020a200620b0060a200604b0020a200620b006", - "0x60a400602e0020a400620b00600202a00200220b00600200900217e006", - "0x200900200242600600202d0020cd00620b00617f00602c00217f00620b", - "0x602b0020d200620b00600202a00200220b00617e0060f200200220b006", - "0x620b0060cd00602f0020cd00620b0060a800602c0020a800620b0060d2", - "0xab0064270ce00620b00718000603000218000620b00618000602c002180", - "0x200220b0060ce00603300200220b00600211e00200220b006002009002", - "0x20b00616d00601600218100620b00613413605813316c08505b05101412a", - "0x2d0020c900620b0061810060410020c800620b00617100612b0020cf006", - "0xab00603300200220b00600211e00200220b006002009002002428006002", - "0x614500200220b0060170063e000200220b00601400614500200220b006", - "0x14500200220b00600f00621700200220b00600c00605100200220b006019", - "0x200220b00613600639600200220b00613400620c00200220b0060c4006", - "0x220b00616c00639900200220b00613300639800200220b006058006397", - "0x20b00605100639500200220b00605b00639b00200220b00608500639a002", - "0x60cb00604b0020cb00620b0060023e10020ca00620b006002131002002", - "0x20b300620b0060021350020c600620b0060cb0ca00705b0020cb00620b", - "0x200600c00218e00620b0060b50063ca0020b500620b0060c60b300705d", - "0xba00620b00617100612b0020b900620b00616d0060160020b700620b006", - "0x220b0060020090020bb0ba0b90b700c0060bb00620b00618e0063c9002", - "0x220b0060170063e000200220b00601400614500200220b00600211e002", - "0x20b00600f00621700200220b00600c00605100200220b006019006145002", - "0x613600639600200220b00613400620c00200220b0060c4006145002002", - "0x16c00639900200220b00613300639800200220b00605800639700200220b", - "0x639500200220b00605b00639b00200220b00608500639a00200220b006", - "0x18f00620b00600200600c0020bd00620b0060990063ca00200220b006051", - "0xbd0063c90020bf00620b00617100612b0020be00620b00616d006016002", - "0xd00060f200200220b0060020090020c10bf0be18f00c0060c100620b006", - "0x1600219000620b00613413605813305608505b05101412a00200220b006", - "0x20b0061900060410020c800620b00616100612b0020cf00620b00615e006", - "0x63e200219f0d61a019d0d419c19b0c301420b0060c90063710020c9006", - "0x20b0060cf0060160021a500620b00600200600c0020d90d700720b0060c3", - "0x3e40021b200620b0060d90063e30021a600620b0060c800612b0020df006", - "0x3e500200220b0060020060021a41a30db1a100c20b0061b21a60df1a500c", - "0x61ad0063e600200220b0060020090021ae0064291ad00620b0071a4006", - "0x21b800620b0060023e80020e70e500720b0061b40063e70021b400620b", - "0x60e70063e700200220b0061ba00609b0021bd1ba00720b0061b80063e7", - "0xef1bf00720b0061bd0063e700200220b0060ea00609b0020ec0ea00720b", - "0x60ef0061730021c500620b0060ec00617300200220b0061bf00609b002", - "0xf400620b0061c100602f0021c100620b0060f21c50073e90020f200620b", - "0x3d70021ca19b00720b00619b0063d60021c80d700720b0060d70063d5002", - "0x19d0063d90020f80d400720b0060d40063d80021d419c00720b00619c006", - "0x20b0060d60063db0021eb1a000720b0061a00063da0021d619d00720b006", - "0x1d60f81d41ca1c801412a0021ef19f00720b00619f0063dc0020fa0d6007", - "0x20b0060f400602c00200220b0060fc0060470020fc00620b0061ef0fa1eb", - "0x200220b0060020090021f600642a0fe00620b0070f40060300020f4006", - "0x200220b0060e500609b00200220b0060fe00603300200220b00600211e", - "0x20b0061a100600c00210000620b00619f0d61a019d0d419c19b0d701412a", - "0x4100201c00620b0061a300612b0021f900620b0060db0060160021f8006", - "0x3300200220b00600200900200242b00600202d00201600620b006100006", - "0x1ff1fb00942c1032f600720b0070e51a30db0093b600200220b0061f6006", - "0x20b0060000063b700200000620b00600202a00200220b006002009002206", - "0x3b800230500620b00610300612b00230400620b0062f6006016002300006", - "0x3b900200220b00600200900200242d00600202d00230700620b006300006", - "0x20b0061ff00612b00230400620b0061fb00601600230800620b006206006", - "0x3bb00230a00620b0063070063ba00230700620b0063080063b8002305006", - "0x200900230c00642e30b00620b0073090063bc00230900620b00630a006", - "0x601600230e00620b0060023e800200220b00630b0063bd00200220b006", - "0x620b0060d70063e300231300620b00630500612b00231200620b006304", - "0x30f00920b00631531431331200c3ea00231500620b00630e006173002314", - "0x200220b00600200900231700642f31600620b0073110063eb002311310", - "0x619b0063cf00200220b00631a00603300231a31900720b0063160063ec", - "0x32800620b00631000612b00232600620b00630f00601600231c31b00720b", - "0x32232132000920b0063293283260093d100232900620b00631c0063d0002", - "0x211e00200220b00600200900232b00643032a00620b007322006151002", - "0x232d00620b00632c0063ed00232c00620b00632a00615200200220b006", - "0x20b0061a100600c00233100620b00619f0d61a019d0d419c31b31901412a", - "0x4100233700620b00632100612b00233600620b006320006016002335006", - "0x3373363350163ef00221100620b00632d0063ee00233900620b006331006", - "0x33d00643133b00620b00733400617d00233433321233200c20b006211339", - "0x634000603300234033f00720b00633b0061f600200220b006002009002", - "0x12b0021f900620b0062120060160021f800620b00633200600c00200220b", - "0x20b00600c00613200201600620b00633f00604100201c00620b006333006", - "0x34634500720b00621000601c00221000620b006343006019002343342007", - "0x20b00634700601c00234700620b00600206500200220b0063450060c4002", - "0x5400234a00620b00634600605400200220b0063480060c4002349348007", - "0x601c0c400713b00234a00620b00634a00611b00234b00620b006349006", - "0x220b00734b34a00702900201600620b00601600f0073c300201c00620b", - "0x605100234d34c00720b00634200613200200220b006002009002002432", - "0x35200620b0061f800600c00234e00620b00634d00605300200220b00634c", - "0x35200901000220f00620b00634e00600f00235300620b0061f9006016002", - "0x20b00735100601400200220b00600200600235135034f00920b00620f353", - "0x35735600720b00635400601500200220b006002009002355006433354006", - "0x601b00200220b00600200900235a00643401500620b007357006017002", - "0x720b00635c00601c00235c00620b00635b00601900235b00620b006356", - "0x36500601c00236500620b00600206500200220b0063600060c4002361360", - "0x36900620b00636100605400200220b0063660060c400236836600720b006", - "0x170073f000236900620b00636900611b00236e00620b006368006054002", - "0x20b00600200900200243500220b00736e36900702900201500620b006015", - "0x37100602c00237100620b00636f00602b00236f00620b00600202a002002", - "0x600202a00200220b00600200900200243600600202d00237200620b006", - "0x237200620b00637400602c00237400620b00637300602e00237300620b", - "0x720e00603000220e00620b00620e00602c00220e00620b00637200602f", - "0x200220b00637800603300200220b00600200900237900643737800620b", - "0x35000601600237c00620b00637b0061d600237b37a00720b0060150060f8", - "0x920b00638037f00738300238000620b00601c00612b00237f00620b006", - "0x1b00620b00601b01900713b00237c00620b00637c0060fc00237e01b37d", - "0x211e00200220b00600200900238200643838100620b00737e0060ea002", - "0x238a00620b00634f00600c00238300620b0063810060ec00200220b006", - "0x63830063f100238b00620b00637c0060fc00220d00620b00637d006016", - "0x3890063f300238938838500920b00638c38b20d38a00c3f200238c00620b", - "0x220b00638d0063f400200220b00600200900238e00643938d00620b007", - "0x3910061d600200220b00638f00613600239138f00720b00637a0060f8002", - "0x39800620b00638800601600239700620b00638500600c00239200620b006", - "0x39700c30400239a00620b0063920060fc00239900620b00601b00612b002", - "0x201000620b00601001400713b00239601020c39500c20b00639a399398", - "0x39b00630700200220b00600200900239c00643a39b00620b007396006305", - "0x3a039f00720b00639d00606c00239e00620b00600213100239d00620b006", - "0x620c0060160023a400620b00639500600c00200220b00639f00613c002", - "0x23a700620b00639e00604e0023a600620b0063a000606f0023a500620b", - "0x3a800620b0073a30060710023a33a23a100920b0063a73a63a53a400c13f", - "0x330023ab3aa00720b0063a800614100200220b0060020090023a900643b", - "0x20b0063ac0063c80023ac00620b0063aa0160073c700200220b0063ab006", - "0x12b0023af00620b0063a20060160023ae00620b0063a100600c0023ad006", - "0x3b13b03af3ae00c0063b100620b0063ad0063c90023b000620b006010006", - "0x620b0063a90063ca00200220b00601600604700200220b006002009002", - "0x612b0023b400620b0063a20060160023b300620b0063a100600c0023b2", - "0x23b63b53b43b300c0063b600620b0063b20063c90023b500620b006010", - "0x3b700620b00639c0063ca00200220b00601600604700200220b006002009", - "0x1000612b0023b900620b00620c0060160023b800620b00639500600c002", - "0x90023bb3ba3b93b800c0063bb00620b0063b70063c90023ba00620b006", - "0x13600200220b00601400614500200220b00601600604700200220b006002", - "0x620b00638500600c0023bc00620b00638e0063ca00200220b00637a006", - "0x63c90023bf00620b00601b00612b0023be00620b0063880060160023bd", - "0x211e00200220b0060020090023c03bf3be3bd00c0063c000620b0063bc", - "0x613600200220b00601400614500200220b00601600604700200220b006", - "0x23c100620b0063820063ca00200220b00637c00639c00200220b00637a", - "0x601b00612b0023c300620b00637d0060160023c200620b00634f00600c", - "0x20090023c53c43c33c200c0063c500620b0063c10063c90023c400620b", - "0x1600604700200220b00637900603300200220b00600211e00200220b006", - "0x613600200220b00601900614500200220b00601400614500200220b006", - "0x4b0023c700620b0060023f50023c600620b00600213100200220b006015", - "0x20b0060021350023c800620b0063c73c600705b0023c700620b0063c7006", - "0x221700620b0063ca0063ca0023ca00620b0063c83c900705d0023c9006", - "0x601c00612b0023cc00620b0063500060160023cb00620b00634f00600c", - "0x20090022183cd3cc3cb00c00621800620b0062170063c90023cd00620b", - "0x1600604700200220b00635a00603300200220b00600211e00200220b006", - "0x606100200220b00601900614500200220b00601400614500200220b006", - "0x3f50023ce00620b00600213100200220b0060170063e000200220b006356", - "0x20b0063cf3ce00705b0023cf00620b0063cf00604b0023cf00620b006002", - "0x3ca0023d200620b0063d03d100705d0023d100620b0060021350023d0006", - "0x20b0063500060160023d400620b00634f00600c0023d300620b0063d2006", - "0xc0063d700620b0063d30063c90023d600620b00601c00612b0023d5006", - "0x1600604700200220b00600211e00200220b0060020090023d73d63d53d4", - "0x63e000200220b00601900614500200220b00601400614500200220b006", - "0x3d900620b00634f00600c0023d800620b0063550063ca00200220b006017", - "0x3d80063c90023db00620b00601c00612b0023da00620b006350006016002", - "0x1400614500200220b0060020090023dc3db3da3d900c0063dc00620b006", - "0x605100200220b00601900614500200220b0060170063e000200220b006", - "0x3de00620b0063dd0160073c70023dd00620b00600213100200220b006342", - "0x1f90060160023e000620b0061f800600c0023df00620b0063de0063c8002", - "0x3e300620b0063df0063c90023e200620b00601c00612b0023e100620b006", - "0x200220b00601400614500200220b0060020090023e33e23e13e000c006", - "0x220b00600c00605100200220b00601900614500200220b0060170063e0", - "0x20b00633d0063ca00200220b0060c400614500200220b00600f006217002", - "0x12b0023e600620b0062120060160023e500620b00633200600c0023e4006", - "0x3e83e73e63e500c0063e800620b0063e40063c90023e700620b006333006", - "0x200220b00600f00621700200220b00600211e00200220b006002009002", - "0x220b0060170063e000200220b0060c400614500200220b006014006145", - "0x20b00631900639500200220b00600c00605100200220b006019006145002", - "0x61a000639700200220b0060d600639600200220b00619f00620c002002", - "0x19c00639a00200220b0060d400639900200220b00619d00639800200220b", - "0xc0023e900620b00632b0063ca00200220b00631b00639b00200220b006", - "0x20b00632100612b0023eb00620b0063200060160023ea00620b0061a1006", - "0x60020090023ed3ec3eb3ea00c0063ed00620b0063e90063c90023ec006", - "0x601400614500200220b00600f00621700200220b00600211e00200220b", - "0x1900614500200220b0060170063e000200220b0060c400614500200220b", - "0x639a00200220b00619b00639b00200220b00600c00605100200220b006", - "0x39700200220b0060d600639600200220b00619f00620c00200220b00619c", - "0x200220b0060d400639900200220b00619d00639800200220b0061a0006", - "0x630f0060160023ef00620b0061a100600c0023ee00620b0063170063ca", - "0x63f200620b0063ee0063c90023f100620b00631000612b0023f000620b", - "0x621700200220b00600211e00200220b0060020090023f23f13f03ef00c", - "0x3e000200220b0060c400614500200220b00601400614500200220b00600f", - "0x200220b00600c00605100200220b00601900614500200220b006017006", - "0x220b00619c00639a00200220b0060d400639900200220b00619b00639b", - "0x20b0061a000639700200220b0060d600639600200220b00619f00620c002", - "0x630c0063ca00200220b0060d700639500200220b00619d006398002002", - "0x23f500620b0063040060160023f400620b0061a100600c0023f300620b", - "0x3f63f53f400c0063f700620b0063f30063c90023f600620b00630500612b", - "0x220b00601400614500200220b00600211e00200220b0060020090023f7", - "0x20b00600c00605100200220b00601900614500200220b0060170063e0002", - "0x619f00620c00200220b0060c400614500200220b00600f006217002002", - "0x19d00639800200220b0061a000639700200220b0060d600639600200220b", - "0x639b00200220b00619c00639a00200220b0060d400639900200220b006", - "0x23f800620b0061ae0063ca00200220b0060d700639500200220b00619b", - "0x61a300612b0023fa00620b0060db0060160023f900620b0061a100600c", - "0x20090023fc3fb3fa3f900c0063fc00620b0063f80063c90023fb00620b", - "0x63e000200220b00601400614500200220b00605b00639b00200220b006", - "0x39500200220b00600c00605100200220b00601900614500200220b006017", - "0x200220b0060c400614500200220b00600f00621700200220b006051006", - "0x220b00605800639700200220b00613600639600200220b00613400620c", - "0x20b00605600639900200220b00608500639a00200220b006133006398002", - "0x60160023fe00620b00600200600c0023fd00620b0061620063ca002002", - "0x620b0063fd0063c90023ff00620b00616100612b00221b00620b00615e", - "0x200220b00600211e00200220b0060020090024003ff21b3fe00c006400", - "0x220b00601400614500200220b00605b00639b00200220b006083006033", - "0x20b00600c00605100200220b00601900614500200220b0060170063e0002", - "0x60c400614500200220b00600f00621700200220b006051006395002002", - "0x5800639700200220b00613600639600200220b00613400620c00200220b", - "0x639a00200220b00605600639900200220b00613300639800200220b006", - "0x4b00240200620b0060023f600240100620b00600213100200220b00612f", - "0x20b00600213500240300620b00640240100705b00240200620b006402006", - "0x221a00620b00643d0063ca00243d00620b00640343c00705d00243c006", - "0x613700612b00243f00620b00605d00601600243e00620b00600200600c", - "0x200900244144043f43e00c00644100620b00621a0063c900244000620b", - "0x1400614500200220b00605b00639b00200220b00600211e00200220b006", - "0x605100200220b00601900614500200220b0060170063e000200220b006", - "0x14500200220b00600f00621700200220b00605100639500200220b00600c", - "0x200220b00613600639600200220b00613400620c00200220b0060c4006", - "0x220b00605600639900200220b00613300639800200220b006058006397", - "0x600200600c00244200620b0060670063ca00200220b00612f00639a002", - "0x244500620b00613700612b00244400620b00605d00601600244300620b", - "0x200220b00600200900244644544444300c00644600620b0064420063c9", - "0x200220b00601400614500200220b00613200603300200220b00600211e", - "0x220b00600c00605100200220b00601900614500200220b0060170063e0", - "0x20b00600900604700200220b0060c400614500200220b00600f006217002", - "0x644800604b00244800620b0060023cc00244700620b006002131002002", - "0x244a00620b00600213500244900620b00644844700705b00244800620b", - "0x200600c00244c00620b00644b0063ca00244b00620b00644944a00705d", - "0x44e00620b00603300612b00221900620b00603000601600244d00620b006", - "0x220b00600200900244f44e21944d00c00644f00620b00644c0063c9002", - "0x220b0060170063e000200220b00601400614500200220b00600211e002", - "0x20b00600f00621700200220b00600c00605100200220b006019006145002", - "0x602f0060fa00200220b00600900604700200220b0060c4006145002002", - "0x1600245100620b00600200600c00245000620b0060370063ca00200220b", - "0x20b0064500063c900245300620b00603300612b00245200620b006030006", - "0x20b00600900604700200220b00600200900245445345245100c006454006", - "0x601900614500200220b0060170063e000200220b006014006145002002", - "0xc400614500200220b00600f00621700200220b00600c00605100200220b", - "0x245600620b00600200600c00245500620b00602c0063ca00200220b006", - "0x64550063c900245800620b00605400612b00245700620b006065006016", - "0x700601600200220b00601600604d00245945845745600c00645900620b", - "0x920b0060170150070f400201700620b00600900612b00201500620b006", - "0x220b00600200900201900645a01b00620b0070140061c800201401000f", - "0xc40061eb0020c400620b00601c0061d400201c00620b00601b0061ca002", - "0x61ef00200220b0060540060fa00202c02b02a02911b05406501020b006", - "0x13000200220b00602c00604d00200220b00602b00604d00200220b00611b", - "0x20b00602f00613000202f00620b0060023f700202e02d00720b006065006", - "0x13000204800620b00602e0061b200200220b00603000604d002033030007", - "0x20b0060330061b200200220b00603900604d00203503900720b006048006", - "0x1b200200220b00603700604d00212003700720b00611e00613000211e006", - "0x20b00610d00604b00203a00620b0061200061b200210d00620b006035006", - "0x203c00620b00603c00604b00203c00620b00603a10d0071c100210d006", - "0x602d00604b00202900620b00602900600f00202a00620b00602a00604b", - "0x200220b00600200900212400645b00220b00703c0061c500202d00620b", - "0x20b00603e00602c00203e00620b00607d00602e00207d00620b00600202a", - "0x20b0061240060f200200220b00600200900200245c00600202d00212a006", - "0x12b00602c00212b00620b00612c00602b00212c00620b00600202a002002", - "0x4100620b00604100602c00204100620b00612a00602f00212a00620b006", - "0x603300200220b00600200900212d00645d04300620b007041006030002", - "0x200900200245e00600202d00200220b00602d00604d00200220b006043", - "0x212e04500720b00602d00613000200220b00612d00603300200220b006", - "0x720b00604700613000204700620b0060023f800200220b00604500604d", - "0x61b200204d00620b00612e0061b200200220b00613100604d002130131", - "0x20b00604e00604b00204e00620b00604b04d0071c100204b00620b006130", - "0x2a00200220b00600200900204f00645f00220b00704e0061c500204e006", - "0x620b00605100602c00205100620b00613200602e00213200620b006002", - "0x220b00604f0060f200200220b00600200900200246000600202d002053", - "0x605600602c00205600620b00612f00602b00212f00620b00600202a002", - "0x213300620b00613300602c00213300620b00605300602f00205300620b", - "0x5800603300200220b00600200900213600646105800620b007133006030", - "0x206100620b00600600612c00205f00620b00600200600c00200220b006", - "0x600c00604100206400620b00601000612b00213800620b00600f006016", - "0x213b00620b00602900600f00206700620b00602a00604b00213900620b", - "0x63bc00213705d13505b13401620b00613b06713906413806105f0103f9", - "0x20b0060690063bd00200220b00600200900206a00646206900620b007137", - "0x13c00633200213c00620b00606c00633100206c00620b006002100002002", - "0x7100620b00605b00612c00213f00620b00613400600c00206f00620b006", - "0x6f00621200214500620b00605d00612b00214100620b006135006016002", - "0x633300200220b00600200900207514514107113f01600607500620b006", - "0x620b00605b00612c00207700620b00613400600c00207600620b00606a", - "0x621200214b00620b00605d00612b00214600620b006135006016002079", - "0x3300200220b00600200900207b14b14607907701600607b00620b006076", - "0x200220b00602a00604d00200220b00602900606100200220b006136006", - "0x7f00620b00600231300214a00620b00600213100200220b00600c006047", - "0x21350020c700620b00607f14a00705b00207f00620b00607f00604b002", - "0x620b00615200633300215200620b0060c715100705d00215100620b006", - "0x601600208300620b00600600612c00214f00620b00600200600c00214e", - "0x620b00614e00621200215000620b00601000612b00208500620b00600f", - "0x20b00600c00604700200220b00600200900215e15008508314f01600615e", - "0x612c00216000620b00600200600c00216100620b006019006333002002", - "0x620b00601000612b00215d00620b00600f00601600215f00620b006006", - "0x1600604d00215c16315d15f16001600615c00620b006161006212002163", - "0x604d00200220b00601000604d00200220b00600f00604d00200220b006", - "0x1c00620b00600900612b00201900620b00600700601600200220b006014", - "0x4630c400620b00701b0061c800201b01701500920b00601c0190070f4002", - "0x540061d400205400620b0060c40061ca00200220b006002009002065006", - "0xfa00202f02e02d02c02b02a02901020b00611b0061eb00211b00620b006", - "0x200220b00602e00604d00200220b00602b0061ef00200220b00602a006", - "0x20b00600200000203303000720b00602900613000200220b00602f00604d", - "0x1b200200220b00603900604d00203503900720b006048006130002048006", - "0x603700604d00212003700720b00611e00613000211e00620b006033006", - "0x203c03a00720b00610d00613000210d00620b0060350061b200200220b", - "0x20b00603c0061b200212400620b0061200061b200200220b00603a00604d", - "0x203e00620b00607d1240071c100212400620b00612400604b00207d006", - "0x602c00600f00202d00620b00602d00604b00203e00620b00603e00604b", - "0x646400220b00703e0061c500203000620b00603000604b00202c00620b", - "0x20b00612c00602e00212c00620b00600202a00200220b00600200900212a", - "0x600200900200246500600202d00204100620b00612b00602c00212b006", - "0x4300602b00204300620b00600202a00200220b00612a0060f200200220b", - "0x4500620b00604100602f00204100620b00612d00602c00212d00620b006", - "0x204700646612e00620b00704500603000204500620b00604500602c002", - "0x200220b00603000604d00200220b00612e00603300200220b006002009", - "0x13000200220b00604700603300200220b00600200900200246700600202d", - "0x620b00600230000200220b00613100604d00213013100720b006030006", - "0x61b200200220b00604b00604d00204e04b00720b00604d00613000204d", - "0x20b00613204f0071c100213200620b00604e0061b200204f00620b006130", - "0x5300646800220b0070510061c500205100620b00605100604b002051006", - "0x620b00612f00602e00212f00620b00600202a00200220b006002009002", - "0x20b00600200900200246900600202d00213300620b00605600602c002056", - "0x605800602b00205800620b00600202a00200220b0060530060f2002002", - "0x213400620b00613300602f00213300620b00613600602c00213600620b", - "0x900213500646a05b00620b00713400603000213400620b00613400602c", - "0x206400620b00600200600c00200220b00605b00603300200220b006002", - "0x601700612b00206700620b00601500601600213900620b00600600612c", - "0x206a00620b00602d00604b00206900620b00600c00604100213b00620b", - "0x1620b00606c06a06913b0671390640103f900206c00620b00602c00600f", - "0x600200900206f00646b13c00620b0071380063bc00213806105f13705d", - "0x13f00633100213f00620b00600210000200220b00613c0063bd00200220b", - "0x14500620b00605d00600c00214100620b00607100633200207100620b006", - "0x6100612b00207600620b00605f00601600207500620b00613700612c002", - "0x207907707607514501600607900620b00614100621200207700620b006", - "0x620b00605d00600c00214600620b00606f00633300200220b006002009", - "0x612b00214a00620b00605f00601600207b00620b00613700612c00214b", - "0xc707f14a07b14b0160060c700620b00614600621200207f00620b006061", - "0x220b00602c00606100200220b00613500603300200220b006002009002", - "0x620b00600213100200220b00600c00604700200220b00602d00604d002", - "0x15100705b00215200620b00615200604b00215200620b006002313002151", - "0x620b00614e14f00705d00214f00620b00600213500214e00620b006152", - "0x612c00215000620b00600200600c00208500620b006083006333002083", - "0x620b00601700612b00216100620b00601500601600215e00620b006006", - "0x600200900215f16016115e15001600615f00620b006085006212002160", - "0x600c00215d00620b00606500633300200220b00600c00604700200220b", - "0x620b00601500601600215c00620b00600600612c00216300620b006002", - "0x16301600615400620b00615d00621200208700620b00601700612b002162", - "0x7500201900620b00600208300201700620b00600214f00215408716215c", - "0x601600200220b00600211e00200220b0060021390020c400620b006002", - "0x20b00602a02900738300202a00620b00600c00612b00202900620b006007", - "0x20b00600200900202c00646c02b00620b00711b0060ea00211b054065009", - "0xfa00202f02e00720b00602d00636000202d00620b00602b0060ec002002", - "0x620b00605400612b00203900620b00606500601600200220b00602e006", - "0xea00200220b00600200600204803303000920b0060350390071bd002035", - "0x611e0060ec00200220b00600200900203700646d11e00620b007048006", - "0x200220b00610d0060fa00203a10d00720b00612000636000212000620b", - "0x612400613000212400620b00603c0061bf00203c00620b00602f006361", - "0x212a00620b00603a00636100200220b00607d00604d00203e07d00720b", - "0x12b00604d00204112b00720b00612c00613000212c00620b00612a0061bf", - "0x212d00620b0060410061b200204300620b00603e0061b200200220b006", - "0x450061c500204500620b00604500604b00204500620b00612d0430071c1", - "0x204700620b00600202a00200220b00600200900212e00646e00220b007", - "0x46f00600202d00213000620b00613100602c00213100620b00604700602e", - "0x620b00600202a00200220b00612e0060f200200220b006002009002002", - "0x602f00213000620b00604b00602c00204b00620b00604d00602b00204d", - "0x620b00704e00603000204e00620b00604e00602c00204e00620b006130", - "0x4f00603300200220b00600211e00200220b00600200900213200647004f", - "0x13600620b00600200600c00205305100720b00601600607f00200220b006", - "0x900615d00205b00620b00603000601600213400620b00600600612c002", - "0x13700620b00605300604100205d00620b00603300612b00213500620b006", - "0x604b00205f00620b00605f00604b00205f00f00720b00600f00635a002", - "0x13505b1341360153fa00213800620b00601400604b00206100620b006010", - "0x601b01900716200205813301505601b12f00f20b00613806105f13705d", - "0x6400620b0070580063bc00201500620b00601501700708700201b00620b", - "0x5100637100200220b0060640063bd00200220b006002009002139006471", - "0x14107100720b00606c0063fb00213f06f13c06c06a06913b06701420b006", - "0x13300612b00214600620b00605600601600207900620b00612f00600c002", - "0x607b14b14607900c3fd00207b00620b0061410063fc00214b00620b006", - "0x200900207f00647214a00620b0070770060c800207707607514500c20b", - "0x15215100920b0060c70063fe0020c700620b00614a0060c900200220b006", - "0x614500600c00200220b00614e00604d00200220b00615200604d00214e", - "0x216000620b00607600612b00216100620b00607500601600215e00620b", - "0x8508314f00c20b00615f16016115e00c3ff00215f00620b00615100621b", - "0x40100200220b00600200900216300647315d00620b007150006400002150", - "0x20b00600202a00208716200720b00615c00640200215c00620b00615d006", - "0x215b08a00720b00615700640200215700620b006154006403002154006", - "0x20b00615b00643d00216800620b00608700643d00200220b00608a00643c", - "0x47408e00620b00716e00603000216e00620b0060ed16800721a0020ed006", - "0x20b00600243e00200220b00608e00603300200220b00600200900216b006", - "0xd000943f00209200620b0060020ef00216c00620b0060020ef0020d0006", - "0x20b00608300601600217500620b00614f00600c00216d00620b00609216c", - "0xc600217600620b0060710063fc00209900620b00608500612b0020d1006", - "0x17309417100c20b00609b1760990d117501644000209b00620b00616d006", - "0x44200200220b00600200900209d00647517a00620b007096006441002096", - "0x20b00616200640200200220b0060cc0060330020cc17c00720b00617a006", - "0x64430020a200620b00600202a00200220b0060a000643c00217d0a0007", - "0x20b0060a400643c00217f0a400720b00617e00640200217e00620b0060a2", - "0x640200200220b0060cd00643c0020d20cd00720b00617d006402002002", - "0x620b0060d200643d00200220b0060a800643c0021800a800720b00617f", - "0x2f0020ce00620b0061810ab00744400218100620b00618000643d0020ab", - "0x613b0063d60020c806700720b0060670063d50020cf00620b0060ce006", - "0x720b00606a0063d80020ca06900720b0060690063d70020c913b00720b", - "0xb313c00720b00613c0063da0020c617c00720b00617c0063d90020cb06a", - "0x12a00218e13f00720b00613f0063dc0020b506f00720b00606f0063db002", - "0x220b0060b70060470020b700620b00618e0b50b30c60cb0ca0c90c8014", - "0x20ba0064760b900620b0070cf0060300020cf00620b0060cf00602c002", - "0x17c06a06913b06701412a00200220b0060b900603300200220b006002009", - "0x60940060160020bd00620b00617100600c0020bb00620b00613f06f13c", - "0x20bf00620b0060bb0060410020be00620b00617300612b00218f00620b", - "0x12a00200220b0060ba00603300200220b00600200900200247700600202d", - "0x19000620b0060024450020c100620b00613f06f13c17c06a06913b067014", - "0x17300612b0021a000620b00609400601600219d00620b00617100600c002", - "0xd700620b00619000644600219f00620b0060c10060410020d600620b006", - "0x70d400617d0020d419c19b0c300c20b0060d719f0d61a019d016447002", - "0xdb00720b0060d90061f600200220b0060020090021a10064780d900620b", - "0x19b0060160020bd00620b0060c300600c00200220b0061a30060330021a3", - "0xbf00620b0060db0060410020be00620b00619c00612b00218f00620b006", - "0xbe0064490021a500620b00618f0064480021a400620b0060bd00636e002", - "0x900200247900600202d0021a600620b0060bf00644a0020df00620b006", - "0x44b00200220b0060c400614e00200220b00600f00604d00200220b006002", - "0x20b00601b00612c0021ad00620b0060c300600c0021b200620b0061a1006", - "0x12b0020e500620b00601500615d0021b400620b00619b0060160021ae006", - "0xe51b41ae1ad00f0061b800620b0061b200644c0020e700620b00619c006", - "0x60c400614e00200220b00600f00604d00200220b0060020090021b80e7", - "0x13c00639700200220b00606f00639600200220b00613f00620c00200220b", - "0x639a00200220b00606a00639900200220b00616200643c00200220b006", - "0x44b00200220b00606700639500200220b00613b00639b00200220b006069", - "0x20b00601b00612c0021bd00620b00617100600c0021ba00620b00609d006", - "0x12b0021bf00620b00601500615d0020ec00620b0060940060160020ea006", - "0x1bf0ec0ea1bd00f0061c100620b0061ba00644c0020ef00620b006173006", - "0x616200643c00200220b00616b00603300200220b0060020090021c10ef", - "0x600c0021c500620b00613f06f13c07106a06913b06701412a00200220b", - "0x620b00608500612b0021a500620b0060830060160021a400620b00614f", - "0x1ca1c80f40f201420b0061a60063710021a600620b0061c50060410020df", - "0x21f600620b0061a50060160020fa00620b0060020650021eb1d60f81d4", - "0x60fa00611b0021f800620b0061eb00644d00210000620b0060df00612b", - "0xfe00644e0020fe0fc1ef00920b0061f91f81001f600c2190021f900620b", - "0x720b0062f600644f00200220b00600200900210300647a2f600620b007", - "0x1ef00601600220600620b00600206500200220b0061ff0060330021ff1fb", - "0x30800620b0061d600645000230700620b0060fc00612b00230500620b006", - "0x30000000920b00630930830730500c45100230900620b00620600611b002", - "0x45300200220b00600200900230b00647b30a00620b007304006452002304", - "0x1c80f40f201412a00200220b00630e00603300230e30c00720b00630a006", - "0x31331231131001420b00630f00637100230f00620b0061fb30c0f81d41ca", - "0x620b00600000601600231a31900720b0063110063cf002317316315314", - "0x93d100232600620b00631a0063d000232200620b00630000612b002321", - "0x644d00231000620b0063100063e300232031c31b00920b006326322321", - "0x620b0063130063de00231200620b0063120063d300231700620b006317", - "0x645000231500620b00631500637300231400620b0063140063fc002313", - "0x620b00732000615100231900620b0063190063d000231600620b006316", - "0x1600201c00620b00632800615200200220b00600200900232900647c328", - "0x20b0063190063d000233100620b00631c00612b00232d00620b00631b006", - "0x221200620b00621200604b00221200f00720b00600f00635a002332006", - "0x620b00601c0c400707900232c32b32a00920b00621233233132d00c454", - "0x45600200220b00600200900233400647d33300620b00732c00645500201c", - "0x20b00600f00635a00200220b00633600603300233633500720b006333006", - "0x31531431331233531001412a00233900620b00633700645700233700f007", - "0x20b00632a00601600234200620b0061a400600c00221100620b006317316", - "0x45800234500620b00621100604100221000620b00632b00612b002343006", - "0x33f33d33b00c20b00634634521034334201645900234600620b006339006", - "0x1f600200220b00600200900234800647e34700620b00734000617d002340", - "0x20b00601c00647f00200220b00634a00603300234a34900720b006347006", - "0x12b00235100620b00633d00601600235000620b00633b00600c00234b006", - "0x20b00634b00648000235300620b00634900604100235200620b00633f006", - "0x617d00234f34e34d34c00c20b00620f35335235135001648100220f006", - "0x20b0063540061f600200220b00600200900235500648235400620b00734f", - "0xc00235a00620b00600f0063ed00200220b006357006033002357356007", - "0x20b00634e00612b00236600620b00634d00601600236500620b00634c006", - "0x3ef00236e00620b00635a0063ee00236900620b006356006041002368006", - "0x620b00736100617d00236136035c35b00c20b00636e369368366365016", - "0x237337200720b00636f0061f600200220b00600200900237100648336f", - "0x20b00637437200748400237400620b00600202a00200220b006373006033", - "0x12c00237900620b00635b00600c00237800620b00620e00648500220e006", - "0x20b00601500615d00237b00620b00635c00601600237a00620b00601b006", - "0xf00637e00620b00637800644c00237d00620b00636000612b00237c006", - "0x37f00620b00637100644b00200220b00600200900237e37d37c37b37a379", - "0x35c00601600238100620b00601b00612c00238000620b00635b00600c002", - "0x38500620b00636000612b00238300620b00601500615d00238200620b006", - "0x600200900238838538338238138000f00638800620b00637f00644c002", - "0x600c00238900620b00635500644b00200220b00600f00604d00200220b", - "0x620b00634d00601600220d00620b00601b00612c00238a00620b00634c", - "0x644c00238d00620b00634e00612b00238c00620b00601500615d00238b", - "0x200220b00600200900238e38d38c38b20d38a00f00638e00620b006389", - "0x620b00634800644b00200220b00601c00604d00200220b00600f00604d", - "0x601600239200620b00601b00612c00239100620b00633b00600c00238f", - "0x620b00633f00612b00220c00620b00601500615d00239500620b00633d", - "0x200900239739620c39539239100f00639700620b00638f00644c002396", - "0x639500200220b00601c00604d00200220b00600f00604d00200220b006", - "0x39700200220b00631600639600200220b00631700620c00200220b006310", - "0x200220b00631300639900200220b00631400639800200220b006315006", - "0x20b0061a400600c00239800620b00633400644b00200220b00631200639a", - "0x15d00239b00620b00632a00601600239a00620b00601b00612c002399006", - "0x20b00639800644c00239d00620b00632b00612b00239c00620b006015006", - "0xf00604d00200220b00600200900239e39d39c39b39a39900f00639e006", - "0x639900200220b00631200639a00200220b00631000639500200220b006", - "0x39700200220b00631600639600200220b00631700620c00200220b006313", - "0x200220b00631900639b00200220b00631400639800200220b006315006", - "0x20b0061a400600c00239f00620b00632900644b00200220b0060c400614e", - "0x15d0023a200620b00631b0060160023a100620b00601b00612c0023a0006", - "0x20b00639f00644c0023a400620b00631c00612b0023a300620b006015006", - "0xf00604d00200220b0060020090023a53a43a33a23a13a000f0063a5006", - "0x639500200220b0061fb00620c00200220b0060c400614e00200220b006", - "0x39900200220b0061d400639800200220b0060f800639700200220b0060f2", - "0x200220b0060f400639b00200220b0061c800639a00200220b0061ca006", - "0x601b00612c0023a700620b0061a400600c0023a600620b00630b00644b", - "0x23aa00620b00601500615d0023a900620b0060000060160023a800620b", - "0x3a93a83a700f0063ac00620b0063a600644c0023ab00620b00630000612b", - "0xc400614e00200220b00600f00604d00200220b0060020090023ac3ab3aa", - "0x639500200220b0061c800639a00200220b0060f400639b00200220b006", - "0x39900200220b0061d400639800200220b0060f800639700200220b0060f2", - "0x3ad00620b00610300644b00200220b0061d600639600200220b0061ca006", - "0x1ef0060160023af00620b00601b00612c0023ae00620b0061a400600c002", - "0x3b200620b0060fc00612b0023b100620b00601500615d0023b000620b006", - "0x60020090023b33b23b13b03af3ae00f0063b300620b0063ad00644c002", - "0x6900639a00200220b0060c400614e00200220b00600f00604d00200220b", - "0x620c00200220b00613b00639b00200220b00606700639500200220b006", - "0x39900200220b00613c00639700200220b00606f00639600200220b00613f", - "0x3b400620b00616300644b00200220b00607100639800200220b00606a006", - "0x830060160023b600620b00601b00612c0023b500620b00614f00600c002", - "0x3b900620b00608500612b0023b800620b00601500615d0023b700620b006", - "0x60020090023ba3b93b83b73b63b500f0063ba00620b0063b400644c002", - "0x6900639a00200220b0060c400614e00200220b00600f00604d00200220b", - "0x620c00200220b00613b00639b00200220b00606700639500200220b006", - "0x39800200220b00613c00639700200220b00606f00639600200220b00613f", - "0x3bb00620b00607f00644b00200220b00606a00639900200220b006071006", - "0x750060160023bd00620b00601b00612c0023bc00620b00614500600c002", - "0x3c000620b00607600612b0023bf00620b00601500615d0023be00620b006", - "0x60020090023c13c03bf3be3bd3bc00f0063c100620b0063bb00644c002", - "0x5100604700200220b0060c400614e00200220b00600f00604d00200220b", - "0x23c300620b00612f00600c0023c200620b00613900644b00200220b006", - "0x601500615d0023c500620b0060560060160023c400620b00601b00612c", - "0x63c800620b0063c200644c0023c700620b00613300612b0023c600620b", - "0x200220b00600211e00200220b0060020090023c83c73c63c53c43c300f", - "0x220b00600f00604d00200220b0060c400614e00200220b006132006033", - "0x20b00601400604d00200220b00601700615700200220b006019006154002", - "0x20b00600213100200220b00601600604700200220b00601000604d002002", - "0x705b0023ca00620b0063ca00604b0023ca00620b0060023cc0023c9006", - "0x20b0062173cb00705d0023cb00620b00600213500221700620b0063ca3c9", - "0x12c00221800620b00600200600c0023cd00620b0063cc00644b0023cc006", - "0x20b00600900615d0023cf00620b0060300060160023ce00620b006006006", - "0xf0063d200620b0063cd00644c0023d100620b00603300612b0023d0006", - "0x14e00200220b00600211e00200220b0060020090023d23d13d03cf3ce218", - "0x200220b00601900615400200220b00600f00604d00200220b0060c4006", - "0x220b00601000604d00200220b00601400604d00200220b006017006157", - "0x20b00603700644b00200220b00602f0060fa00200220b006016006047002", - "0x160023d500620b00600600612c0023d400620b00600200600c0023d3006", - "0x20b00603300612b0023d700620b00600900615d0023d600620b006030006", - "0x90023d93d83d73d63d53d400f0063d900620b0063d300644c0023d8006", - "0x15400200220b00600f00604d00200220b0060c400614e00200220b006002", - "0x200220b00601400604d00200220b00601700615700200220b006019006", - "0x620b00602c00644b00200220b00601600604700200220b00601000604d", - "0x60160023dc00620b00600600612c0023db00620b00600200600c0023da", - "0x620b00605400612b0023de00620b00600900615d0023dd00620b006065", - "0x211e0023e03df3de3dd3dc3db00f0063e000620b0063da00644c0023df", - "0x201500620b00600700612b00201400620b00600600601600200220b006", - "0x648601700620b0070100060ea00201000f01600920b006015014007383", - "0x601900636000201900620b0060170060ec00200220b00600200900201b", - "0x202900620b00601600601600200220b00601c0060fa0020c401c00720b", - "0x600211b05406500920b00602a0290071bd00202a00620b00600f00612b", - "0x20b00600200900202c00648702b00620b00711b0060ea00200220b006002", - "0xfa00202f02e00720b00602d00636000202d00620b00602b0060ec002002", - "0x620b0060300061bf00203000620b0060c400636100200220b00602e006", - "0x636100200220b00604800604d00203904800720b006033006130002033", - "0x720b00611e00613000211e00620b0060350061bf00203500620b00602f", - "0x61b200210d00620b0060390061b200200220b00603700604d002120037", - "0x20b00603c00604b00203c00620b00603a10d0071c100203a00620b006120", - "0x2a00200220b00600200900212400648800220b00703c0061c500203c006", - "0x620b00603e00602c00203e00620b00607d00602e00207d00620b006002", - "0x220b0061240060f200200220b00600200900200248900600202d00212a", - "0x612b00602c00212b00620b00612c00602b00212c00620b00600202a002", - "0x204100620b00604100602c00204100620b00612a00602f00212a00620b", - "0x4300603300200220b00600200900212d00648a04300620b007041006030", - "0x48b00220b0070450061c500204500c00720b00600c00635a00200220b006", - "0x4b04d13013104701420b00600900637100200220b00600200900212e006", - "0x5800620b00606500601600205305100720b00604d0063dd00213204f04e", - "0x580093df00213400620b0060530063de00213600620b00605400612b002", - "0x213500648c05b00620b00713300615100213305612f00920b006134136", - "0x720b00605d00613000205d00620b00605b00615200200220b006002009", - "0x6100613000206100620b0060020ef00200220b00613700604d00205f137", - "0x13900620b00605f0061b200200220b00613800604d00206413800720b006", - "0x604b00213b00620b0060671390071c100206700620b0060640061b2002", - "0x20b00600200900206900648d00220b00713b0061c500213b00620b00613b", - "0x6c00602c00206c00620b00606a00602e00206a00620b00600202a002002", - "0x690060f200200220b00600200900200248e00600202d00213c00620b006", - "0x2c00213f00620b00606f00602b00206f00620b00600202a00200220b006", - "0x20b00607100602c00207100620b00613c00602f00213c00620b00613f006", - "0x200220b00600200900214500648f14100620b007071006030002071006", - "0x4b05113013104701412a00200220b00614100603300200220b00600211e", - "0x605600612b00207600620b00612f00601600207500620b00613204f04e", - "0x200900200249000600202d00207900620b00607500604100207700620b", - "0xc00604d00200220b00614500603300200220b00600211e00200220b006", - "0x639700200220b00604f00639600200220b00613200620c00200220b006", - "0x39a00200220b00605100639900200220b00604b00639800200220b00604e", - "0x200220b00604700639500200220b00613100639b00200220b006130006", - "0x620b00614b00604b00214b00620b0060023e100214600620b006002131", - "0x705d00214a00620b00600213500207b00620b00614b14600705b00214b", - "0x20b00600200600c0020c700620b00607f00644b00207f00620b00607b14a", - "0x44c00214e00620b00605600612b00215200620b00612f006016002151006", - "0x11e00200220b00600200900214f14e15215100c00614f00620b0060c7006", - "0x39600200220b00613200620c00200220b00600c00604d00200220b006002", - "0x200220b00604b00639800200220b00604e00639700200220b00604f006", - "0x220b00613100639b00200220b00613000639a00200220b006051006399", - "0x600200600c00208300620b00613500644b00200220b006047006395002", - "0x215e00620b00605600612b00215000620b00612f00601600208500620b", - "0x200220b00600200900216115e15008500c00616100620b00608300644c", - "0x7600620b00606500601600200220b00612e0060f200200220b00600211e", - "0x7900637100207900620b00600900604100207700620b00605400612b002", - "0x8a15700720b00615c0063fb00215408716215c16315d15f16001420b006", - "0x7700612b00216b00620b00607600601600208e00620b00600200600c002", - "0x616c0d016b08e00c3fd00216c00620b00608a0063fc0020d000620b006", - "0x200900216d00649109200620b0070ed0060c80020ed16816e15b00c20b", - "0x17309400920b0061710063fe00217100620b0060920060c900200220b006", - "0x615b00600c00200220b00609600604d00200220b00617300604d002096", - "0x209d00620b00616800612b00217a00620b00616e00601600209b00620b", - "0x990d117500c20b00617c09d17a09b00c3ff00217c00620b00609400621b", - "0x40100200220b0060020090020a00064920cc00620b007176006400002176", - "0x20b00600202a00217e0a200720b00617d00640200217d00620b0060cc006", - "0x20d20cd00720b00617f00640200217f00620b0060a40064030020a4006", - "0x20b0060d200643d00218000620b00617e00643d00200220b0060cd00643c", - "0x4930ab00620b0070a80060300020a800620b0060ce18000721a0020ce006", - "0x20b00600243e00200220b0060ab00603300200220b006002009002181006", - "0xcf00943f0020c900620b0060020ef0020c800620b0060020ef0020cf006", - "0x20b0060d100601600218e00620b00617500600c0020ca00620b0060c90c8", - "0xc60020ba00620b0061570063fc0020b900620b00609900612b0020b7006", - "0xb30c60cb00c20b0060bb0ba0b90b718e0164400020bb00620b0060ca006", - "0x44200200220b00600200900218f0064940bd00620b0070b50064410020b5", - "0x20b0060a200640200200220b0060bf0060330020bf0be00720b0060bd006", - "0x64430020c300620b00600202a00200220b0060c100643c0021900c1007", - "0x20b00619c00643c0020d419c00720b00619b00640200219b00620b0060c3", - "0x640200200220b00619d00643c0021a019d00720b006190006402002002", - "0x620b0061a000643d00200220b0060d600643c00219f0d600720b0060d4", - "0x2f0020d700620b0061a10d90074440021a100620b00619f00643d0020d9", - "0x615f0063d60021a316000720b0061600063d50020db00620b0060d7006", - "0x720b0061630063d80021a515d00720b00615d0063d70021a415f00720b", - "0x1b216200720b0061620063da0021a60be00720b0060be0063d90020df163", - "0x12a0021ae15400720b0061540063dc0021ad08700720b0060870063db002", - "0x220b0061b40060470021b400620b0061ae1ad1b21a60df1a51a41a3014", - "0x20e70064950e500620b0070db0060300020db00620b0060db00602c002", - "0xbe16315d15f16001412a00200220b0060e500603300200220b006002009", - "0x60c60060160021ba00620b0060cb00600c0021b800620b006154087162", - "0x20ec00620b0061b80060410020ea00620b0060b300612b0021bd00620b", - "0x12a00200220b0060e700603300200220b00600200900200249600600202d", - "0xef00620b0060024450021bf00620b0061540871620be16315d15f160014", - "0xb300612b0021ca00620b0060c60060160021c800620b0060cb00600c002", - "0x1d600620b0060ef0064460020f800620b0061bf0060410021d400620b006", - "0x70f400617d0020f40f21c51c100c20b0061d60f81d41ca1c8016447002", - "0x1ef00720b0061eb0061f600200220b0060020090020fa0064971eb00620b", - "0x1c50060160021ba00620b0061c100600c00200220b0060fc0060330020fc", - "0xec00620b0061ef0060410020ea00620b0060f200612b0021bd00620b006", - "0xea0064490021f600620b0061bd0064480020fe00620b0061ba00636e002", - "0x900200249800600202d0021f800620b0060ec00644a00210000620b006", - "0x21f900620b0060fa00644b00200220b00600c00604d00200220b006002", - "0x60f200612b00210300620b0061c50060160022f600620b0061c100600c", - "0x20090021ff1fb1032f600c0061ff00620b0061f900644c0021fb00620b", - "0x639600200220b00615400620c00200220b00600c00604d00200220b006", - "0x39900200220b0060a200643c00200220b00616200639700200220b006087", - "0x200220b00615f00639b00200220b00615d00639a00200220b006163006", - "0x20b0060cb00600c00220600620b00618f00644b00200220b006160006395", - "0x44c00230400620b0060b300612b00230000620b0060c6006016002000006", - "0x3300200220b00600200900230530430000000c00630500620b006206006", - "0x15716315d15f16001412a00200220b0060a200643c00200220b006181006", - "0x60d10060160020fe00620b00617500600c00230700620b006154087162", - "0x21f800620b00630700604100210000620b00609900612b0021f600620b", - "0x620b00600206500231030f30e30c30b30a30930801420b0061f8006371", - "0x644d00231600620b00610000612b00231500620b0061f6006016002311", - "0x31931731631500c21900231900620b00631100611b00231700620b006310", - "0x200900231b00649931a00620b00731400644e00231431331200920b006", - "0x200220b00632000603300232031c00720b00631a00644f00200220b006", - "0x20b00631300612b00232900620b00631200601600232100620b006002065", - "0x45100232c00620b00632100611b00232b00620b00630f00645000232a006", - "0x49a32d00620b00732800645200232832632200920b00632c32b32a32900c", - "0x603300221233200720b00632d00645300200220b006002009002331006", - "0x233300620b00631c33230e30c30b30a30930801412a00200220b006212", - "0x20b00632200601600233d33b21133933733633533401420b006333006371", - "0x35a00234500620b0063360063d300221000620b00632600612b002343006", - "0x21034300c49b00234600620b00634600604b00234600c00720b00600c006", - "0x3350063d000233400620b0063340063e300234234033f00920b006346345", - "0x33700620b0063370063de00233d00620b00633d00644d00233500620b006", - "0x33b00645000221100620b00621100637300233900620b0063390063fc002", - "0x20b00600200900234800649d34700620b00734200649c00233b00620b006", - "0x621600200220b00634a00603300234a34900720b00634700649e002002", - "0x34c00620b00633d33b21133933734933533401412a00234b00620b00600c", - "0x34000612b00235200620b00633f00601600235100620b0060fe00600c002", - "0x35400620b00634b00649f00220f00620b00634c00604100235300620b006", - "0x735000617d00235034f34e34d00c20b00635420f3533523510164a0002", - "0x35700720b0063550061f600200220b0060020090023560064a135500620b", - "0x35b35700748400235b00620b00600202a00200220b00635a00603300235a", - "0x36100620b00634d00600c00236000620b00635c00648500235c00620b006", - "0x36000644c00236600620b00634f00612b00236500620b00634e006016002", - "0x35600644b00200220b00600200900236836636536100c00636800620b006", - "0x36f00620b00634e00601600236e00620b00634d00600c00236900620b006", - "0x36f36e00c00637200620b00636900644c00237100620b00634f00612b002", - "0x633d00620c00200220b00633400639500200220b006002009002372371", - "0x33900639800200220b00621100639700200220b00633b00639600200220b", - "0x639b00200220b00600c00604d00200220b00633700639900200220b006", - "0x37400620b0060fe00600c00237300620b00634800644b00200220b006335", - "0x37300644c00237800620b00634000612b00220e00620b00633f006016002", - "0xc00604d00200220b00600200900237937820e37400c00637900620b006", - "0x639700200220b00630800639500200220b00631c00620c00200220b006", - "0x39a00200220b00630b00639900200220b00630c00639800200220b00630e", - "0x37a00620b00633100644b00200220b00630900639b00200220b00630a006", - "0x32600612b00237c00620b00632200601600237b00620b0060fe00600c002", - "0x900237e37d37c37b00c00637e00620b00637a00644c00237d00620b006", - "0x4d00200220b00630900639b00200220b00630a00639a00200220b006002", - "0x200220b00630e00639700200220b00630800639500200220b00600c006", - "0x220b00630f00639600200220b00630b00639900200220b00630c006398", - "0x31200601600238000620b0060fe00600c00237f00620b00631b00644b002", - "0x38300620b00637f00644c00238200620b00631300612b00238100620b006", - "0x200220b00615f00639b00200220b00600200900238338238138000c006", - "0x220b00600c00604d00200220b00615d00639a00200220b006160006395", - "0x20b00616200639700200220b00608700639600200220b00615400620c002", - "0x60a000644b00200220b00615700639800200220b006163006399002002", - "0x238900620b0060d100601600238800620b00617500600c00238500620b", - "0x38a38938800c00620d00620b00638500644c00238a00620b00609900612b", - "0x20b00616000639500200220b00615f00639b00200220b00600200900220d", - "0x615400620c00200220b00600c00604d00200220b00615d00639a002002", - "0x15700639800200220b00616200639700200220b00608700639600200220b", - "0xc00238b00620b00616d00644b00200220b00616300639900200220b006", - "0x20b00616800612b00238d00620b00616e00601600238c00620b00615b006", - "0x600200900238f38e38d38c00c00638f00620b00638b00644c00238e006", - "0x600c00604d00200220b00612d00603300200220b00600211e00200220b", - "0x60023cc00239100620b00600213100200220b00600900604700200220b", - "0x39500620b00639239100705b00239200620b00639200604b00239200620b", - "0x39600644b00239600620b00639520c00705d00220c00620b006002135002", - "0x39900620b00606500601600239800620b00600200600c00239700620b006", - "0x39939800c00639b00620b00639700644c00239a00620b00605400612b002", - "0x20b00600c00604d00200220b00600211e00200220b00600200900239b39a", - "0x602c00644b00200220b0060c40060fa00200220b006009006047002002", - "0x239e00620b00606500601600239d00620b00600200600c00239c00620b", - "0x39f39e39d00c0063a000620b00639c00644c00239f00620b00605400612b", - "0x20b00600c00604d00200220b00600900604700200220b0060020090023a0", - "0x60160023a200620b00600200600c0023a100620b00601b00644b002002", - "0x620b0063a100644c0023a400620b00600f00612b0023a300620b006016", - "0x620b00600600601600200220b00600211e0023a53a43a33a200c0063a5", - "0x1000f01600920b00601501400738300201500620b00600700612b002014", - "0x60ec00200220b00600200900201b0064a201700620b0070100060ea002", - "0x20b00601c0060fa0020c401c00720b00601900636000201900620b006017", - "0x71bd00202a00620b00600f00612b00202900620b006016006016002002", - "0x20b00711b0060ea00200220b00600200600211b05406500920b00602a029", - "0x202d00620b00602b0060ec00200220b00600200900202c0064a302b006", - "0x60c400636100200220b00602e0060fa00202f02e00720b00602d006360", - "0x3904800720b00603300613000203300620b0060300061bf00203000620b", - "0x60350061bf00203500620b00602f00636100200220b00604800604d002", - "0x200220b00603700604d00212003700720b00611e00613000211e00620b", - "0x3a10d0071c100203a00620b0061200061b200210d00620b0060390061b2", - "0x4a400220b00703c0061c500203c00620b00603c00604b00203c00620b006", - "0x607d00602e00207d00620b00600202a00200220b006002009002124006", - "0x20090020024a500600202d00212a00620b00603e00602c00203e00620b", - "0x602b00212c00620b00600202a00200220b0061240060f200200220b006", - "0x620b00612a00602f00212a00620b00612b00602c00212b00620b00612c", - "0x12d0064a604300620b00704100603000204100620b00604100602c002041", - "0x720b00600900607f00200220b00604300603300200220b006002009002", - "0x639500213204f04e04b04d13013104701420b00612e00637100212e045", - "0x39800200220b00604d00639900200220b00613100639b00200220b006047", - "0x200220b00604f00639600200220b00604e00639700200220b00604b006", - "0x20b00605400612b00205600620b00606500601600200220b00613200620c", - "0x5100920b0060581330560093d400205800620b0061300063d3002133006", - "0x200220b0060020090021340064a713600620b00712f00615100212f053", - "0x13500604d00205d13500720b00605b00613000205b00620b006136006152", - "0x206105f00720b00613700613000213700620b0060020ef00200220b006", - "0x20b00613800613000213800620b00605d0061b200200220b00605f00604d", - "0x13000206700620b0060610061b200200220b00606400604d002139064007", - "0x20b0061390061b200200220b00613b00604d00206913b00720b006067006", - "0x213c00620b00606c06a0071c100206c00620b0060690061b200206a006", - "0x200900206f0064a800220b00713c0061c500213c00620b00613c00604b", - "0x2c00207100620b00613f00602e00213f00620b00600202a00200220b006", - "0xf200200220b0060020090020024a900600202d00214100620b006071006", - "0x7500620b00614500602b00214500620b00600202a00200220b00606f006", - "0x7600602c00207600620b00614100602f00214100620b00607500602c002", - "0x7700620b00607700602c00207700620b00607600602f00207600620b006", - "0x211e00200220b0060020090021460064aa07900620b007077006030002", - "0x14a07b14b01420b00604500637100200220b00607900603300200220b006", - "0x20b00600200600c00208314f00720b0060c70063fb00214e1521510c707f", - "0x3fc00215d00620b00605300612b00215f00620b006051006016002160006", - "0x16115e15008500c20b00616315d15f16000c3fd00216300620b006083006", - "0x60c900200220b0060020090021620064ab15c00620b0071610060c8002", - "0x615700604d00208a15715400920b0060870063fe00208700620b00615c", - "0x601600208e00620b00608500600c00200220b00608a00604d00200220b", - "0x620b00615400621b0020d000620b00615e00612b00216b00620b006150", - "0x70ed0064000020ed16816e15b00c20b00616c0d016b08e00c3ff00216c", - "0x17100620b00609200640100200220b00600200900216d0064ac09200620b", - "0x9600640300209600620b00600202a00217309400720b006171006402002", - "0x220b0060d100643c0020990d100720b00617500640200217500620b006", - "0x9b00721a00217a00620b00609900643d00209b00620b00617300643d002", - "0x600200900217c0064ad09d00620b00717600603000217600620b00617a", - "0x60020ef0020cc00620b00600243e00200220b00609d00603300200220b", - "0xa200620b00617d0a00cc00943f00217d00620b0060020ef0020a000620b", - "0x16800612b0020a800620b00616e0060160020d200620b00615b00600c002", - "0xab00620b0060a20060c60020ce00620b00614f0063fc00218000620b006", - "0x70cd0064410020cd17f0a417e00c20b0060ab0ce1800a80d2016440002", - "0xc800720b00618100644200200220b0060020090020cf0064ae18100620b", - "0x643c0020cb0ca00720b00609400640200200220b0060c90060330020c9", - "0x20b300620b0060c60064430020c600620b00600202a00200220b0060ca", - "0x60cb00640200200220b0060b500643c00218e0b500720b0060b3006402", - "0xbb0ba00720b00618e00640200200220b0060b700643c0020b90b700720b", - "0x60bb00643d00218f00620b0060b900643d00200220b0060ba00643c002", - "0xbf00620b0060bd00602f0020bd00620b0060be18f0074440020be00620b", - "0x3d700219007b00720b00607b0063d60020c114b00720b00614b0063d5002", - "0xc80063d900219b07f00720b00607f0063d80020c314a00720b00614a006", - "0x20b0061520063db0020d415100720b0061510063da00219c0c800720b006", - "0x19c19b0c31900c101412a0021a014e00720b00614e0063dc00219d152007", - "0x20b0060bf00602c00200220b0060d60060470020d600620b0061a019d0d4", - "0x200220b0060020090020d70064af19f00620b0070bf0060300020bf006", - "0x620b00614e1521510c807f14a07b14b01412a00200220b00619f006033", - "0x612b0020db00620b0060a40060160021a100620b00617e00600c0020d9", - "0x20024b000600202d0021a400620b0060d90060410021a300620b00617f", - "0xc807f14a07b14b01412a00200220b0060d700603300200220b006002009", - "0x20b00617e00600c0020df00620b0060024450021a500620b00614e152151", - "0x410020e700620b00617f00612b0020e500620b0060a40060160021b4006", - "0xe70e51b40164470021ba00620b0060df0064460021b800620b0061a5006", - "0xea0064b11bd00620b0071ae00617d0021ae1ad1b21a600c20b0061ba1b8", - "0x61bf0060330021bf0ec00720b0061bd0061f600200220b006002009002", - "0x12b0020db00620b0061b20060160021a100620b0061a600600c00200220b", - "0x20b0061a100636e0021a400620b0060ec0060410021a300620b0061ad006", - "0x44a0021c500620b0061a30064490021c100620b0060db0064480020ef006", - "0x4d00200220b0060020090020024b200600202d0020f200620b0061a4006", - "0x620b0061a600600c0020f400620b0060ea00644b00200220b00600c006", - "0x644c0021d400620b0061ad00612b0021ca00620b0061b20060160021c8", - "0x604d00200220b0060020090020f81d41ca1c800c0060f800620b0060f4", - "0x39700200220b00615200639600200220b00614e00620c00200220b00600c", - "0x200220b00607f00639900200220b00609400643c00200220b006151006", - "0x220b00614b00639500200220b00607b00639b00200220b00614a00639a", - "0xa40060160021eb00620b00617e00600c0021d600620b0060cf00644b002", - "0xfc00620b0061d600644c0021ef00620b00617f00612b0020fa00620b006", - "0x200220b00617c00603300200220b0060020090020fc1ef0fa1eb00c006", - "0x620b00614e15215114f07f14a07b14b01412a00200220b00609400643c", - "0x612b0021c100620b00616e0060160020ef00620b00615b00600c0020fe", - "0x1420b0060f20063710020f200620b0060fe0060410021c500620b006168", - "0x61c100601600220600620b0060020650021ff1fb1032f61f91f81001f6", - "0x230800620b0061ff00644d00230700620b0061c500612b00230500620b", - "0x30430000000920b00630930830730500c21900230900620b00620600611b", - "0x644f00200220b00600200900230b0064b330a00620b00730400644e002", - "0x30f00620b00600206500200220b00630e00603300230e30c00720b00630a", - "0x1fb00645000231400620b00630000612b00231300620b006000006016002", - "0x631631531431300c45100231600620b00630f00611b00231500620b006", - "0x60020090023190064b431700620b00731200645200231231131000920b", - "0x12a00200220b00631b00603300231b31a00720b00631700645300200220b", - "0x1420b00631c00637100231c00620b00630c31a1032f61f91f81001f6014", - "0x31100612b00233200620b00631000601600232b32a329328326322321320", - "0xc00720b00600c00635a00233300620b0063260063de00221200620b006", - "0x32c00920b00633433321233200c4b500233400620b00633400604b002334", - "0x3d300232100620b0063210063d000232000620b0063200063e300233132d", - "0x20b0063280063fc00232b00620b00632b00644d00232200620b006322006", - "0x4b600232a00620b00632a00645000232900620b006329006373002328006", - "0x63350064b800200220b0060020090023360064b733500620b007331006", - "0x221100620b00600c0064b900200220b00633900603300233933700720b", - "0x20b0060ef00600c00233b00620b00632b32a32932833732232132001412a", - "0x4100234500620b00632d00612b00221000620b00632c006016002343006", - "0x3452103430164bb00234700620b0062110064ba00234600620b00633b006", - "0x3490064bc34800620b00734200617d00234234033f33d00c20b006347346", - "0x634b00603300234b34a00720b0063480061f600200220b006002009002", - "0x48500234d00620b00634c34a00748400234c00620b00600202a00200220b", - "0x20b00633f00601600234f00620b00633d00600c00234e00620b00634d006", - "0xc00635200620b00634e00644c00235100620b00634000612b002350006", - "0xc00235300620b00634900644b00200220b00600200900235235135034f", - "0x20b00634000612b00235400620b00633f00601600220f00620b00633d006", - "0x600200900235635535420f00c00635600620b00635300644c002355006", - "0x32a00639600200220b00632b00620c00200220b00632000639500200220b", - "0x604d00200220b00632800639800200220b00632900639700200220b006", - "0x44b00200220b00632100639b00200220b00632200639a00200220b00600c", - "0x20b00632c00601600235a00620b0060ef00600c00235700620b006336006", - "0xc00636000620b00635700644c00235c00620b00632d00612b00235b006", - "0x620c00200220b00600c00604d00200220b00600200900236035c35b35a", - "0x39800200220b00610300639700200220b0061f600639500200220b00630c", - "0x200220b0061f800639a00200220b0061f900639900200220b0062f6006", - "0x20b0060ef00600c00236100620b00631900644b00200220b00610000639b", - "0x44c00236800620b00631100612b00236600620b006310006016002365006", - "0x39a00200220b00600200900236936836636500c00636900620b006361006", - "0x200220b00600c00604d00200220b00610000639b00200220b0061f8006", - "0x220b0062f600639800200220b00610300639700200220b0061f6006395", - "0x20b00630b00644b00200220b0061fb00639600200220b0061f9006399002", - "0x12b00237100620b00600000601600236f00620b0060ef00600c00236e006", - "0x37337237136f00c00637300620b00636e00644c00237200620b006300006", - "0x220b00614b00639500200220b00607b00639b00200220b006002009002", - "0x20b00614e00620c00200220b00600c00604d00200220b00614a00639a002", - "0x607f00639900200220b00615100639700200220b006152006396002002", - "0x600c00237400620b00616d00644b00200220b00614f00639800200220b", - "0x620b00616800612b00237800620b00616e00601600220e00620b00615b", - "0x20b00600200900237a37937820e00c00637a00620b00637400644c002379", - "0x614a00639a00200220b00614b00639500200220b00607b00639b002002", - "0x15200639600200220b00614e00620c00200220b00600c00604d00200220b", - "0x639900200220b00614f00639800200220b00615100639700200220b006", - "0x37c00620b00608500600c00237b00620b00616200644b00200220b00607f", - "0x37b00644c00237e00620b00615e00612b00237d00620b006150006016002", - "0x600211e00200220b00600200900237f37e37d37c00c00637f00620b006", - "0x4500604700200220b00600c00604d00200220b00614600603300200220b", - "0x604b00238100620b0060024bd00238000620b00600213100200220b006", - "0x620b00600213500238200620b00638138000705b00238100620b006381", - "0xc00238800620b00638500644b00238500620b00638238300705d002383", - "0x20b00605300612b00238a00620b00605100601600238900620b006002006", - "0x600200900238b20d38a38900c00638b00620b00638800644c00220d006", - "0x604500604700200220b00600c00604d00200220b00600211e00200220b", - "0x1600238d00620b00600200600c00238c00620b00613400644b00200220b", - "0x20b00638c00644c00238f00620b00605300612b00238e00620b006051006", - "0x220b00600211e00200220b00600200900239138f38e38d00c006391006", - "0x20b00600900604700200220b00600c00604d00200220b00612d006033002", - "0x639500604b00239500620b0060023cc00239200620b006002131002002", - "0x239600620b00600213500220c00620b00639539200705b00239500620b", - "0x200600c00239800620b00639700644b00239700620b00620c39600705d", - "0x39b00620b00605400612b00239a00620b00606500601600239900620b006", - "0x220b00600200900239c39b39a39900c00639c00620b00639800644c002", - "0x220b00600900604700200220b00600c00604d00200220b00600211e002", - "0x600200600c00239d00620b00602c00644b00200220b0060c40060fa002", - "0x23a000620b00605400612b00239f00620b00606500601600239e00620b", - "0x200220b0060020090023a13a039f39e00c0063a100620b00639d00644c", - "0x620b00601b00644b00200220b00600900604700200220b00600c00604d", - "0x612b0023a400620b0060160060160023a300620b00600200600c0023a2", - "0x23a63a53a43a300c0063a600620b0063a200644c0023a500620b00600f", - "0x620b00600700612b00201400620b00600600601600200220b00600211e", - "0x1700620b0070100060ea00201000f01600920b006015014007383002015", - "0x636000201900620b0060170060ec00200220b00600200900201b0064be", - "0x620b00601600601600200220b00601c0060fa0020c401c00720b006019", - "0x11b05406500920b00602a0290071bd00202a00620b00600f00612b002029", - "0x200900202c0064bf02b00620b00711b0060ea00200220b006002006002", - "0x2f02e00720b00602d00636000202d00620b00602b0060ec00200220b006", - "0x60300061bf00203000620b0060c400636100200220b00602e0060fa002", - "0x200220b00604800604d00203904800720b00603300613000203300620b", - "0x611e00613000211e00620b0060350061bf00203500620b00602f006361", - "0x210d00620b0060390061b200200220b00603700604d00212003700720b", - "0x3c00604b00203c00620b00603a10d0071c100203a00620b0061200061b2", - "0x220b0060020090021240064c000220b00703c0061c500203c00620b006", - "0x603e00602c00203e00620b00607d00602e00207d00620b00600202a002", - "0x61240060f200200220b0060020090020024c100600202d00212a00620b", - "0x602c00212b00620b00612c00602b00212c00620b00600202a00200220b", - "0x620b00604100602c00204100620b00612a00602f00212a00620b00612b", - "0x11e00200220b00600200900212d0064c204300620b007041006030002041", - "0x12e04501420b00600900637100200220b00604300603300200220b006002", - "0x600200600c00213204f00720b0061300063fb00204e04b04d130131047", - "0x213600620b00605400612b00205800620b00606500601600213300620b", - "0x12f05305100c20b00613413605813300c3fd00213400620b0061320063fc", - "0xc900200220b0060020090021350064c305b00620b0070560060c8002056", - "0x6100604d00206105f13700920b00605d0063fe00205d00620b00605b006", - "0x206400620b00613805f0071c100213800620b00600200000200220b006", - "0x20090021390064c400220b0070640061c500206400620b00606400604b", - "0x213c00620b00605300601600206c00620b00605100600c00200220b006", - "0x13c06c00c3ff00213f00620b00613700621b00206f00620b00612f00612b", - "0x1410064c507100620b00706a00640000206a06913b06700c20b00613f06f", - "0x20b00614500640200214500620b00607100640100200220b006002009002", - "0x644300207700620b00600202a00200220b00607500643c002076075007", - "0x20b00614600643c00214b14600720b00607900640200207900620b006077", - "0x721a00207f00620b00614b00643d00214a00620b00607600643d002002", - "0x20b0060c700602c0020c700620b00607b00602f00207b00620b00607f14a", - "0x200220b0060020090021520064c615100620b0070c70060300020c7006", - "0x20b00613b00601600214e00620b00606700600c00200220b006151006033", - "0x60020090020024c700600202d00208300620b00606900612b00214f006", - "0xc00604d00200220b00604500639500200220b00615200603300200220b", - "0x639700200220b00604b00639600200220b00604e00620c00200220b006", - "0x39a00200220b00613100639900200220b00604f00639800200220b00604d", - "0x208500620b00600213100200220b00612e00639b00200220b006047006", - "0x615008500705b00215000620b00615000604b00215000620b0060024c8", - "0x216000620b00615e16100705d00216100620b00600213500215e00620b", - "0x613b00601600215d00620b00606700600c00215f00620b00616000644b", - "0x616200620b00615f00644c00215c00620b00606900612b00216300620b", - "0x4d00200220b00604500639500200220b00600200900216215c16315d00c", - "0x200220b00604b00639600200220b00604e00620c00200220b00600c006", - "0x220b00613100639900200220b00604f00639800200220b00604d006397", - "0x20b00614100644b00200220b00612e00639b00200220b00604700639a002", - "0x12b00215700620b00613b00601600215400620b00606700600c002087006", - "0x15b08a15715400c00615b00620b00608700644c00208a00620b006069006", - "0x220b00613700634900200220b0061390060f200200220b006002009002", - "0x12f00612b00214f00620b00605300601600214e00620b00605100600c002", - "0x216e00620b00604e04b04d04f13104712e04501412a00208300620b006", - "0x20b0060d00063fb00216d09216c0d016b08e0ed16801420b00616e006371", - "0x217600620b00614f00644800209900620b00614e00636e002094171007", - "0x17609900c3fd00217a00620b0060940063fc00209b00620b006083006449", - "0x63d000216800620b0061680063e30020d117509617300c20b00617a09b", - "0x620b00616b0063de00208e00620b00608e0063d30020ed00620b0060ed", - "0x645000216c00620b00616c00637300216d00620b00616d00644d00216b", - "0x620b0070d10060c800217100620b0061710063fc00209200620b006092", - "0x3fe0020cc00620b00609d0060c900200220b00600200900217c0064c909d", - "0x60a200604d00200220b00617d00604d0020a217d0a000920b0060cc006", - "0x12b0020a800620b0060960060160020d200620b00617300600c00200220b", - "0x1800a80d200c3ff0020ce00620b0060a000621b00218000620b006175006", - "0x21810064ca0ab00620b0070cd0064000020cd17f0a417e00c20b0060ce", - "0x720b0060cf0064020020cf00620b0060ab00640100200220b006002009", - "0x64020020cb00620b0060ca0064030020ca00620b00600202a0020c90c8", - "0x620b0060c900643d00200220b0060c600643c0020b30c600720b0060cb", - "0x300020b500620b0060b718e00721a0020b700620b0060b300643d00218e", - "0x60b900603300200220b0060020090020ba0064cb0b900620b0070b5006", - "0x60020ef0020bd00620b0060020ef0020bb00620b00600243e00200220b", - "0x620b00617e00600c0020be00620b00618f0bd0bb00943f00218f00620b", - "0x63fc0020d400620b00617f00612b00219c00620b0060a400601600219b", - "0x19d0d419c19b0164400021a000620b0060be0060c600219d00620b006171", - "0x219f0064cc0d600620b0070c30064410020c31900c10bf00c20b0061a0", - "0x20b0060d90060330020d90d700720b0060d600644200200220b006002009", - "0x202a00200220b0061a100643c0020db1a100720b0060c8006402002002", - "0x1a500720b0061a40064020021a400620b0061a30064430021a300620b006", - "0x643c0021b21a600720b0060db00640200200220b0061a500643c0020df", - "0x220b0061ad00643c0021ae1ad00720b0060df00640200200220b0061a6", - "0xe50074440020e700620b0061ae00643d0020e500620b0061b200643d002", - "0x720b0061680063d50021b800620b0061b400602f0021b400620b0060e7", - "0xea08e00720b00608e0063d70021bd0ed00720b0060ed0063d60021ba168", - "0x3da0021bf0d700720b0060d70063d90020ec16b00720b00616b0063d8002", - "0x16d0063dc0021c109200720b0060920063db0020ef16c00720b00616c006", - "0xf200620b0061c51c10ef1bf0ec0ea1bd1ba01412a0021c516d00720b006", - "0x71b80060300021b800620b0061b800602c00200220b0060f2006047002", - "0x200220b0060f400603300200220b0060020090021c80064cd0f400620b", - "0x20b0060bf00600c0021ca00620b00616d09216c0d716b08e0ed16801412a", - "0x410021d600620b00619000612b0020f800620b0060c10060160021d4006", - "0x3300200220b0060020090020024ce00600202d0021eb00620b0061ca006", - "0xfa00620b00616d09216c0d716b08e0ed16801412a00200220b0061c8006", - "0x60c10060160021f800620b0060bf00600c0021ef00620b006002445002", - "0x210300620b0060fa0060410022f600620b00619000612b0021f900620b", - "0xfe0fc00c20b0061fb1032f61f91f80164470021fb00620b0061ef006446", - "0x200220b0060020090022060064cf1ff00620b00710000617d0021001f6", - "0x60fc00600c00200220b00630000603300230000000720b0061ff0061f6", - "0x21d600620b0061f600612b0020f800620b0060fe0060160021d400620b", - "0x60f800644800230400620b0061d400636e0021eb00620b006000006041", - "0x230800620b0061eb00644a00230700620b0061d600644900230500620b", - "0x44b00200220b00600c00604d00200220b0060020090020024d000600202d", - "0x20b0060fe00601600230a00620b0060fc00600c00230900620b006206006", - "0xc00630e00620b00630900644c00230c00620b0061f600612b00230b006", - "0x620c00200220b00600c00604d00200220b00600200900230e30c30b30a", - "0x43c00200220b00616c00639700200220b00609200639600200220b00616d", - "0x200220b00608e00639a00200220b00616b00639900200220b0060c8006", - "0x620b00619f00644b00200220b00616800639500200220b0060ed00639b", - "0x612b00231100620b0060c100601600231000620b0060bf00600c00230f", - "0x231331231131000c00631300620b00630f00644c00231200620b006190", - "0x200220b0060c800643c00200220b0060ba00603300200220b006002009", - "0x20b00617e00600c00231400620b00616d09216c17116b08e0ed16801412a", - "0x4100230700620b00617f00612b00230500620b0060a4006016002304006", - "0x20b00630700612b00231900620b00630500601600230800620b006314006", - "0x620b00731700636600231731631500920b00631a31900736500231a006", - "0x4d200232000620b00631b00636800200220b00600200900231c0064d131b", - "0x620b00632000621b00232800620b00630400600c00232100620b006002", - "0x32632200720b00632a3293280094d300232a00620b00632100621b002329", - "0x636800200220b00600200900232c0064d432b00620b007326006366002", - "0x32d00720b00632d00635b00233100620b0060023f700232d00620b00632b", - "0x33300620b00621233133200943f00221200c00720b00600c00635a002332", - "0x632200600c00233d33b21133933733633533401420b006308006371002", - "0x234600620b00631600612b00234500620b00631500601600221000620b", - "0x34521001644000234800620b0063330060c600234700620b0063390063fc", - "0x64d534900620b00734300644100234334234033f00c20b006348347346", - "0x34c00603300234c34b00720b00634900644200200220b00600200900234a", - "0x34b33733633533401412a00234d00620b00600c32d0074d600200220b006", - "0x634000601600235300620b00633f00600c00234e00620b00633d33b211", - "0x235500620b00634e00604100235400620b00634200612b00220f00620b", - "0x35034f00c20b00635635535420f3530164d800235600620b00634d0064d7", - "0x200220b00600200900235a0064d935700620b00735200617d002352351", - "0x20b00600202a00200220b00635c00603300235c35b00720b0063570061f6", - "0x236500620b00636100648500236100620b00636035b007484002360006", - "0x635100612b00236800620b00635000601600236600620b00634f00600c", - "0x200900236e36936836600c00636e00620b00636500644c00236900620b", - "0x237100620b00634f00600c00236f00620b00635a00644b00200220b006", - "0x636f00644c00237300620b00635100612b00237200620b006350006016", - "0x633400639500200220b00600200900237437337237100c00637400620b", - "0x21100639700200220b00633b00639600200220b00633d00620c00200220b", - "0x639a00200220b00633700639900200220b00632d00634900200220b006", - "0x44b00200220b00600c00604d00200220b00633500639b00200220b006336", - "0x20b00634000601600237800620b00633f00600c00220e00620b00634a006", - "0xc00637b00620b00620e00644c00237a00620b00634200612b002379006", - "0x604700200220b00600c00604d00200220b00600200900237b37a379378", - "0x37d00620b00632200600c00237c00620b00632c00644b00200220b006308", - "0x37c00644c00237f00620b00631600612b00237e00620b006315006016002", - "0x30800604700200220b00600200900238037f37e37d00c00638000620b006", - "0xc00238100620b00631c00644b00200220b00600c00604d00200220b006", - "0x20b00631600612b00238300620b00631500601600238200620b006304006", - "0x600200900238838538338200c00638800620b00638100644c002385006", - "0xc00604d00200220b0060ed00639b00200220b00616800639500200220b", - "0x639600200220b00616d00620c00200220b00608e00639a00200220b006", - "0x39800200220b00616b00639900200220b00616c00639700200220b006092", - "0x620b00617e00600c00238900620b00618100644b00200220b006171006", - "0x644c00238b00620b00617f00612b00220d00620b0060a400601600238a", - "0x639500200220b00600200900238c38b20d38a00c00638c00620b006389", - "0x39a00200220b00600c00604d00200220b0060ed00639b00200220b006168", - "0x200220b00609200639600200220b00616d00620c00200220b00608e006", - "0x220b00616b00639900200220b00617100639800200220b00616c006397", - "0x9600601600238e00620b00617300600c00238d00620b00617c00644b002", - "0x39200620b00638d00644c00239100620b00617500612b00238f00620b006", - "0x200220b00604500639500200220b00600200900239239138f38e00c006", - "0x220b00604700639a00200220b00600c00604d00200220b00612e00639b", - "0x20b00604d00639700200220b00604b00639600200220b00604e00620c002", - "0x613500644b00200220b00613100639900200220b00604f006398002002", - "0x239600620b00605300601600220c00620b00605100600c00239500620b", - "0x39739620c00c00639800620b00639500644c00239700620b00612f00612b", - "0x220b00612d00603300200220b00600211e00200220b006002009002398", - "0x620b00600213100200220b00600900604700200220b00600c00604d002", - "0x39900705b00239a00620b00639a00604b00239a00620b0060023cc002399", - "0x620b00639b39c00705d00239c00620b00600213500239b00620b00639a", - "0x601600239f00620b00600200600c00239e00620b00639d00644b00239d", - "0x620b00639e00644c0023a100620b00605400612b0023a000620b006065", - "0x200220b00600211e00200220b0060020090023a23a13a039f00c0063a2", - "0x220b0060c40060fa00200220b00600900604700200220b00600c00604d", - "0x650060160023a400620b00600200600c0023a300620b00602c00644b002", - "0x3a700620b0063a300644c0023a600620b00605400612b0023a500620b006", - "0x200220b00600c00604d00200220b0060020090023a73a63a53a400c006", - "0x20b00600200600c0023a800620b00601b00644b00200220b006009006047", - "0x44c0023ab00620b00600f00612b0023aa00620b0060160060160023a9006", - "0x1600200220b00600211e0023ac3ab3aa3a900c0063ac00620b0063a8006", - "0x601501400738300201500620b00600700612b00201400620b006006006", - "0x600200900201b0064da01700620b0070100060ea00201000f01600920b", - "0x20c401c00720b00601900636000201900620b0060170060ec00200220b", - "0x20b00600f00612b00202900620b00601600601600200220b00601c0060fa", - "0x200220b00600200600211b05406500920b00602a0290071bd00202a006", - "0x2b0060ec00200220b00600200900202c0064db02b00620b00711b0060ea", - "0x220b00602e0060fa00202f02e00720b00602d00636000202d00620b006", - "0x3300613000203300620b0060300061bf00203000620b0060c4006361002", - "0x3500620b00602f00636100200220b00604800604d00203904800720b006", - "0x604d00212003700720b00611e00613000211e00620b0060350061bf002", - "0x3a00620b0061200061b200210d00620b0060390061b200200220b006037", - "0x61c500203c00620b00603c00604b00203c00620b00603a10d0071c1002", - "0x7d00620b00600202a00200220b0060020090021240064dc00220b00703c", - "0x600202d00212a00620b00603e00602c00203e00620b00607d00602e002", - "0x20b00600202a00200220b0061240060f200200220b0060020090020024dd", - "0x2f00212a00620b00612b00602c00212b00620b00612c00602b00212c006", - "0x20b00704100603000204100620b00604100602c00204100620b00612a006", - "0x603300200220b00600211e00200220b00600200900212d0064de043006", - "0x204e04b04d13013104712e04501420b00600900637100200220b006043", - "0x6500601600213300620b00600200600c00213204f00720b0061300063fb", - "0x13400620b0061320063fc00213600620b00605400612b00205800620b006", - "0x20b0070560060c800205612f05305100c20b00613413605813300c3fd002", - "0x205d00620b00605b0060c900200220b0060020090021350064df05b006", - "0x6100604d00200220b00605f00604d00206105f13700920b00605d0063fe", - "0x206900620b00605300601600213b00620b00605100600c00200220b006", - "0x6913b00c3ff00206c00620b00613700621b00206a00620b00612f00612b", - "0x6f0064e013c00620b00706700640000206713906413800c20b00606c06a", - "0x20b00613f00640200213f00620b00613c00640100200220b006002009002", - "0x40200207500620b00614500640300214500620b00600202a002141071007", - "0x20b00614100643d00200220b00607600643c00207707600720b006075006", - "0x207900620b00614b14600721a00214b00620b00607700643d002146006", - "0x7b00603300200220b00600200900214a0064e107b00620b007079006030", - "0x20ef0020c700620b0060020ef00207f00620b00600243e00200220b006", - "0x20b00613800600c00215200620b0061510c707f00943f00215100620b006", - "0x3fc00216100620b00613900612b00215e00620b006064006016002150006", - "0x16115e15001644000215f00620b0061520060c600216000620b00604f006", - "0x1630064e215d00620b00708500644100208508314f14e00c20b00615f160", - "0x616200603300216215c00720b00615d00644200200220b006002009002", - "0x2a00200220b00608700643c00215408700720b00607100640200200220b", - "0x720b00608a00640200208a00620b00615700644300215700620b006002", - "0x43c0020ed16800720b00615400640200200220b00615b00643c00216e15b", - "0x20b00608e00643c00216b08e00720b00616e00640200200220b006168006", - "0x744400209200620b00616b00643d00216c00620b0060ed00643d002002", - "0x20b0060450063d500216d00620b0060d000602f0020d000620b00609216c", - "0x4700720b0060470063d700209412e00720b00612e0063d6002171045007", - "0x217515c00720b00615c0063d900209613100720b0061310063d8002173", - "0x63dc00209904b00720b00604b0063db0020d104d00720b00604d0063da", - "0x620b0061760990d117509617309417101412a00217604e00720b00604e", - "0x16d00603000216d00620b00616d00602c00200220b00609b00604700209b", - "0x220b00617a00603300200220b00600200900209d0064e317a00620b007", - "0x614e00600c00217c00620b00604e04b04d15c13104712e04501412a002", - "0x217d00620b00608300612b0020a000620b00614f0060160020cc00620b", - "0x200220b0060020090020024e400600202d0020a200620b00617c006041", - "0x620b00604e04b04d15c13104712e04501412a00200220b00609d006033", - "0x14f00601600218000620b00614e00600c0020a400620b00600244500217e", - "0x18100620b00617e0060410020ab00620b00608300612b0020ce00620b006", - "0x17f00c20b0060cf1810ab0ce1800164470020cf00620b0060a4006446002", - "0x220b0060020090020c90064e50c800620b0070a800617d0020a80d20cd", - "0x17f00600c00200220b0060cb0060330020cb0ca00720b0060c80061f6002", - "0x17d00620b0060d200612b0020a000620b0060cd0060160020cc00620b006", - "0xa00064480020c600620b0060cc00636e0020a200620b0060ca006041002", - "0x18e00620b0060a200644a0020b500620b00617d0064490020b300620b006", - "0x200220b00600c00604d00200220b0060020090020024e600600202d002", - "0x60cd0060160020b900620b00617f00600c0020b700620b0060c900644b", - "0x60bd00620b0060b700644c0020bb00620b0060d200612b0020ba00620b", - "0x20c00200220b00600c00604d00200220b0060020090020bd0bb0ba0b900c", - "0x200220b00604d00639700200220b00604b00639600200220b00604e006", - "0x220b00604700639a00200220b00613100639900200220b00607100643c", - "0x20b00616300644b00200220b00604500639500200220b00612e00639b002", - "0x12b0020bf00620b00614f0060160020be00620b00614e00600c00218f006", - "0x1900c10bf0be00c00619000620b00618f00644c0020c100620b006083006", - "0x220b00607100643c00200220b00614a00603300200220b006002009002", - "0x613800600c0020c300620b00604e04b04d04f13104712e04501412a002", - "0x20b500620b00613900612b0020b300620b0060640060160020c600620b", - "0x60b500612b00219d00620b0060b300601600218e00620b0060c3006041", - "0x20b0070d40063660020d419c19b00920b0061a019d0073650021a000620b", - "0x20d700620b0060d600636800200220b00600200900219f0064e70d6006", - "0x20b0060d700621b0021a300620b0060c600600c0020d900620b0060024d2", - "0x1a100720b0061a51a41a30094d30021a500620b0060d900621b0021a4006", - "0x36800200220b0060020090021a60064e80df00620b0070db0063660020db", - "0x720b0061b200635b0021ad00620b0060020000021b200620b0060df006", - "0x620b0061b41ad1ae00943f0021b400c00720b00600c00635a0021ae1b2", - "0x1a100600c0020ef1bf0ec0ea1bd1ba1b80e701420b00618e0063710020e5", - "0x1d400620b00619c00612b0021ca00620b00619b0060160021c800620b006", - "0x1c80164400021d600620b0060e50060c60020f800620b0060ea0063fc002", - "0x4e91eb00620b0070f40064410020f40f21c51c100c20b0061d60f81d41ca", - "0x60330020fc1ef00720b0061eb00644200200220b0060020090020fa006", - "0x1bd1ba1b80e701412a0020fe00620b00600c1b20074ea00200220b0060fc", - "0x1c500601600210300620b0061c100600c0021f600620b0060ef1bf0ec1ef", - "0x20600620b0061f60060410021ff00620b0060f200612b0021fb00620b006", - "0x10000c20b0060002061ff1fb10301621500200000620b0060fe0064eb002", - "0x220b0060020090023040064ec30000620b0072f600617d0022f61f91f8", - "0x600202a00200220b00630700603300230730500720b0063000061f6002", - "0x30a00620b00630900648500230900620b00630830500748400230800620b", - "0x1f900612b00230c00620b0061f800601600230b00620b00610000600c002", - "0x900230f30e30c30b00c00630f00620b00630a00644c00230e00620b006", - "0x31100620b00610000600c00231000620b00630400644b00200220b006002", - "0x31000644c00231300620b0061f900612b00231200620b0061f8006016002", - "0xe700639500200220b00600200900231431331231100c00631400620b006", - "0x639700200220b0061bf00639600200220b0060ef00620c00200220b006", - "0x39a00200220b0061bd00639900200220b0061b200634900200220b0060ec", - "0x200220b00600c00604d00200220b0061b800639b00200220b0061ba006", - "0x61c500601600231600620b0061c100600c00231500620b0060fa00644b", - "0x631a00620b00631500644c00231900620b0060f200612b00231700620b", - "0x4700200220b00600c00604d00200220b00600200900231a31931731600c", - "0x620b0061a100600c00231b00620b0061a600644b00200220b00618e006", - "0x644c00232100620b00619c00612b00232000620b00619b00601600231c", - "0x604700200220b00600200900232232132031c00c00632200620b00631b", - "0x232600620b00619f00644b00200220b00600c00604d00200220b00618e", - "0x619c00612b00232900620b00619b00601600232800620b0060c600600c", - "0x200900232b32a32932800c00632b00620b00632600644c00232a00620b", - "0x604d00200220b00612e00639b00200220b00604500639500200220b006", - "0x39600200220b00604e00620c00200220b00604700639a00200220b00600c", - "0x200220b00613100639900200220b00604d00639700200220b00604b006", - "0x20b00613800600c00232c00620b00606f00644b00200220b00604f006398", - "0x44c00233200620b00613900612b00233100620b00606400601600232d006", - "0x39500200220b00600200900221233233132d00c00621200620b00632c006", - "0x200220b00600c00604d00200220b00612e00639b00200220b006045006", - "0x220b00604b00639600200220b00604e00620c00200220b00604700639a", - "0x20b00613100639900200220b00604f00639800200220b00604d006397002", - "0x601600233400620b00605100600c00233300620b00613500644b002002", - "0x620b00633300644c00233600620b00612f00612b00233500620b006053", - "0x200220b00600211e00200220b00600200900233733633533400c006337", - "0x220b00600900604700200220b00600c00604d00200220b00612d006033", - "0x20b00621100604b00221100620b0060023cc00233900620b006002131002", - "0x5d00233d00620b00600213500233b00620b00621133900705b002211006", - "0x600200600c00234000620b00633f00644b00233f00620b00633b33d007", - "0x221000620b00605400612b00234300620b00606500601600234200620b", - "0x200220b00600200900234521034334200c00634500620b00634000644c", - "0x200220b00600900604700200220b00600c00604d00200220b00600211e", - "0x20b00600200600c00234600620b00602c00644b00200220b0060c40060fa", - "0x44c00234900620b00605400612b00234800620b006065006016002347006", - "0x4d00200220b00600200900234a34934834700c00634a00620b006346006", - "0x34b00620b00601b00644b00200220b00600900604700200220b00600c006", - "0xf00612b00234d00620b00601600601600234c00620b00600200600c002", - "0x7500234f34e34d34c00c00634f00620b00634b00644c00234e00620b006", - "0x11e00200220b00600213900201000620b00600207500201600620b006002", - "0x1900620b00600700612b00201b00620b00600600601600200220b006002", - "0x4ed01c00620b0070170060ea00201701501400920b00601901b007383002", - "0x6500636000206500620b00601c0060ec00200220b0060020090020c4006", - "0x2c00620b00601400601600200220b0060540060fa00211b05400720b006", - "0x202b02a02900920b00602d02c0071bd00202d00620b00601500612b002", - "0x600200900202f0064ee02e00620b00702b0060ea00200220b006002006", - "0x204803300720b00603000636000203000620b00602e0060ec00200220b", - "0x20b0060390061bf00203900620b00611b00636100200220b0060330060fa", - "0x36100200220b00611e00604d00203711e00720b006035006130002035006", - "0x20b00610d00613000210d00620b0061200061bf00212000620b006048006", - "0x1b200212400620b0060370061b200200220b00603a00604d00203c03a007", - "0x603e00604b00203e00620b00607d1240071c100207d00620b00603c006", - "0x200220b00600200900212a0064ef00220b00703e0061c500203e00620b", - "0x20b00612b00602c00212b00620b00612c00602e00212c00620b00600202a", - "0x20b00612a0060f200200220b0060020090020024f000600202d002041006", - "0x12d00602c00212d00620b00604300602b00204300620b00600202a002002", - "0x4500620b00604500602c00204500620b00604100602f00204100620b006", - "0x211e00200220b0060020090020470064f112e00620b007045006030002", - "0x4d13013101420b00600900637100200220b00612e00603300200220b006", - "0x20b00600200600c00212f05300720b00604e0063fb00205113204f04e04b", - "0x3fc00213500620b00602a00612b00205b00620b006029006016002134006", - "0x13605813305600c20b00605d13505b13400c3fd00205d00620b00612f006", - "0x60c900200220b00600200900205f0064f213700620b0071360060c8002", - "0x606400604d00200c06413800920b0060610063fe00206100620b006137", - "0x12b00206c00620b00613300601600206a00620b00605600600c00200220b", - "0x13c06c06a00c3ff00206f00620b00613800621b00213c00620b006058006", - "0x640000200c00620b00600c01600707900206913b06713900c20b00606f", - "0x20b00613f00640100200220b0060020090020710064f313f00620b007069", - "0x2a00200220b00614500643c00207514500720b006141006402002141006", - "0x720b00607700640200207700620b0060760064f400207600620b006002", - "0x643d00207b00620b00607500643d00200220b00607900643c002146079", - "0x20b00614b00602f00214b00620b00614a07b00721a00214a00620b006146", - "0x64f50c700620b00707f00603000207f00620b00607f00602c00207f006", - "0x4d13013101412a00200220b0060c700603300200220b006002009002151", - "0x8508314f14e01420b00615200637100215200620b00605113204f05304b", - "0x216200620b00606700601600215f00620b00600206500216016115e150", - "0x615f00611b00215400620b00616000644d00208700620b00613b00612b", - "0x14e0063e300215c16315d00920b00615715408716200c21900215700620b", - "0x8300620b0060830063d300214f00620b00614f0063d000214e00620b006", - "0x15e00637300215000620b0061500063fc00208500620b0060850063de002", - "0x8a00620b00715c00644e00216100620b00616100645000215e00620b006", - "0x3300216816e00720b00608a00644f00200220b00600200900215b0064f6", - "0x16c00620b00615d0060160020ed00620b00600206500200220b006168006", - "0xed00611b00216d00620b00616100645000209200620b00616300612b002", - "0x64520020d016b08e00920b00617116d09216c00c45100217100620b006", - "0x20b00609400645300200220b0060020090021730064f709400620b0070d0", - "0x9615e15008508314f14e01412a00200220b006175006033002175096007", - "0xa00cc17c09d17a09b17609901420b0060d10063710020d100620b00616e", - "0x612b0020cd00620b00608e0060160020a217d00720b0061760063cf002", - "0x60a80d20cd0093d10020a800620b0060a20063d00020d200620b00616b", - "0x620b0060a000644d00209900620b0060990063e300217f0a417e00920b", - "0x63fc00217a00620b00617a0063de00209b00620b00609b0063d30020a0", - "0x620b0060cc00645000217c00620b00617c00637300209d00620b00609d", - "0xce0064f818000620b00717f00615100217d00620b00617d0063d00020cc", - "0x20b00617e00601600200f00620b00618000615200200220b006002009002", - "0x35a0020ca00620b00617d0063d00020c900620b0060a400612b0020c8006", - "0xc90c800c4540020cb00620b0060cb00604b0020cb00c00720b00600c006", - "0x645500200f00620b00600f0100070790020cf1810ab00920b0060cb0ca", - "0x20b0060c600645600200220b0060020090020b30064f90c600620b0070cf", - "0x20b700c00720b00600c00635a00200220b00618e00603300218e0b5007", - "0x20b0060a00cc17c09d17a09b0b509901412a0020b900620b0060b70064fa", - "0x12b0020c100620b0060ab0060160020bf00620b00613900600c0020ba006", - "0x20b0060b90064fb0020c300620b0060ba00604100219000620b006181006", - "0x617d0020be18f0bd0bb00c20b00619b0c31900c10bf0164fc00219b006", - "0x20b00619c0061f600200220b0060020090020d40064fd19c00620b0070be", - "0xc0020d600620b00600f00647f00200220b0061a00060330021a019d007", - "0x20b00618f00612b0021a300620b0060bd0060160020db00620b0060bb006", - "0x4810020df00620b0060d60064800021a500620b00619d0060410021a4006", - "0x620b0071a100617d0021a10d90d719f00c20b0060df1a51a41a30db016", - "0x21ae1ad00720b0061a60061f600200220b0060020090021b20064fe1a6", - "0x20b00619f00600c0021b400620b00600c0063ed00200220b0061ae006033", - "0x410020ec00620b0060d900612b0020ea00620b0060d70060160021bd006", - "0xec0ea1bd0163ef0020ef00620b0061b40063ee0021bf00620b0061ad006", - "0x1c50064ff1c100620b0071ba00617d0021ba1b80e70e500c20b0060ef1bf", - "0x60f40060330020f40f200720b0061c10061f600200220b006002009002", - "0x60020ef0021ca00620b0060020ef0021c800620b00600243e00200220b", - "0x1420b0060f20063710020f800620b0061d41ca1c800943f0021d400620b", - "0xe70060160021fb00620b0060e500600c0021001f60fe0fc1ef0fa1eb1d6", - "0x620b0060fc0063fc00220600620b0061b800612b0021ff00620b006", - "0x1f800c20b0063000002061ff1fb01644000230000620b0060f80060c6002", - "0x220b00600200900230500650030400620b0071030064410021032f61f9", - "0x1d601412a00200220b00630800603300230830700720b006304006442002", - "0x48400230a00620b00600202a00230900620b0061001f60fe3071ef0fa1eb", - "0x61f800600c00230c00620b00630b00648500230b00620b00630a309007", - "0x231000620b0062f600612b00230f00620b0061f900601600230e00620b", - "0x200220b00600200900231131030f30e00c00631100620b00630c00644c", - "0x220b0060fe00639700200220b0061f600639600200220b00610000620c", - "0x20b0060fa00639a00200220b0061ef00639900200220b0061d6006395002", - "0x1f800600c00231200620b00630500644b00200220b0061eb00639b002002", - "0x31500620b0062f600612b00231400620b0061f900601600231300620b006", - "0x220b00600200900231631531431300c00631600620b00631200644c002", - "0xe700601600231900620b0060e500600c00231700620b0061c500644b002", - "0x31c00620b00631700644c00231b00620b0061b800612b00231a00620b006", - "0x200220b00600c00604d00200220b00600200900231c31b31a31900c006", - "0x60d700601600232100620b00619f00600c00232000620b0061b200644b", - "0x632800620b00632000644c00232600620b0060d900612b00232200620b", - "0x4d00200220b00600c00604d00200220b00600200900232832632232100c", - "0x620b0060bb00600c00232900620b0060d400644b00200220b00600f006", - "0x644c00232c00620b00618f00612b00232b00620b0060bd00601600232a", - "0x604d00200220b00600200900232d32c32b32a00c00632d00620b006329", - "0x20c00200220b00609900639500200220b00600f00604d00200220b00600c", - "0x200220b00617c00639700200220b0060cc00639600200220b0060a0006", - "0x220b00609b00639a00200220b00617a00639900200220b00609d006398", - "0xab00601600233200620b00613900600c00233100620b0060b300644b002", - "0x33400620b00633100644c00233300620b00618100612b00221200620b006", - "0x200220b00600c00604d00200220b00600200900233433321233200c006", - "0x220b00617a00639900200220b00609b00639a00200220b006099006395", - "0x20b00617c00639700200220b0060cc00639600200220b0060a000620c002", - "0x601000614e00200220b00617d00639b00200220b00609d006398002002", - "0x1600233600620b00613900600c00233500620b0060ce00644b00200220b", - "0x20b00633500644c00233900620b0060a400612b00233700620b00617e006", - "0x20b00600c00604d00200220b00600200900221133933733600c006211006", - "0x614e00639500200220b00616e00620c00200220b00601000614e002002", - "0x8500639900200220b00615000639800200220b00615e00639700200220b", - "0x644b00200220b00614f00639b00200220b00608300639a00200220b006", - "0x620b00608e00601600233d00620b00613900600c00233b00620b006173", - "0x33d00c00634200620b00633b00644c00234000620b00616b00612b00233f", - "0x1000614e00200220b00600c00604d00200220b00600200900234234033f", - "0x639500200220b00608300639a00200220b00614f00639b00200220b006", - "0x39900200220b00615000639800200220b00615e00639700200220b00614e", - "0x34300620b00615b00644b00200220b00616100639600200220b006085006", - "0x16300612b00234500620b00615d00601600221000620b00613900600c002", - "0x900234734634521000c00634700620b00634300644c00234600620b006", - "0x14e00200220b00600c00604d00200220b00615100603300200220b006002", - "0x200220b00613200639600200220b00605100620c00200220b006010006", - "0x220b00604b00639900200220b00605300639800200220b00604f006397", - "0x20b00613100639500200220b00613000639b00200220b00604d00639a002", - "0x634900604b00234900620b00600250100234800620b006002131002002", - "0x234b00620b00600213500234a00620b00634934800705b00234900620b", - "0x13900600c00234d00620b00634c00644b00234c00620b00634a34b00705d", - "0x35000620b00613b00612b00234f00620b00606700601600234e00620b006", - "0x220b00600200900235135034f34e00c00635100620b00634d00644c002", - "0x20b00605100620c00200220b00601000614e00200220b00600c00604d002", - "0x605300639800200220b00604f00639700200220b006132006396002002", - "0x13000639b00200220b00604d00639a00200220b00604b00639900200220b", - "0xc00235200620b00607100644b00200220b00613100639500200220b006", - "0x20b00613b00612b00220f00620b00606700601600235300620b006139006", - "0x600200900235535420f35300c00635500620b00635200644c002354006", - "0x4d00639a00200220b00613000639b00200220b00601000614e00200220b", - "0x639600200220b00605100620c00200220b00613100639500200220b006", - "0x39900200220b00605300639800200220b00604f00639700200220b006132", - "0x35600620b00605f00644b00200220b00601600614e00200220b00604b006", - "0x5800612b00235a00620b00613300601600235700620b00605600600c002", - "0x900235c35b35a35700c00635c00620b00635600644c00235b00620b006", - "0x614e00200220b00604700603300200220b00600211e00200220b006002", - "0x13100200220b00600900604700200220b00601000614e00200220b006016", - "0x36100620b00636100604b00236100620b0060023cc00236000620b006002", - "0x36600705d00236600620b00600213500236500620b00636136000705b002", - "0x620b00600200600c00236900620b00636800644b00236800620b006365", - "0x644c00237100620b00602a00612b00236f00620b00602900601600236e", - "0x211e00200220b00600200900237237136f36e00c00637200620b006369", - "0x604700200220b00601000614e00200220b00601600614e00200220b006", - "0x237300620b00602f00644b00200220b00611b0060fa00200220b006009", - "0x602a00612b00220e00620b00602900601600237400620b00600200600c", - "0x200900237937820e37400c00637900620b00637300644c00237800620b", - "0x604700200220b00601000614e00200220b00601600614e00200220b006", - "0x37b00620b00600200600c00237a00620b0060c400644b00200220b006009", - "0x37a00644c00237d00620b00601500612b00237c00620b006014006016002", - "0x600601600200220b00600211e00237e37d37c37b00c00637e00620b006", - "0x920b00601401000738300201400620b00600700612b00201000620b006", - "0x220b00600200900201700650201500620b00700f0060ea00200f01600c", - "0x60fa00201c01900720b00601b00636000201b00620b0060150060ec002", - "0x2900620b00601600612b00211b00620b00600c00601600200220b006019", - "0x60ea00200220b0060020060020540650c400920b00602911b0071bd002", - "0x20b00602a0060ec00200220b00600200900202b00650302a00620b007054", - "0x36100200220b00602d0060fa00202e02d00720b00602c00636000202c006", - "0x20b00603000613000203000620b00602f0061bf00202f00620b00601c006", - "0x1bf00203900620b00602e00636100200220b00603300604d002048033007", - "0x611e00604d00203711e00720b00603500613000203500620b006039006", - "0x1c100210d00620b0060370061b200212000620b0060480061b200200220b", - "0x703a0061c500203a00620b00603a00604b00203a00620b00610d120007", - "0x2e00212400620b00600202a00200220b00600200900203c00650400220b", - "0x250500600202d00203e00620b00607d00602c00207d00620b006124006", - "0x12a00620b00600202a00200220b00603c0060f200200220b006002009002", - "0x3e00602f00203e00620b00612c00602c00212c00620b00612a00602b002", - "0x4100620b00712b00603000212b00620b00612b00602c00212b00620b006", - "0x604100603300200220b00600211e00200220b006002009002043006506", - "0x63fb00204b04d13013104712e04512d01420b00600900637100200220b", - "0x20b0060c400601600205600620b00600200600c00204f04e00720b006131", - "0x3fd00213600620b00604f0063fc00205800620b00606500612b002133006", - "0x13400620b00712f0060c800212f05305113200c20b00613605813305600c", - "0x63fe00213500620b0061340060c900200220b00600200900205b006507", - "0x20b00613200600c00200220b00613700604d00205f13705d00920b006135", - "0x21b00206900620b00605300612b00213b00620b006051006016002067006", - "0x13906413806100c20b00606a06913b06700c3ff00206a00620b00605d006", - "0x640100200220b00600200900213c00650806c00620b007139006400002", - "0x20b00613f00643c00207113f00720b00606f00640200206f00620b00606c", - "0x14500640200214500620b0061410064f400214100620b00600202a002002", - "0x7900620b00607100643d00200220b00607500643c00207607500720b006", - "0x602f00207700620b00614607900721a00214600620b00607600643d002", - "0x620b00714b00603000214b00620b00614b00602c00214b00620b006077", - "0x1412a00200220b00607b00603300200220b00600200900214a00650907b", - "0xc701420b00607f00637100207f00620b00604b04d13004e04712e04512d", - "0x20b00613800601600215e00620b00600206500215008508314f14e152151", - "0x11b00215c00620b00615000644d00216300620b00606400612b00215d006", - "0x215f16016100920b00616215c16315d00c21900216200620b00615e006", - "0x61520063d300215100620b0061510063d00020c700620b0060c70063e3", - "0x214f00620b00614f0063fc00214e00620b00614e0063de00215200620b", - "0x715f00644e00208500620b00608500645000208300620b006083006373", - "0x15700720b00608700644f00200220b00600200900215400650a08700620b", - "0x616100601600215b00620b00600206500200220b00608a00603300208a", - "0x20d000620b00608500645000216b00620b00616000612b00208e00620b", - "0xed16816e00920b00616c0d016b08e00c45100216c00620b00615b00611b", - "0x645300200220b00600200900216d00650b09200620b0070ed006452002", - "0x14e1521510c701412a00200220b00609400603300209417100720b006092", - "0x1760990d117509601420b00617300637100217300620b00615717108314f", - "0x20a200620b00616800612b00217d00620b00616e00601600209d17a09b", - "0xa400604b0020a405f00720b00605f00635a00217e00620b0060d10063d3", - "0x63e30020a00cc17c00920b0060a417e0a217d00c49b0020a400620b006", - "0x620b00609d00644d00217500620b0061750063d000209600620b006096", - "0x637300217600620b0061760063fc00209900620b0060990063de00209d", - "0x620b0070a000649c00217a00620b00617a00645000209b00620b00609b", - "0x20a80d200720b00617f00649e00200220b0060020090020cd00650c17f", - "0xd217509601412a00218000620b00605f00650d00200220b0060a8006033", - "0x60160020c900620b00606100600c0020ce00620b00609d17a09b176099", - "0x620b0060ce0060410020cb00620b0060cc00612b0020ca00620b00617c", - "0xc20b0060b30c60cb0ca0c901650f0020b300620b00618000650e0020c6", - "0x20b00600200900218e0065100b500620b0070c800617d0020c80cf1810ab", - "0x243e00200220b0060b90060330020b90b700720b0060b50061f6002002", - "0x43f0020bd00620b0060020ef0020bb00620b0060020ef0020ba00620b006", - "0xc31900c10bf0be01420b0060b700637100218f00620b0060bd0bb0ba009", - "0x20d900620b0061810060160020d700620b0060ab00600c0020d419c19b", - "0x618f0060c60020db00620b0060c30063fc0021a100620b0060cf00612b", - "0x44100219f0d61a019d00c20b0061a30db1a10d90d70164400021a300620b", - "0x61a400644200200220b0060020090021a50065111a400620b00719f006", - "0x19b0df1900c10bf0be01412a00200220b0061a60060330021a60df00720b", - "0x20b0061ad1b20074840021ad00620b00600202a0021b200620b0060d419c", - "0x160020e500620b00619d00600c0021b400620b0061ae0064850021ae006", - "0x20b0061b400644c0021b800620b0060d600612b0020e700620b0061a0006", - "0x20b0060d400620c00200220b0060020090021ba1b80e70e500c0061ba006", - "0x60be00639500200220b00619b00639700200220b00619c006396002002", - "0xbf00639b00200220b0060c100639a00200220b00619000639900200220b", - "0x20ea00620b00619d00600c0021bd00620b0061a500644b00200220b006", - "0x61bd00644c0021bf00620b0060d600612b0020ec00620b0061a0006016", - "0x618e00644b00200220b0060020090020ef1bf0ec0ea00c0060ef00620b", - "0x20f200620b0061810060160021c500620b0060ab00600c0021c100620b", - "0xf40f21c500c0061c800620b0061c100644c0020f400620b0060cf00612b", - "0x20b00609d00620c00200220b00609600639500200220b0060020090021c8", - "0x617600639800200220b00609b00639700200220b00617a006396002002", - "0x17500639b00200220b00605f00604d00200220b00609900639900200220b", - "0x21d400620b00606100600c0021ca00620b0060cd00644b00200220b006", - "0x61ca00644c0021d600620b0060cc00612b0020f800620b00617c006016", - "0x605f00604d00200220b0060020090021eb1d60f81d400c0061eb00620b", - "0x8300639700200220b0060c700639500200220b00615700620c00200220b", - "0x639a00200220b00614e00639900200220b00614f00639800200220b006", - "0x20fa00620b00616d00644b00200220b00615100639b00200220b006152", - "0x616800612b0020fc00620b00616e0060160021ef00620b00606100600c", - "0x20090021f60fe0fc1ef00c0061f600620b0060fa00644c0020fe00620b", - "0x604d00200220b00615100639b00200220b00615200639a00200220b006", - "0x39800200220b00608300639700200220b0060c700639500200220b00605f", - "0x200220b00608500639600200220b00614e00639900200220b00614f006", - "0x61610060160021f800620b00606100600c00210000620b00615400644b", - "0x610300620b00610000644c0022f600620b00616000612b0021f900620b", - "0x4d00200220b00614a00603300200220b0060020090021032f61f91f800c", - "0x200220b00604d00639600200220b00604b00620c00200220b00605f006", - "0x220b00604700639900200220b00604e00639800200220b006130006397", - "0x20b00612d00639500200220b00604500639b00200220b00612e00639a002", - "0x61ff00604b0021ff00620b0060025010021fb00620b006002131002002", - "0x200000620b00600213500220600620b0061ff1fb00705b0021ff00620b", - "0x6100600c00230400620b00630000644b00230000620b00620600000705d", - "0x30800620b00606400612b00230700620b00613800601600230500620b006", - "0x220b00600200900230930830730500c00630900620b00630400644c002", - "0x20b00604d00639600200220b00604b00620c00200220b00605f00604d002", - "0x604700639900200220b00604e00639800200220b006130006397002002", - "0x12d00639500200220b00604500639b00200220b00612e00639a00200220b", - "0x230b00620b00606100600c00230a00620b00613c00644b00200220b006", - "0x630a00644c00230e00620b00606400612b00230c00620b006138006016", - "0x612d00639500200220b00600200900230f30e30c30b00c00630f00620b", - "0x4b00620c00200220b00604500639b00200220b00612e00639a00200220b", - "0x639800200220b00613000639700200220b00604d00639600200220b006", - "0x231000620b00605b00644b00200220b00604700639900200220b00604e", - "0x605300612b00231200620b00605100601600231100620b00613200600c", - "0x200900231431331231100c00631400620b00631000644c00231300620b", - "0x900604700200220b00604300603300200220b00600211e00200220b006", - "0x604b00231600620b0060023cc00231500620b00600213100200220b006", - "0x620b00600213500231700620b00631631500705b00231600620b006316", - "0xc00231b00620b00631a00644b00231a00620b00631731900705d002319", - "0x20b00606500612b00232000620b0060c400601600231c00620b006002006", - "0x600200900232232132031c00c00632200620b00631b00644c002321006", - "0x601c0060fa00200220b00600900604700200220b00600211e00200220b", - "0x1600232800620b00600200600c00232600620b00602b00644b00200220b", - "0x20b00632600644c00232a00620b00606500612b00232900620b0060c4006", - "0x20b00600900604700200220b00600200900232b32a32932800c00632b006", - "0x601600232d00620b00600200600c00232c00620b00601700644b002002", - "0x620b00632c00644c00233200620b00601600612b00233100620b00600c", - "0x620b00600600601600200220b00600211e00221233233132d00c006212", - "0xf01600c00920b00601401000738300201400620b00600700612b002010", - "0x60ec00200220b00600200900201700651201500620b00700f0060ea002", - "0x20b0060190060fa00201c01900720b00601b00636000201b00620b006015", - "0x71bd00202900620b00601600612b00211b00620b00600c006016002002", - "0x20b0070540060ea00200220b0060020060020540650c400920b00602911b", - "0x202c00620b00602a0060ec00200220b00600200900202b00651302a006", - "0x601c00636100200220b00602d0060fa00202e02d00720b00602c006360", - "0x4803300720b00603000613000203000620b00602f0061bf00202f00620b", - "0x60390061bf00203900620b00602e00636100200220b00603300604d002", - "0x200220b00611e00604d00203711e00720b00603500613000203500620b", - "0x10d1200071c100210d00620b0060370061b200212000620b0060480061b2", - "0x51400220b00703a0061c500203a00620b00603a00604b00203a00620b006", - "0x612400602e00212400620b00600202a00200220b00600200900203c006", - "0x200900200251500600202d00203e00620b00607d00602c00207d00620b", - "0x602b00212a00620b00600202a00200220b00603c0060f200200220b006", - "0x620b00603e00602f00203e00620b00612c00602c00212c00620b00612a", - "0x4300651604100620b00712b00603000212b00620b00612b00602c00212b", - "0x200220b00604100603300200220b00600211e00200220b006002009002", - "0x20b0061310063fb00204b04d13013104712e04512d01420b006009006371", - "0x213300620b0060c400601600205600620b00600200600c00204f04e007", - "0x13305600c3fd00213600620b00604f0063fc00205800620b00606500612b", - "0x5b00651713400620b00712f0060c800212f05305113200c20b006136058", - "0x20b0061350063fe00213500620b0061340060c900200220b006002009002", - "0xc00200220b00605f00604d00200220b00613700604d00205f13705d009", - "0x20b00605300612b00213b00620b00605100601600206700620b006132006", - "0xc20b00606a06913b06700c3ff00206a00620b00605d00621b002069006", - "0x20b00600200900213c00651806c00620b007139006400002139064138061", - "0x43c00207113f00720b00606f00640200206f00620b00606c006401002002", - "0x14500620b00614100640300214100620b00600202a00200220b00613f006", - "0x7100640200200220b00607500643c00207607500720b006145006402002", - "0x14600720b00607600640200200220b00607700643c00207907700720b006", - "0x14b00643d00214a00620b00607900643d00200220b00614600643c00214b", - "0x620b00607b00602f00207b00620b00607f14a00744400207f00620b006", - "0x602c00215100620b0060c700602f0020c700620b0060c700602c0020c7", - "0x600200900214e00651915200620b00715100603000215100620b006151", - "0x4b04d13004e04712e04512d01412a00200220b00615200603300200220b", - "0x215d15f16016115e15008508301420b00614f00637100214f00620b006", - "0x13800601600208a00620b00606100600c00215c16300720b0061610063fb", - "0x16800620b00615c0063fc00216e00620b00606400612b00215b00620b006", - "0x20b0060830063e300215715408716200c20b00616816e15b08a00c3fd002", - "0x3de00215000620b0061500063d300208500620b0060850063d0002083006", - "0x20b00616000637300215d00620b00615d00644d00215e00620b00615e006", - "0xc800216300620b0061630063fc00215f00620b00615f006450002160006", - "0x60ed0060c900200220b00600200900208e00651a0ed00620b007157006", - "0x220b00616c00604d00209216c0d000920b00616b0063fe00216b00620b", - "0x608700601600209600620b00616200600c00200220b00609200604d002", - "0x209900620b0060d000621b0020d100620b00615400612b00217500620b", - "0x620b00717300640000217309417116d00c20b0060990d117509600c3ff", - "0x40200217a00620b00617600640100200220b00600200900209b00651b176", - "0x20b0060cc0064030020cc00620b00600202a00217c09d00720b00617a006", - "0x43d00200220b00617d00643c0020a217d00720b0060a00064020020a0006", - "0x617f0a400721a00217f00620b0060a200643d0020a400620b00617c006", - "0x220b0060020090020d200651c0cd00620b00717e00603000217e00620b", - "0x620b0060020ef0020a800620b00600243e00200220b0060cd006033002", - "0xc0020ab00620b0060ce1800a800943f0020ce00620b0060020ef002180", - "0x20b00609400612b0020cb00620b0061710060160020ca00620b00616d006", - "0x4400020b500620b0060ab0060c60020b300620b0061630063fc0020c6006", - "0x620b0070c90064410020c90c80cf18100c20b0060b50b30c60cb0ca016", - "0x20ba0b900720b00618e00644200200220b0060020090020b700651d18e", - "0x60bb00643c0020bd0bb00720b00609d00640200200220b0060ba006033", - "0x64020020be00620b00618f00644300218f00620b00600202a00200220b", - "0x720b0060bd00640200200220b0060bf00643c0020c10bf00720b0060be", - "0x43c00219c19b00720b0060c100640200200220b00619000643c0020c3190", - "0x620b00619c00643d00219d00620b0060c300643d00200220b00619b006", - "0x3d50020d600620b0060d400602f0020d400620b0061a019d0074440021a0", - "0x1500063d70020d708500720b0060850063d600219f08300720b006083006", - "0x20b0060b90063d90021a115e00720b00615e0063d80020d915000720b006", - "0x15f00720b00615f0063db0021a316000720b0061600063da0020db0b9007", - "0x1a41a30db1a10d90d719f01412a0021a515d00720b00615d0063dc0021a4", - "0xd600620b0060d600602c00200220b0060df0060470020df00620b0061a5", - "0x603300200220b0060020090021b200651e1a600620b0070d6006030002", - "0x21ad00620b00615d15f1600b915e15008508301412a00200220b0061a6", - "0x60c800612b0021b400620b0060cf0060160021ae00620b00618100600c", - "0x200900200251f00600202d0020e700620b0061ad0060410020e500620b", - "0x15f1600b915e15008508301412a00200220b0061b200603300200220b006", - "0xef00620b00618100600c0021ba00620b0060024450021b800620b00615d", - "0x1b80060410021c500620b0060c800612b0021c100620b0060cf006016002", - "0xf40f21c51c10ef0164470020f400620b0061ba0064460020f200620b006", - "0x90021ca0065201c800620b0071bf00617d0021bf0ec0ea1bd00c20b006", - "0x220b0060f80060330020f81d400720b0061c80061f600200220b006002", - "0xec00612b0021b400620b0060ea0060160021ae00620b0061bd00600c002", - "0x1d600620b0061ae00636e0020e700620b0061d40060410020e500620b006", - "0xe700644a0020fa00620b0060e50064490021eb00620b0061b4006448002", - "0x1ca00644b00200220b00600200900200252100600202d0021ef00620b006", - "0x1f600620b0060ea0060160020fe00620b0061bd00600c0020fc00620b006", - "0x1f60fe00c0061f800620b0060fc00644c00210000620b0060ec00612b002", - "0x615f00639600200220b00615d00620c00200220b0060020090021f8100", - "0x15e00639900200220b00609d00643c00200220b00616000639700200220b", - "0x639500200220b00608500639b00200220b00615000639a00200220b006", - "0x2f600620b00618100600c0021f900620b0060b700644b00200220b006083", - "0x1f900644c0021fb00620b0060c800612b00210300620b0060cf006016002", - "0xd200603300200220b0060020090021ff1fb1032f600c0061ff00620b006", - "0x15f16016315e15008508301412a00200220b00609d00643c00200220b006", - "0x620b0061710060160021d600620b00616d00600c00220600620b00615d", - "0x63710021ef00620b0062060060410020fa00620b00609400612b0021eb", - "0x230b00620b00600206500230a30930830730530430000001420b0061ef", - "0x630a00644d00231100620b0060fa00612b00231000620b0061eb006016", - "0x20b00631331231131000c21900231300620b00630b00611b00231200620b", - "0x20b00600200900231500652231400620b00730f00644e00230f30e30c009", - "0x206500200220b00631700603300231731600720b00631400644f002002", - "0x32100620b00630e00612b00232000620b00630c00601600231900620b006", - "0x32000c45100232600620b00631900611b00232200620b006309006450002", - "0x32900652332800620b00731c00645200231c31b31a00920b006326322321", - "0x632b00603300232b32a00720b00632800645300200220b006002009002", - "0x202a00232c00620b00631632a30830730530430000001412a00200220b", - "0x620b00633100648500233100620b00632d32c00748400232d00620b006", - "0x612b00233300620b00631a00601600221200620b0061d600600c002332", - "0x233533433321200c00633500620b00633200644c00233400620b00631b", - "0x200220b00600000639500200220b00631600620c00200220b006002009", - "0x220b00630500639900200220b00630700639800200220b006308006397", - "0x20b00632900644b00200220b00630000639b00200220b00630400639a002", - "0x12b00233900620b00631a00601600233700620b0061d600600c002336006", - "0x33b21133933700c00633b00620b00633600644c00221100620b00631b006", - "0x220b00630400639a00200220b00630000639b00200220b006002009002", - "0x20b00630700639800200220b00630800639700200220b006000006395002", - "0x631500644b00200220b00630900639600200220b006305006399002002", - "0x234000620b00630c00601600233f00620b0061d600600c00233d00620b", - "0x34234033f00c00634300620b00633d00644c00234200620b00630e00612b", - "0x20b00615000639a00200220b00608300639500200220b006002009002343", - "0x615f00639600200220b00615d00620c00200220b00608500639b002002", - "0x16300639800200220b00615e00639900200220b00616000639700200220b", - "0x234500620b00616d00600c00221000620b00609b00644b00200220b006", - "0x621000644c00234700620b00609400612b00234600620b006171006016", - "0x608300639500200220b00600200900234834734634500c00634800620b", - "0x15d00620c00200220b00608500639b00200220b00615000639a00200220b", - "0x639800200220b00616000639700200220b00615f00639600200220b006", - "0x234900620b00608e00644b00200220b00615e00639900200220b006163", - "0x615400612b00234b00620b00608700601600234a00620b00616200600c", - "0x200900234d34c34b34a00c00634d00620b00634900644c00234c00620b", - "0x639600200220b00604b00620c00200220b00614e00603300200220b006", - "0x39900200220b00604e00639800200220b00613000639700200220b00604d", - "0x200220b00604500639b00200220b00612e00639a00200220b006047006", - "0x34f00620b00600250100234e00620b00600213100200220b00612d006395", - "0x213500235000620b00634f34e00705b00234f00620b00634f00604b002", - "0x620b00635200644b00235200620b00635035100705d00235100620b006", - "0x612b00235400620b00613800601600220f00620b00606100600c002353", - "0x235635535420f00c00635600620b00635300644c00235500620b006064", - "0x200220b00604d00639600200220b00604b00620c00200220b006002009", - "0x220b00604700639900200220b00604e00639800200220b006130006397", - "0x20b00612d00639500200220b00604500639b00200220b00612e00639a002", - "0x601600235a00620b00606100600c00235700620b00613c00644b002002", - "0x620b00635700644c00235c00620b00606400612b00235b00620b006138", - "0x220b00612e00639a00200220b00600200900236035c35b35a00c006360", - "0x20b00604b00620c00200220b00604500639b00200220b00612d006395002", - "0x604e00639800200220b00613000639700200220b00604d006396002002", - "0x600c00236100620b00605b00644b00200220b00604700639900200220b", - "0x620b00605300612b00236600620b00605100601600236500620b006132", - "0x20b00600200900236936836636500c00636900620b00636100644c002368", - "0x20b00600900604700200220b00604300603300200220b00600211e002002", - "0x636f00604b00236f00620b0060023cc00236e00620b006002131002002", - "0x237200620b00600213500237100620b00636f36e00705b00236f00620b", - "0x200600c00237400620b00637300644b00237300620b00637137200705d", - "0x37900620b00606500612b00237800620b0060c400601600220e00620b006", - "0x220b00600200900237a37937820e00c00637a00620b00637400644c002", - "0x220b00601c0060fa00200220b00600900604700200220b00600211e002", - "0xc400601600237c00620b00600200600c00237b00620b00602b00644b002", - "0x37f00620b00637b00644c00237e00620b00606500612b00237d00620b006", - "0x200220b00600900604700200220b00600200900237f37e37d37c00c006", - "0x600c00601600238100620b00600200600c00238000620b00601700644b", - "0x638500620b00638000644c00238300620b00601600612b00238200620b", - "0x1701501401000f01600c00901420b00600700637100238538338238100c", - "0x20b00600f00639900200220b00601600639a00200220b006009006395002", - "0x601500639600200220b00601400639700200220b006010006398002002", - "0x612b0020c400620b00600200601600200220b00601700620c00200220b", - "0x60540650c40093d100205400620b00600c0063d000206500620b006006", - "0x600200900202900652411b00620b00701c00615100201c01901b00920b", - "0x33200202b00620b00602a00633100202a00620b00611b00615200200220b", - "0x20b00601900612b00202d00620b00601b00601600202c00620b00602b006", - "0x20b00600200900202f02e02d00900602f00620b00602c00621200202e006", - "0x612b00203300620b00601b00601600203000620b006029006333002002", - "0x37100203904803300900603900620b00603000621200204800620b006019", - "0x220b00600900639500201701501401000f01600c00901420b006007006", - "0x20b00601000639800200220b00600f00639900200220b00600c00639b002", - "0x601700620c00200220b00601500639600200220b006014006397002002", - "0x3d300206500620b00600600612b0020c400620b00600200601600200220b", - "0x15100201c01901b00920b0060540650c40093d400205400620b006016006", - "0x611b00615200200220b00600200900202900652511b00620b00701c006", - "0x202c00620b00602b00633200202b00620b00602a00633100202a00620b", - "0x602c00621200202e00620b00601900612b00202d00620b00601b006016", - "0x20b00602900633300200220b00600200900202f02e02d00900602f00620b", - "0x21200204800620b00601900612b00203300620b00601b006016002030006", - "0xc00901420b00600700637100203904803300900603900620b006030006", - "0x220b00600c00639b00200220b00600900639500201701501401000f016", - "0x20b00601400639700200220b00601000639800200220b00601600639a002", - "0x600200601600200220b00601700620c00200220b006015006396002002", - "0x205400620b00600f0063de00206500620b00600600612b0020c400620b", - "0x52611b00620b00701c00615100201c01901b00920b0060540650c40093df", - "0x2a00633100202a00620b00611b00615200200220b006002009002029006", - "0x2d00620b00601b00601600202c00620b00602b00633200202b00620b006", - "0x2e02d00900602f00620b00602c00621200202e00620b00601900612b002", - "0x601b00601600203000620b00602900633300200220b00600200900202f", - "0x603900620b00603000621200204800620b00601900612b00203300620b", - "0x201b01701501401000f01600c01420b006009006371002039048033009", - "0x220b00600f00639a00200220b00601600639b00200220b00600c006395", - "0x20b00601700639600200220b00601500639700200220b006010006399002", - "0x600601600205400620b00600200600c00200220b00601b00620c002002", - "0x2a00620b0060140063fc00202900620b00600700612b00211b00620b006", - "0x20b0070650060c80020650c401c01900c20b00602a02911b05400c3fd002", - "0x202d00620b00602b0060c900200220b00600200900202c00652702b006", - "0x601900600c00202f00620b00602e00621400202e00620b00602d006528", - "0x204800620b0060c400612b00203300620b00601c00601600203000620b", - "0x200220b00600200900203904803303000c00603900620b00602f006529", - "0x601c00601600211e00620b00601900600c00203500620b00602c00652a", - "0x610d00620b00603500652900212000620b0060c400612b00203700620b", - "0x20b0060070063fe00200700200720b00600200652b00210d12003711e00c", - "0x21b00200220b00601600604d00200220b00600c00604d00201600c009009", - "0x601501400752c00201500620b00600600604e00201400620b006009006", - "0x1700200720b00600200652b00200220b00601000603300201000f00720b", - "0x604d00200220b00601b00634900201c01901b00920b0060170063fe002", - "0x11b00620b00600f00604e00205400620b00601900604b00200220b00601c", - "0x63fe00200220b0060650060330020650c400720b00611b05400704f002", - "0x20b00602a00604d00200220b00602900634900202b02a02900920b006002", - "0x704f00202f00620b0060c400604e00202e00620b00602b00604b002002", - "0x602d00652e00203000620b00602c00652d00202d02c00720b00602f02e", - "0x620b00600252f00200220b00600200604700203303000700603300620b", - "0x700600953100200900620b00600252f00200700620b006002530002006", - "0x200653200201600600601600620b00600c0060b900200c00620b006009", - "0x600c00653400201600c00900920b00600700653300200700200720b006", - "0x604e00201400620b00600900653500200220b00601600653400200220b", - "0x601000603300201000f00720b00601501400753600201500620b006006", - "0x1901b00920b00601700653300201700200720b00600200653200200220b", - "0x601900653500200220b00601c00653400200220b00601b00653400201c", - "0xc400720b00611b05400753600211b00620b00600f00604e00205400620b", - "0x53400202b02a02900920b00600200653300200220b006065006033002065", - "0x2e00620b00602b00653500200220b00602a00653400200220b006029006", - "0x52d00202d02c00720b00602f02e00753600202f00620b0060c400604e002", - "0x37100203303000700603300620b00602d00652e00203000620b00602c006", - "0x220b00600c00639500201b01701501401000f01600c01420b006009006", - "0x20b00601000639900200220b00600f00639a00200220b00601600639b002", - "0x601b00620c00200220b00601500639700200220b006014006398002002", - "0x12b00211b00620b00600600601600205400620b00600200600c00200220b", - "0x2911b05400c53700202a00620b00601700645000202900620b006007006", - "0x202c00653802b00620b00706500618f0020650c401c01900c20b00602a", - "0x620b00602d00653900202d00620b00602b0060be00200220b006002009", - "0x601600203000620b00601900600c00202f00620b00602e00653a00202e", - "0x620b00602f00621300204800620b0060c400612b00203300620b00601c", - "0x620b00602c00653b00200220b00600200900203904803303000c006039", - "0x612b00203700620b00601c00601600211e00620b00601900600c002035", - "0x210d12003711e00c00610d00620b00603500621300212000620b0060c4", - "0x600900613000200900620b00600700653c00200700620b006002006054", - "0x201400620b00601600604b00200220b00600c00604d00201600c00720b", - "0x603300201000f00720b00601501400704f00201500620b00600600604e", - "0x201b00620b00600f00604e00201700620b00600202a00200220b006010", - "0x1600c01420b00600900637100201901b00700601900620b0060170061ff", - "0x220b00601600639b00200220b00600c00639500201b01701501401000f", - "0x20b00601400639800200220b00601000639900200220b00600f00639a002", - "0x600200600c00200220b00601700639600200220b006015006397002002", - "0x202900620b00600700612b00211b00620b00600600601600205400620b", - "0xc401c01900c20b00602a02911b05400c53d00202a00620b00601b00644d", - "0xbe00200220b00600200900202c00653e02b00620b00706500618f002065", - "0x20b00602e00653a00202e00620b00602d00653900202d00620b00602b006", - "0x12b00203300620b00601c00601600203000620b00601900600c00202f006", - "0x3904803303000c00603900620b00602f00621300204800620b0060c4006", - "0x20b00601900600c00203500620b00602c00653b00200220b006002009002", - "0x21300212000620b0060c400612b00203700620b00601c00601600211e006", - "0xc01420b00600900637100210d12003711e00c00610d00620b006035006", - "0x20b00601600639b00200220b00600c00639500201b01701501401000f016", - "0x601500639700200220b00601000639900200220b00600f00639a002002", - "0x200600c00200220b00601b00620c00200220b00601700639600200220b", - "0x2900620b00600700612b00211b00620b00600600601600205400620b006", - "0x1c01900c20b00602a02911b05400c3fd00202a00620b0060140063fc002", - "0x200220b00600200900202c00653f02b00620b0070650060c80020650c4", - "0x600c00203002f02e00920b00602d0063fe00202d00620b00602b0060c9", - "0x620b0060c400612b00203700620b00601c00601600211e00620b006019", - "0x3ff00210d00620b00610d00621b00210d02e00720b00602e00635b002120", - "0x3a00620b00703500640000203503904803300c20b00610d12003711e00c", - "0x943f00212400620b00603a00640100200220b00600200900203c006540", - "0x3e00654200203e00620b00612407d00754100207d00620b00603002f02e", - "0x12b00620b00603300600c00212c00620b00612a00654300212a00620b006", - "0x12c00654400204300620b00603900612b00204100620b006048006016002", - "0x2e00634900200220b00600200900212d04304112b00c00612d00620b006", - "0x654500200220b00602f00604d00200220b00603000604d00200220b006", - "0x620b00604800601600212e00620b00603300600c00204500620b00603c", - "0x12e00c00613000620b00604500654400213100620b00603900612b002047", - "0x600c00204d00620b00602c00654500200220b006002009002130131047", - "0x620b0060c400612b00204e00620b00601c00601600204b00620b006019", - "0x600200654600213204f04e04b00c00613200620b00604d00654400204f", - "0x1000620b00600600604e00200f00620b0060070060c600200900700720b", - "0x643d00200220b00601600603300201600c00720b00601000f0070b3002", - "0x20b00601b01700754700201b00620b00600c00604e00201700620b006009", - "0x601c00620b00601500652e00201900620b00601400652d002015014007", - "0x635a00200700620b00600254800200220b00600200604700201c019007", - "0x600900604b00200900620b00600700c0071c100200c00600720b006006", - "0x200220b00600200900201600654900220b0070090061c500200900620b", - "0x620b00600f00602e00200f00620b00600202a00200220b00600600604d", - "0x20b00600200900200254a00600202d00201400620b00601000602c002010", - "0x600600635a00201500620b0060023b300200220b0060160060f2002002", - "0x620b00601700604b00201700620b00601501b0071c100201b00600720b", - "0x604d00200220b00600200900201900654b00220b0070170061c5002017", - "0x20c400620b00601c00602e00201c00620b00600202a00200220b006006", - "0x200220b00600200900200254c00600202d00206500620b0060c400602c", - "0x720b00600600635a00205400620b00600254d00200220b0060190060f2", - "0x211b00620b00611b00604b00211b00620b0060540290071c1002029006", - "0x600600604d00200220b00600200900202a00654e00220b00711b0061c5", - "0x602c00202c00620b00602b00602e00202b00620b00600202a00200220b", - "0x60f200200220b00600200900200254f00600202d00202d00620b00602c", - "0x3000600720b00600600635a00202e00620b00600255000200220b00602a", - "0x61c500202f00620b00602f00604b00202f00620b00602e0300071c1002", - "0x220b00600600604d00200220b00600200900203300655100220b00702f", - "0x603900602c00203900620b00604800602e00204800620b00600202a002", - "0x60330060f200200220b00600200900200255200600202d00203500620b", - "0x1c100212000600720b00600600635a00211e00620b00600255300200220b", - "0x70370061c500203700620b00603700604b00203700620b00611e120007", - "0x2a00200220b00600600604d00200220b00600200900210d00655400220b", - "0x620b00603c00602c00203c00620b00603a00602e00203a00620b006002", - "0x220b00610d0060f200200220b00600200900200255500600202d002124", - "0x3e00604b00203e00620b00607d0060071c100207d00620b006002556002", - "0x220b00600200900212a00655700220b00703e0061c500203e00620b006", - "0x612b00602c00212b00620b00612c00602e00212c00620b00600202a002", - "0x612a0060f200200220b00600200900200255800600202d00204100620b", - "0x602c00212d00620b00604300602b00204300620b00600202a00200220b", - "0x620b00612400636f00212400620b00604100636f00204100620b00612d", - "0x636f00206500620b00602d00636f00202d00620b00603500636f002035", - "0x200604100204500600604500620b00601400636f00201400620b006065", - "0x620b00600c0090070d600200c00620b00600600604b00200900620b006", - "0x3300200220b00600200900200f00655901600620b007007006030002007", - "0x1400620b00601000604b00201000620b0060020ef00200220b006016006", - "0x200220b00600f00603300200220b00600200900200255a00600202d002", - "0x20b0060140061b200201400620b00601500604b00201500620b006002000", - "0x620b00600600612c00201900620b00600200600c002017006006017006", - "0x604100206500620b00600900612b0020c400620b00600700601600201c", - "0x620b00600f00604e00211b00620b00601600604b00205400620b00600c", - "0x201b01701501401001620b00602911b0540650c401c0190100c7002029", - "0x2a00615200200220b00600200900202b00655b02a00620b00701b006151", - "0x220b00602d00604d00202e02d00720b00602c00613000202c00620b006", - "0x3000604d00203303000720b00602f00613000202f00620b006002100002", - "0x203900620b0060330061b200204800620b00602e0061b200200220b006", - "0x350061c500203500620b00603500604b00203500620b0060390480071c1", - "0x203700620b00600202a00200220b00600200900211e00655c00220b007", - "0x55d00600202d00210d00620b00612000602c00212000620b00603700602e", - "0x620b00600202a00200220b00611e0060f200200220b006002009002002", - "0x602f00210d00620b00603c00602c00203c00620b00603a00602b00203a", - "0x620b00712400603000212400620b00612400602c00212400620b00610d", - "0x200000200220b00607d00603300200220b00600200900203e00655e07d", - "0x12b00620b00612c00633200212c00620b00612a00633100212a00620b006", - "0x1500601600204300620b00601400612c00204100620b00601000600c002", - "0x12e00620b00612b00621200204500620b00601700612b00212d00620b006", - "0x220b00603e00603300200220b00600200900212e04512d043041016006", - "0x20b00613100604b00213100620b00600255f00204700620b006002131002", - "0x5d00204d00620b00600213500213000620b00613104700705b002131006", - "0x601000600c00204e00620b00604b00633300204b00620b00613004d007", - "0x205100620b00601500601600213200620b00601400612c00204f00620b", - "0x5113204f01600612f00620b00604e00621200205300620b00601700612b", - "0x1000600c00205600620b00602b00633300200220b00600200900212f053", - "0x13600620b00601500601600205800620b00601400612c00213300620b006", - "0x5813301600605b00620b00605600621200213400620b00601700612b002", - "0xef00201000f00720b00600c00613000200220b00600211e00205b134136", - "0x20b00601500604d00201701500720b00601400613000201400620b006002", - "0x4d00201c01900720b00601b00613000201b00620b0060100061b2002002", - "0x720b0060c40061300020c400620b0060170061b200200220b006019006", - "0x61b200211b00620b00601c0061b200200220b00606500604d002054065", - "0x20b00602a00604b00202a00620b00602911b0071c100202900620b006054", - "0x2a00200220b00600200900202b00656000220b00702a0061c500202a006", - "0x620b00602d00602c00202d00620b00602c00602e00202c00620b006002", - "0x220b00602b0060f200200220b00600200900200256100600202d00202e", - "0x603000602c00203000620b00602f00602b00202f00620b00600202a002", - "0x203300620b00603300602c00203300620b00602e00602f00202e00620b", - "0x704800603000204800620b00604800602c00204800620b00603300602f", - "0x200220b00603900603300200220b00600200900203500656203900620b", - "0x20b00600600601600207d12403c03a10d12003711e01420b006009006371", - "0x35a00204300620b0060370063d000204100620b00600700612b00212b006", - "0x4112b00c45400212d00620b00612d00604b00212d00f00720b00600f006", - "0x212e00656304500620b00712c00645500212c12a03e00920b00612d043", - "0x20b00613100603300213104700720b00604500645600200220b006002009", - "0x63d300204f00620b00612a00612b00204e00620b00603e006016002002", - "0x20b00605100604b00205101600720b00601600635a00213200620b006120", - "0x704b00649c00204b04d13000920b00605113204f04e00c49b002051006", - "0x5600720b00605300649e00200220b00600200900212f00656405300620b", - "0x613000601600205800620b0060020ef00200220b006133006033002133", - "0x213700620b00610d0063de00205d00620b00604d00612b00213500620b", - "0x5b13413600920b00605f13705d13500c4b500205f00620b00605800604b", - "0x64b800200220b00600200900213800656506100620b00705b0064b6002", - "0x720b00600f00635a00200220b00613900603300213906400720b006061", - "0x3c03a06405604711e01412a00213b00620b00601606700756600206700f", - "0x20b00613600601600213f00620b00600200600c00206900620b00607d124", - "0x56700214500620b00606900604100214100620b00613400612b002071006", - "0x13c06c06a00c20b00607514514107113f01656800207500620b00613b006", - "0x1f600200220b00600200900207700656907600620b00706f00617d00206f", - "0x20b00600f0063ed00200220b00614600603300214607900720b006076006", - "0x12b00215200620b00606c00601600215100620b00606a00600c00214b006", - "0x20b00614b0063ee00214f00620b00607900604100214e00620b00613c006", - "0x617d0020c707f14a07b00c20b00608314f14e1521510163ef002083006", - "0x20b0060850061f600200220b00600200900215000656a08500620b0070c7", - "0x748400216000620b00600202a00200220b00616100603300216115e007", - "0x20b00607b00600c00215d00620b00615f00648500215f00620b00616015e", - "0x44c00216200620b00607f00612b00215c00620b00614a006016002163006", - "0x44b00200220b00600200900208716215c16300c00608700620b00615d006", - "0x20b00614a00601600215700620b00607b00600c00215400620b006150006", - "0xc00616e00620b00615400644c00215b00620b00607f00612b00208a006", - "0x644b00200220b00600f00604d00200220b00600200900216e15b08a157", - "0x620b00606c0060160020ed00620b00606a00600c00216800620b006077", - "0xed00c0060d000620b00616800644c00216b00620b00613c00612b00208e", - "0x11e00639500200220b00600f00604d00200220b0060020090020d016b08e", - "0x639700200220b00612400639600200220b00607d00620c00200220b006", - "0x39a00200220b00601600604d00200220b00603a00639800200220b00603c", - "0x16c00620b00613800644b00200220b00604700639b00200220b006056006", - "0x13400612b00216d00620b00613600601600209200620b00600200600c002", - "0x900209417116d09200c00609400620b00616c00644c00217100620b006", - "0x39b00200220b00611e00639500200220b00600f00604d00200220b006002", - "0x200220b00612400639600200220b00607d00620c00200220b006047006", - "0x220b00601600604d00200220b00603a00639800200220b00603c006397", - "0x600200600c00217300620b00612f00644b00200220b00610d006399002", - "0x20d100620b00604d00612b00217500620b00613000601600209600620b", - "0x200220b0060020090020990d117509600c00609900620b00617300644c", - "0x220b00610d00639900200220b00611e00639500200220b00600f00604d", - "0x20b00603c00639700200220b00612400639600200220b00607d00620c002", - "0x612000639a00200220b00601600604d00200220b00603a006398002002", - "0x1600209b00620b00600200600c00217600620b00612e00644b00200220b", - "0x20b00617600644c00209d00620b00612a00612b00217a00620b00603e006", - "0x20b00603500603300200220b00600200900217c09d17a09b00c00617c006", - "0x600900604700200220b00601600604d00200220b00600f00604d002002", - "0xa000604b0020a000620b0060023f60020cc00620b00600213100200220b", - "0xa200620b00600213500217d00620b0060a00cc00705b0020a000620b006", - "0x600c0020a400620b00617e00644b00217e00620b00617d0a200705d002", - "0x620b00600700612b0020cd00620b00600600601600217f00620b006002", - "0x20b00600211e0020a80d20cd17f00c0060a800620b0060a400644c0020d2", - "0x200903500201600620b00601600603900201600620b006002048002002", - "0x635a00200220b00600200900201501400756b01000f00720b007016006", - "0x20b0070170061c500200f00620b00600f00600c00201700c00720b00600c", - "0x656d00200220b00600c00604d00200220b00600200900201b00656c002", - "0x20b00601c0060e500201c00620b0060190070071b400201900620b006009", - "0xe700205400620b00601000601600206500620b00600f00600c0020c4006", - "0x60f200200220b00600200900211b05406500900611b00620b0060c4006", - "0x2d00620b00601000601600202c00620b00600f00600c00200220b00601b", - "0x2b02a02900920b00602e02d02c00956e00202e00620b00600700600f002", - "0x657100200220b00600200900203000657002f00620b00702b00656f002", - "0x200900203500657303900620b00704800657200204803300720b00602f", - "0x203700620b00600200000211e00620b00603900900757400200220b006", - "0x2a00601600212400620b00602900600c00212000620b00603700c0071c1", - "0x12a00620b00611e00604300203e00620b00603300600f00207d00620b006", - "0x10d00920b00612c12a03e07d1240161ae00212c00620b00612000604b002", - "0x200220b00600200900204100657512b00620b00703c00601400203c03a", - "0x60e500204500620b00612d0430071b400212d04300720b00612b006015", - "0x620b00603a00601600204700620b00610d00600c00212e00620b006045", - "0x220b00600200900213013104700900613000620b00612e0060e7002131", - "0x3a00601600204b00620b00610d00600c00204d00620b0060410061b8002", - "0x200900204f04e04b00900604f00620b00604d0060e700204e00620b006", - "0x61ba00200220b00600900613600200220b00600c00604d00200220b006", - "0x20b0060510060e500205100620b0061320330071b400213200620b006035", - "0xe700205600620b00602a00601600212f00620b00602900600c002053006", - "0x604d00200220b00600200900213305612f00900613300620b006053006", - "0x205800620b0060300061b800200220b00600900613600200220b00600c", - "0x60580060e700213400620b00602a00601600213600620b00602900600c", - "0x20b00600c00604d00200220b00600200900205b13413600900605b00620b", - "0x20b00600213100200220b00600700606100200220b006009006136002002", - "0x705b00205d00620b00605d00604b00205d00620b006002134002135006", - "0x20b00613705f00705d00205f00620b00600213500213700620b00605d135", - "0x1600206400620b00601400600c00213800620b0060610061b8002061006", - "0x206713906400900606700620b0061380060e700213900620b006015006", - "0xf01600757600200f00620b00600600612b00201600620b006002006016", - "0x200900201400657801000620b00700c00657700200c00900700920b006", - "0x201700620b00601500657a00201500620b00601000657900200220b006", - "0x57d00200220b00601b00657c0020650c401c01901b01620b00601700657b", - "0x200220b00606500604d00200220b0060c40060fa00200220b006019006", - "0x600700601600211b00620b00605400657f00205400620b00601c00657e", - "0x602b00620b00611b00658000202a00620b00600900612b00202900620b", - "0x1600202c00620b00601400658100200220b00600200900202b02a029009", - "0x20b00602c00658000202e00620b00600900612b00202d00620b006007006", - "0x600600612b00201600620b00600200601600202f02e02d00900602f006", - "0x20b00700c00657700200c00900700920b00600f01600757600200f00620b", - "0x201500620b00601000657900200220b006002009002014006582010006", - "0x20650c401c01901b01620b00601700657b00201700620b00601500657a", - "0x220b0060c40060fa00200220b00601c0060fa00200220b00601b00657c", - "0x605400658400205400620b00601900658300200220b00606500604d002", - "0x202a00620b00600900612b00202900620b00600700601600211b00620b", - "0x58600200220b00600200900202b02a02900900602b00620b00611b006585", - "0x20b00600900612b00202d00620b00600700601600202c00620b006014006", - "0x20b00600206400202f02e02d00900602f00620b00602c00658500202e006", - "0x900612b00201c00620b00600700601600200220b006002139002017006", - "0x1501700713b00201901501b00920b0060c401c0075760020c400620b006", - "0x20b00600200900205400658706500620b00701900657700201500620b006", - "0x657b00202900620b00611b00657a00211b00620b006065006579002002", - "0x2c0060fa00200220b00602a00657c00202e02d02c02b02a01620b006029", - "0x1d400202b00620b00602b00658800200220b00602e00604d00200220b006", - "0x3711e03503904803303001020b00602f0061eb00202f00620b00602b006", - "0x20b00603900606100200220b0060480061ef00200220b0060330060fa002", - "0x603700604d00200220b00611e00604d00200220b00603500604d002002", - "0x13000203a00620b00600200000210d12000720b00603000613000200220b", - "0x20b00610d0061b200200220b00603c00604d00212403c00720b00603a006", - "0x1b200200220b00603e00604d00212a03e00720b00607d00613000207d006", - "0x612b00604d00204112b00720b00612c00613000212c00620b006124006", - "0x4b00212d00620b0060410061b200204300620b00612a0061b200200220b", - "0x604500604b00204500620b00612d0430071c100204300620b006043006", - "0x212000620b00612000604b00202d00620b00602d0063f100204500620b", - "0x20b00600202a00200220b00600200900212e00658900220b0070450061c5", - "0x2d00213000620b00613100602c00213100620b00604700602e002047006", - "0x202a00200220b00612e0060f200200220b00600200900200258a006002", - "0x13000620b00604b00602c00204b00620b00604d00602b00204d00620b006", - "0x4e00603000204e00620b00604e00602c00204e00620b00613000602f002", - "0x220b00604f00603300200220b00600200900213200658b04f00620b007", - "0x200220b00600200900200258c00600202d00200220b00612000604d002", - "0x605100604d00205305100720b00612000613000200220b006132006033", - "0x4d00213305600720b00612f00613000212f00620b00600230000200220b", - "0x620b0061330061b200205800620b0060530061b200200220b006056006", - "0x1c500213400620b00613400604b00213400620b0061360580071c1002136", - "0x620b00600202a00200220b00600200900205b00658d00220b007134006", - "0x202d00213700620b00605d00602c00205d00620b00613500602e002135", - "0x600202a00200220b00605b0060f200200220b00600200900200258e006", - "0x213700620b00606100602c00206100620b00605f00602b00205f00620b", - "0x713800603000213800620b00613800602c00213800620b00613700602f", - "0x200220b00606400603300200220b00600200900213900658f06400620b", - "0x13b00659100213b00620b00606700659000206701600720b00601600635c", - "0x220b00606a0060c400206c06a00720b00606900601c00206900620b006", - "0x6f0060c400213f06f00720b00613c00601c00213c00620b006002592002", - "0x214100620b00613f00605400207100620b00606c00605400200220b006", - "0x200900200259300220b00714107100702900207100620b00607100611b", - "0x200600c00200220b0060140060d000200220b00600211e00200220b006", - "0x14600620b0060160060fc00207900620b00601b00601600207700620b006", - "0x7514500920b00614b14607907700c3f200214b00620b00602d0063f1002", - "0x3f400200220b00600200900214a00659407b00620b0070760063f3002076", - "0x620b00607500601600207f00620b00614500600c00200220b00607b006", - "0x220b00600c00604700200220b00600200900200259500600202d0020c7", - "0x20b00614a00644b00200220b00600f00604d00200220b006010006061002", - "0x1600214e00620b00600600612c00215200620b00614500600c002151006", - "0x20b00615100644c00208300620b00601500612b00214f00620b006075006", - "0x601600659000200220b00600200900208508314f14e152016006085006", - "0x59600215f00620b00600200600c00215e00620b00600206500215000620b", - "0x16315d15f00959700216300620b00615e00611b00215d00620b006150006", - "0x600200900216200659915c00620b00716000659800216016100720b006", - "0x59c00215400620b00608700659b00208700620b00615c00659a00200220b", - "0x615700659e00215715400720b00615400659d00215400620b006154006", - "0x200220b00616e00659f00200220b00615b00604d00216e15b08a00920b", - "0xed0060fa00208e0ed00720b00616800636000216800620b00608a006361", - "0x200220b00616b0060fa0020d016b00720b00602d00636000200220b006", - "0x609200613000209200620b00616c0061bf00216c00620b00608e006361", - "0x209400620b0060d000636100200220b00616d00604d00217116d00720b", - "0x9600604d00217509600720b00617300613000217300620b0060940061bf", - "0x209900620b0061750061b20020d100620b0061710061b200200220b006", - "0x1760061c500217600620b00617600604b00217600620b0060990d10071c1", - "0x15400720b00615400659d00200220b00600200900209b0065a000220b007", - "0x59f00200220b00609d0060fa0020cc17c09d00920b00617a00659e00217a", - "0x17d00620b0060025a10020a000620b00617c0061b200200220b0060cc006", - "0x4b0020a200620b00617d17e0071c100217e0a000720b0060a000635a002", - "0x60020090020a40065a200220b0070a20061c50020a200620b0060a2006", - "0x602c00217f00620b00601400602f00200220b0060a000604d00200220b", - "0x60020090020d20065a30cd00620b00717f00603000217f00620b00617f", - "0x60160020a800620b00616100600c00200220b0060cd00603300200220b", - "0x620b00600c0060410020ce00620b00601500612b00218000620b00601b", - "0x220b0060d200603300200220b0060020090020025a400600202d0020ab", - "0x60c60065a50020b30c60cb0ca0c90c80cf18101420b00600c006371002", - "0x18f00620b00601b0060160020bd00620b00616100600c00218e0b500720b", - "0xbd00c5370020bf00620b00618e0064500020be00620b00601500612b002", - "0x65a60c100620b0070bb00618f0020bb0ba0b90b700c20b0060bf0be18f", - "0x60b700600c0020c300620b0060c10060be00200220b006002009002190", - "0x219f00620b0060ba00612b0020d600620b0060b90060160021a000620b", - "0x1a000c5a80020d700620b0060d700611b0020d70c300720b0060c30065a7", - "0x65a90d900620b00719d0063bc00219d0d419c19b00c20b0060d719f0d6", - "0x620b00600259200200220b0060d90063bd00200220b0060020090021a1", - "0x611b0020df00620b0060c300611b0021a500620b00619b00600c0020db", - "0x1a400618f0021a41a300720b0061a60df1a50095aa0021a600620b0060db", - "0x620b0061b20060be00200220b0060020090021ad0065ab1b200620b007", - "0x64500021ba00620b0060d400612b0021b800620b00619c0060160021ae", - "0xea1bd1ba1b800c4510020ea00620b0061ae00611b0021bd00620b0060b5", - "0x20090021bf0065ac0ec00620b0070e70064520020e70e51b400920b006", - "0x200220b0061c10060330021c10ef00720b0060ec00645300200220b006", - "0x20b0061a300600c0021c500620b0060b30ef0cb0ca0c90c80cf18101412a", - "0x410020ce00620b0060e500612b00218000620b0061b40060160020a8006", - "0xf20060fa0021c80f40f200920b00615400659e0020ab00620b0061c5006", - "0xf0021ca00620b0061c800605300200220b0060f400604d00200220b006", - "0x70f80060770020f81d400720b0061d60060760021d600620b0061ca006", - "0x1ef00620b0061d400601b00200220b0060020090020fa0065ad1eb00620b", - "0x60c40021f60fe00720b0060fc00601c0020fc00620b0061ef006019002", - "0x1f91f800720b00610000601c00210000620b00600206500200220b0060fe", - "0x61f90060540022f600620b0061f600605400200220b0061f80060c4002", - "0x5ae00220b0071032f60070290022f600620b0062f600611b00210300620b", - "0x20b0061fb00602b0021fb00620b00600202a00200220b006002009002002", - "0x60020090020025af00600202d00220600620b0061ff00602c0021ff006", - "0x602c00230000620b00600000602e00200000620b00600202a00200220b", - "0x620b00630400602c00230400620b00620600602f00220600620b006300", - "0x3300200220b0060020090023070065b030500620b007304006030002304", - "0x20b00630800604d00230930800720b0061eb00613000200220b006305006", - "0x604d00230c30b00720b00630a00613000230a00620b0060020ef002002", - "0x30f00720b00630e00613000230e00620b0063090061b200200220b00630b", - "0x31100613000231100620b00630c0061b200200220b00630f00604d002310", - "0x31400620b0063100061b200200220b00631200604d00231331200720b006", - "0x604b00231600620b0063153140071c100231500620b0063130061b2002", - "0x20b0060020090023170065b100220b0073160061c500231600620b006316", - "0x31a00602c00231a00620b00631900602e00231900620b00600202a002002", - "0x3170060f200200220b0060020090020025b200600202d00231b00620b006", - "0x2c00232000620b00631c00602b00231c00620b00600202a00200220b006", - "0x20b00632100602c00232100620b00631b00602f00231b00620b006320006", - "0x3000232200620b00632200602c00232200620b00632100602f002321006", - "0x632600603300200220b0060020090023280065b332600620b007322006", - "0x32c32b01420b00632a00637100232a32900720b0060ab00607f00200220b", - "0x220b00632c00639b00200220b00632b00639500233433321233233132d", - "0x20b00621200639700200220b00633200639800200220b006331006399002", - "0x618000601600200220b00633400620c00200220b006333006396002002", - "0x233b00620b00632d0063d300221100620b0060ce00612b00233900620b", - "0x5b433d00620b00733700615100233733633500920b00633b2113390093d4", - "0x34000613000234000620b00633d00615200200220b00600200900233f006", - "0x221000620b0060020ef00200220b00634200604d00234334200720b006", - "0x63430061b200200220b00634500604d00234634500720b006210006130", - "0x200220b00634800604d00234934800720b00634700613000234700620b", - "0x34b00604d00234c34b00720b00634a00613000234a00620b0063460061b2", - "0x234e00620b00634c0061b200234d00620b0063490061b200200220b006", - "0x34f0061c500234f00620b00634f00604b00234f00620b00634e34d0071c1", - "0x235100620b00600202a00200220b0060020090023500065b500220b007", - "0x5b600600202d00235300620b00635200602c00235200620b00635100602e", - "0x620b00600202a00200220b0063500060f200200220b006002009002002", - "0x602f00235300620b00635400602c00235400620b00620f00602b00220f", - "0x620b00635500602f00235500620b00635500602c00235500620b006353", - "0x35a0065b735700620b00735600603000235600620b00635600602c002356", - "0x200220b00635700603300200220b00600211e00200220b006002009002", - "0x600612c00236900620b0060a800600c00235c35b00720b00632900607f", - "0x37100620b00633600612b00236f00620b00633500601600236e00620b006", - "0x1000600f00237300620b00600f00604b00237200620b00635c006041002", - "0x36536136001620b00637437337237136f36e3690105b800237400620b006", - "0x200220b0060020090023780065b920e00620b0073680060ed002368366", - "0x637a00602c00237a00620b00637900602f00237900620b00620e00608e", - "0x220b00600200900237c0065ba37b00620b00737a00603000237a00620b", - "0x637d35b00748400237d00620b00600202a00200220b00637b006033002", - "0x238000620b00636000600c00237f00620b00637e00648500237e00620b", - "0x636600612b00238200620b00636500601600238100620b00636100612c", - "0x900238538338238138001600638500620b00637f00644c00238300620b", - "0x13100200220b00635b00604700200220b00637c00603300200220b006002", - "0x38900620b00638900604b00238900620b0060025bb00238800620b006002", - "0x20d00705d00220d00620b00600213500238a00620b00638938800705b002", - "0x620b00636000600c00238c00620b00638b00644b00238b00620b00638a", - "0x612b00238f00620b00636500601600238e00620b00636100612c00238d", - "0x39239138f38e38d01600639200620b00638c00644c00239100620b006366", - "0x620b00637800644b00200220b00635b00604700200220b006002009002", - "0x601600239600620b00636100612c00220c00620b00636000600c002395", - "0x620b00639500644c00239800620b00636600612b00239700620b006365", - "0x220b00600211e00200220b00600200900239939839739620c016006399", - "0x20b00600f00604d00200220b00601000606100200220b00635a006033002", - "0x20b0060024bd00239a00620b00600213100200220b006329006047002002", - "0x239c00620b00639b39a00705b00239b00620b00639b00604b00239b006", - "0x639e00644b00239e00620b00639c39d00705d00239d00620b006002135", - "0x23a100620b00600600612c0023a000620b0060a800600c00239f00620b", - "0x639f00644c0023a300620b00633600612b0023a200620b006335006016", - "0x600211e00200220b0060020090023a43a33a23a13a00160063a400620b", - "0x32900604700200220b00600f00604d00200220b00601000606100200220b", - "0x23a600620b0060a800600c0023a500620b00633f00644b00200220b006", - "0x633600612b0023a800620b0063350060160023a700620b00600600612c", - "0x90023aa3a93a83a73a60160063aa00620b0063a500644c0023a900620b", - "0x606100200220b00632800603300200220b00600211e00200220b006002", - "0x13100200220b0060ab00604700200220b00600f00604d00200220b006010", - "0x3ac00620b0063ac00604b0023ac00620b0060023f60023ab00620b006002", - "0x3ae00705d0023ae00620b0060021350023ad00620b0063ac3ab00705b002", - "0x620b0060a800600c0023b000620b0063af00644b0023af00620b0063ad", - "0x612b0023b300620b0061800060160023b200620b00600600612c0023b1", - "0x3b53b43b33b23b10160063b500620b0063b000644c0023b400620b0060ce", - "0x200220b00630700603300200220b00600211e00200220b006002009002", - "0x220b0060ab00604700200220b00600f00604d00200220b006010006061", - "0x620b0060025bc0023b600620b00600213100200220b0061eb00604d002", - "0x1350023b800620b0063b73b600705b0023b700620b0063b700604b0023b7", - "0x20b0063ba00644b0023ba00620b0063b83b900705d0023b900620b006002", - "0x160023bd00620b00600600612c0023bc00620b0060a800600c0023bb006", - "0x20b0063bb00644c0023bf00620b0060ce00612b0023be00620b006180006", - "0x20b00600211e00200220b0060020090023c03bf3be3bd3bc0160063c0006", - "0x600f00604d00200220b00601000606100200220b0060fa006033002002", - "0x600213100200220b0061d400606100200220b0060ab00604700200220b", - "0x5b0023c200620b0063c200604b0023c200620b0060025bc0023c100620b", - "0x63c33c400705d0023c400620b0060021350023c300620b0063c23c1007", - "0x23c700620b0060a800600c0023c600620b0063c500644b0023c500620b", - "0x60ce00612b0023c900620b0061800060160023c800620b00600600612c", - "0x90022173ca3c93c83c701600621700620b0063c600644c0023ca00620b", - "0x606100200220b0061540065bd00200220b00600211e00200220b006002", - "0x39500200220b0060b300620c00200220b00600f00604d00200220b006010", - "0x200220b0060ca00639800200220b0060cb00639700200220b006181006", - "0x220b0060cf00639b00200220b0060c800639a00200220b0060c9006399", - "0x600612c0023cc00620b0061a300600c0023cb00620b0061bf00644b002", - "0x3ce00620b0060e500612b00221800620b0061b40060160023cd00620b006", - "0x20b0060020090023cf3ce2183cd3cc0160063cf00620b0063cb00644c002", - "0x20b00601000606100200220b0061540065bd00200220b00600211e002002", - "0x60cf00639b00200220b0060c800639a00200220b00600f00604d002002", - "0xcb00639700200220b00618100639500200220b0060b300620c00200220b", - "0x639600200220b0060c900639900200220b0060ca00639800200220b006", - "0x3d100620b0061a300600c0023d000620b0061ad00644b00200220b0060b5", - "0xd400612b0023d300620b00619c0060160023d200620b00600600612c002", - "0x23d53d43d33d23d10160063d500620b0063d000644c0023d400620b006", - "0x6100200220b0061540065bd00200220b00600211e00200220b006002009", - "0x200220b0060c800639a00200220b00600f00604d00200220b006010006", - "0x220b00618100639500200220b0060b300620c00200220b0060cf00639b", - "0x20b0060c900639900200220b0060ca00639800200220b0060cb006397002", - "0x61a100644b00200220b0060c30060c400200220b0060b5006396002002", - "0x23d800620b00600600612c0023d700620b00619b00600c0023d600620b", - "0x63d600644c0023da00620b0060d400612b0023d900620b00619c006016", - "0x600211e00200220b0060020090023db3da3d93d83d70160063db00620b", - "0xf00604d00200220b00601000606100200220b0061540065bd00200220b", - "0x639b00200220b0060b500639600200220b0060c800639a00200220b006", - "0x39700200220b00618100639500200220b0060b300620c00200220b0060cf", - "0x200220b0060c900639900200220b0060ca00639800200220b0060cb006", - "0x600600612c0023dd00620b0060b700600c0023dc00620b00619000644b", - "0x23e000620b0060ba00612b0023df00620b0060b90060160023de00620b", - "0x220b0060020090023e13e03df3de3dd0160063e100620b0063dc00644c", - "0x20b0060a000635a0023e200620b00600222100200220b0060a40060f2002", - "0x3e300620b0063e300604b0023e300620b0063e23e40071c10023e40a0007", - "0xa000604d00200220b0060020090023e50065be00220b0073e30061c5002", - "0x23e600620b0063e600602c0023e600620b00601400602f00200220b006", - "0x3e700603300200220b0060020090023e80065bf3e700620b0073e6006030", - "0x23ea00620b00601b0060160023e900620b00616100600c00200220b006", - "0x5c000600202d0023ec00620b00600c0060410023eb00620b00601500612b", - "0x20b00600c00637100200220b0063e800603300200220b006002009002002", - "0xc0023f63f500720b0063f30065a50023f43f33f23f13f03ef3ee3ed014", - "0x20b00601500612b0023fc00620b00601b0060160023fb00620b006161006", - "0xc20b0063fe3fd3fc3fb00c5370023fe00620b0063f60064500023fd006", - "0x20b0060020090023ff0065c121b00620b0073fa00618f0023fa3f93f83f7", - "0x601600243d00620b0063f700600c00240000620b00621b0060be002002", - "0x720b0064000065a700243e00620b0063f900612b00221a00620b0063f8", - "0xc20b00643f43e21a43d00c5a800243f00620b00643f00611b00243f400", - "0x20b0060020090024410065c244000620b00743c0063bc00243c403402401", - "0x640100600c00244200620b00600259200200220b0064400063bd002002", - "0x244700620b00644200611b00244600620b00640000611b00244500620b", - "0x65c344800620b00744400618f00244444300720b0064474464450095aa", - "0x640200601600244a00620b0064480060be00200220b006002009002449", - "0x244f00620b0063f500645000244e00620b00640300612b00221900620b", - "0x44d44c44b00920b00645044f44e21900c45100245000620b00644a00611b", - "0x645300200220b0060020090024520065c445100620b00744d006452002", - "0x3f03ef3ee3ed01412a00200220b00645400603300245445300720b006451", - "0x44b0060160023e900620b00644300600c00245500620b0063f44533f23f1", - "0x3ec00620b0064550060410023eb00620b00644c00612b0023ea00620b006", - "0x604d00200220b0064560060fa00245845745600920b00615400659e002", - "0x47f00720b00645900601c00245900620b00645800601900200220b006457", - "0x648100601c00248100620b00600206500200220b00647f0060c4002480", - "0x249b00620b00648000605400200220b0064840060c400248548400720b", - "0x49c49b00702900249b00620b00649b00611b00249c00620b006485006054", - "0x2b00249e00620b00600202a00200220b0060020090020025c500220b007", - "0x25c600600202d00249f00620b00621600602c00221600620b00649e006", - "0x620b0064a000602e0024a000620b00600202a00200220b006002009002", - "0x602c0024b600620b00649f00602f00249f00620b0064b500602c0024b5", - "0x60020090024b90065c74b800620b0074b60060300024b600620b0064b6", - "0x3710024bb4ba00720b0063ec00607f00200220b0064b800603300200220b", - "0x220b0064bd0063950024ea4d84d74d64d34d24c84bd01420b0064bb006", - "0x20b0064d600639800200220b0064d300639900200220b0064c800639b002", - "0x64ea00620c00200220b0064d800639600200220b0064d7006397002002", - "0x3d30024fb00620b0063eb00612b0024fa00620b0063ea00601600200220b", - "0x1510024f42154eb00920b0064fc4fb4fa0093d40024fc00620b0064d2006", - "0x650100615200200220b00600200900250d0065c850100620b0074f4006", - "0x200220b00650f00604d00252850f00720b00650e00613000250e00620b", - "0x652900604d00252a52900720b00621400613000221400620b0060020ef", - "0x252d52c00720b00652b00613000252b00620b0065280061b200200220b", - "0x20b00652e00613000252e00620b00652a0061b200200220b00652c00604d", - "0x1b200253100620b00652d0061b200200220b00652f00604d00253052f007", - "0x653300604b00253300620b0065325310071c100253200620b006530006", - "0x200220b0060020090025340065c900220b0075330061c500253300620b", - "0x20b00653600602c00253600620b00653500602e00253500620b00600202a", - "0x20b0065340060f200200220b0060020090020025ca00600202d002537006", - "0x53a00602c00253a00620b00653900602b00253900620b00600202a002002", - "0x21300620b00621300602c00221300620b00653700602f00253700620b006", - "0x53b00603000253b00620b00653b00602c00253b00620b00621300602f002", - "0x220b00653c00603300200220b00600200900253d0065cb53c00620b007", - "0x65450063fb00254854754654554454354254101420b0064ba006371002", - "0x56800620b0064eb00601600256700620b0063e900600c00255054d00720b", - "0x56700c3fd00256e00620b0065500063fc00256d00620b00621500612b002", - "0x65cc56f00620b0075660060c800256655f55655300c20b00656e56d568", - "0x65720063fe00257200620b00656f0060c900200220b006002009002571", - "0x57900720b00657600613000200220b00657400634900257757657400920b", - "0x657b00613000257b00620b0060023f700200220b00657900604d00257a", - "0x257e00620b00657a0061b200200220b00657c00604d00257d57c00720b", - "0x58000604b00258000620b00657f57e0071c100257f00620b00657d0061b2", - "0x220b0060020090025810065cd00220b0075800061c500258000620b006", - "0x658400602c00258400620b00658300602e00258300620b00600202a002", - "0x65810060f200200220b0060020090020025ce00600202d00258500620b", - "0x602c00258800620b00658600602b00258600620b00600202a00200220b", - "0x620b00659000602c00259000620b00658500602f00258500620b006588", - "0x3300200220b0060020090025920065cf59100620b007590006030002590", - "0x20b00659600604d00259759600720b00657700613000200220b006591006", - "0x604d00259b59a00720b00659800613000259800620b0060020ef002002", - "0x59d00720b00659c00613000259c00620b0065970061b200200220b00659a", - "0x59f00613000259f00620b00659b0061b200200220b00659d00604d00259e", - "0x5a700620b00659e0061b200200220b0065a100604d0025a55a100720b006", - "0x604b0025aa00620b0065a85a70071c10025a800620b0065a50061b2002", - "0x20b0060020090025b80065d000220b0075aa0061c50025aa00620b0065aa", - "0x5bc00602c0025bc00620b0065bb00602e0025bb00620b00600202a002002", - "0x5b80060f200200220b0060020090020025d100600202d0025bd00620b006", - "0x2c0025d200620b00622100602b00222100620b00600202a00200220b006", - "0x20b0065d300602c0025d300620b0065bd00602f0025bd00620b0065d2006", - "0x300025d400620b0065d400602c0025d400620b0065d300602f0025d3006", - "0x20b00600211e00200220b0060020090025d60065d522200620b0075d4006", - "0x654854754654d54454354254101412a00200220b006222006033002002", - "0x5da00620b00655300600c0025d95d800720b0065d700607f0025d700620b", - "0x55f00612b0025dc00620b0065560060160025db00620b00600600612c002", - "0x5df00620b00600f00604b0025de00620b0065d90060410025dd00620b006", - "0x20b0065e05df5de5dd5dc5db5da0105b80025e000620b00601000600f002", - "0x20b0075e50060ed0025d800620b0065d80060410025e55e45e35e25e1016", - "0x25e900620b0065e600608e00200220b0060020090025e80065e75e6006", - "0x75ea0060300025ea00620b0065ea00602c0025ea00620b0065e900602f", - "0x200220b0065eb00603300200220b0060020090025ed0065ec5eb00620b", - "0x65ef0064850025ef00620b0065ee5d80074840025ee00620b00600202a", - "0x25f200620b0065e200612c0025f100620b0065e100600c0025f000620b", - "0x65f000644c0025f400620b0065e400612b0025f300620b0065e3006016", - "0x5ed00603300200220b0060020090025f55f45f35f25f10160065f500620b", - "0x25bb0025f600620b00600213100200220b0065d800604700200220b006", - "0x620b0065f75f600705b0025f700620b0065f700604b0025f700620b006", - "0x644b0025fa00620b0065f85f900705d0025f900620b0060021350025f8", - "0x620b0065e200612c0025fc00620b0065e100600c0025fb00620b0065fa", - "0x644c0025ff00620b0065e400612b0025fe00620b0065e30060160025fd", - "0x4700200220b0060020090026005ff5fe5fd5fc01600660000620b0065fb", - "0x620b0065e100600c00260100620b0065e800644b00200220b0065d8006", - "0x612b00260400620b0065e300601600260300620b0065e200612c002602", - "0x60660560460360201600660600620b00660100644c00260500620b0065e4", - "0x200220b0065d600603300200220b00600211e00200220b006002009002", - "0x220b00654800620c00200220b00600f00604d00200220b006010006061", - "0x20b00654d00639800200220b00654600639700200220b006547006396002", - "0x654200639b00200220b00654300639a00200220b006544006399002002", - "0x60023f600260700620b00600213100200220b00654100639500200220b", - "0x60900620b00660860700705b00260800620b00660800604b00260800620b", - "0x60b00644b00260b00620b00660960a00705d00260a00620b006002135002", - "0x60e00620b00600600612c00260d00620b00655300600c00260c00620b006", - "0x60c00644c00261000620b00655f00612b00260f00620b006556006016002", - "0x211e00200220b00600200900261161060f60e60d01600661100620b006", - "0x604d00200220b00601000606100200220b00659200603300200220b006", - "0x39700200220b00654700639600200220b00654800620c00200220b00600f", - "0x200220b00654400639900200220b00654d00639800200220b006546006", - "0x220b00654100639500200220b00654200639b00200220b00654300639a", - "0x620b00600250100222600620b00600213100200220b00657700604d002", - "0x13500261300620b00661222600705b00261200620b00661200604b002612", - "0x20b00661500644b00261500620b00661361400705d00261400620b006002", - "0x1600261800620b00600600612c00261700620b00655300600c002616006", - "0x20b00661600644c00222500620b00655f00612b00261900620b006556006", - "0x20b00600211e00200220b00600200900261a22561961861701600661a006", - "0x654800620c00200220b00600f00604d00200220b006010006061002002", - "0x54d00639800200220b00654600639700200220b00654700639600200220b", - "0x639b00200220b00654300639a00200220b00654400639900200220b006", - "0x261b00620b00657100644b00200220b00654100639500200220b006542", - "0x655600601600261d00620b00600600612c00261c00620b00655300600c", - "0x662000620b00661b00644c00261f00620b00655f00612b00261e00620b", - "0x3300200220b00600211e00200220b00600200900262061f61e61d61c016", - "0x200220b00600f00604d00200220b00601000606100200220b00653d006", - "0x22400620b0060024bd00262100620b00600213100200220b0064ba006047", - "0x213500262200620b00622462100705b00222400620b00622400604b002", - "0x620b00662400644b00262400620b00662262300705d00262300620b006", - "0x601600262700620b00600600612c00262600620b0063e900600c002625", - "0x620b00662500644c00262900620b00621500612b00262800620b0064eb", - "0x220b00600211e00200220b00600200900262a62962862762601600662a", - "0x20b0064ba00604700200220b00600f00604d00200220b006010006061002", - "0x612c00262c00620b0063e900600c00262b00620b00650d00644b002002", - "0x620b00621500612b00262e00620b0064eb00601600262d00620b006006", - "0x600200900263062f62e62d62c01600663000620b00662b00644c00262f", - "0x601000606100200220b0064b900603300200220b00600211e00200220b", - "0x600213100200220b0063ec00604700200220b00600f00604d00200220b", - "0x5b00263200620b00663200604b00263200620b0060025bc00263100620b", - "0x663363400705d00263400620b00600213500263300620b006632631007", - "0x263600620b0063e900600c00222300620b00663500644b00263500620b", - "0x63eb00612b00263800620b0063ea00601600263700620b00600600612c", - "0x900263a63963863763601600663a00620b00622300644c00263900620b", - "0x606100200220b0061540065bd00200220b00600211e00200220b006002", - "0x39500200220b0063f400620c00200220b00600f00604d00200220b006010", - "0x200220b0063f100639800200220b0063f200639700200220b0063ed006", - "0x220b0063ee00639b00200220b0063ef00639a00200220b0063f0006399", - "0x600612c00263c00620b00644300600c00263b00620b00645200644b002", - "0x63f00620b00644c00612b00263e00620b00644b00601600263d00620b006", - "0x20b00600200900264063f63e63d63c01600664000620b00663b00644c002", - "0x20b00601000606100200220b0061540065bd00200220b00600211e002002", - "0x63ee00639b00200220b0063ef00639a00200220b00600f00604d002002", - "0x3f200639700200220b0063ed00639500200220b0063f400620c00200220b", - "0x639600200220b0063f000639900200220b0063f100639800200220b006", - "0x64200620b00644300600c00264100620b00644900644b00200220b0063f5", - "0x40300612b00264400620b00640200601600264300620b00600600612c002", - "0x264664564464364201600664600620b00664100644c00264500620b006", - "0x6100200220b0061540065bd00200220b00600211e00200220b006002009", - "0x200220b0063ef00639a00200220b00600f00604d00200220b006010006", - "0x220b0063ed00639500200220b0063f400620c00200220b0063ee00639b", - "0x20b0063f000639900200220b0063f100639800200220b0063f2006397002", - "0x644100644b00200220b0064000060c400200220b0063f5006396002002", - "0x264900620b00600600612c00264800620b00640100600c00264700620b", - "0x664700644c00264b00620b00640300612b00264a00620b006402006016", - "0x600211e00200220b00600200900264c64b64a64964801600664c00620b", - "0xf00604d00200220b00601000606100200220b0061540065bd00200220b", - "0x639b00200220b0063f500639600200220b0063ef00639a00200220b006", - "0x39700200220b0063ed00639500200220b0063f400620c00200220b0063ee", - "0x200220b0063f000639900200220b0063f100639800200220b0063f2006", - "0x600600612c00222000620b0063f700600c00264d00620b0063ff00644b", - "0x265000620b0063f900612b00264f00620b0063f800601600264e00620b", - "0x220b00600200900265165064f64e22001600665100620b00664d00644c", - "0x20b0060a000635a00265200620b0060025d200200220b0063e50060f2002", - "0x65400620b00665400604b00265400620b0066526530071c10026530a0007", - "0xa000604d00200220b00600200900265600665500220b0076540061c5002", - "0x265700620b00665700602c00265700620b00601400602f00200220b006", - "0x65800603300200220b00600200900265a00665965800620b007657006030", - "0x265c00620b00601b00601600265b00620b00616100600c00200220b006", - "0x65f00600202d00265e00620b00600c00604100265d00620b00601500612b", - "0x20b00600c00637100200220b00665a00603300200220b006002009002002", - "0xc00266866700720b0066660065d300266621f665664663662661660014", - "0x20b00601500612b00266a00620b00601b00601600266900620b006161006", - "0xc20b00666c66b66a66900c53d00266c00620b00666800644d00266b006", - "0x20b00600200900267300667267100620b00767000618f00267066f66e66d", - "0x601600267400620b00666d00600c00221e00620b0066710060be002002", - "0x720b00621e0065a700267600620b00666f00612b00267500620b00666e", - "0xc20b00667767667567400c5a800267700620b00667700611b00267721e", - "0x20b00600200900267e00667d67c00620b00767b0063bc00267b67a679678", - "0x667800600c00267f00620b00600259200200220b00667c0063bd002002", - "0x268200620b00667f00611b00268100620b00621e00611b00268000620b", - "0x668668500620b00768400618f00268468300720b0066826816800095aa", - "0x667900601600268800620b0066850060be00200220b006002009002687", - "0x268b00620b00666700644d00268a00620b00667a00612b00268900620b", - "0x21d68e68d00920b00668c68b68a68900c21900268c00620b00668800611b", - "0x644f00200220b00600200900269100669068f00620b00721d00644e002", - "0x66366266166001412a00200220b00669300603300269369200720b00668f", - "0x68d00601600265b00620b00668300600c00269400620b00669221f665664", - "0x65e00620b00669400604100265d00620b00668e00612b00265c00620b006", - "0x604d00200220b0066950060fa00269769669500920b00615400659e002", - "0x69900620b00669800600f00269800620b00669700605300200220b006696", - "0x69d00669c69b00620b00769a00607700269a21c00720b006699006076002", - "0x20b00669e00601900269e00620b00621c00601b00200220b006002009002", - "0x6500200220b0066a00060c40026a16a000720b00669f00601c00269f006", - "0x20b0066a30060c40026a46a300720b0066a200601c0026a200620b006002", - "0x611b0026a600620b0066a40060540026a500620b0066a1006054002002", - "0x20b0060020090020026a700220b0076a66a50070290026a500620b0066a5", - "0x6a900602c0026a900620b0066a800602b0026a800620b00600202a002002", - "0x600202a00200220b0060020090020026ab00600202d0026aa00620b006", - "0x26aa00620b0066ad00602c0026ad00620b0066ac00602e0026ac00620b", - "0x76ae0060300026ae00620b0066ae00602c0026ae00620b0066aa00602f", - "0x200220b0066af00603300200220b0060020090026b10066b06af00620b", - "0x665e00637100200220b0060020090026b30066b200220b00769b0061c5", - "0x26bd6bc00720b0066b70063dd0026bb6ba6b96b86b76b66b56b401420b", - "0x66bd0063de0026bf00620b00665d00612b0026be00620b00665c006016", - "0x76c30061510026c36c26c100920b0066c06bf6be0093df0026c000620b", - "0x6c700620b0066c400615200200220b0060020090026c60066c56c400620b", - "0x60020ef00200220b0066c800604d0026c96c800720b0066c7006130002", - "0x200220b0066cb00604d0026cc6cb00720b0066ca0061300026ca00620b", - "0x6ce6cd0071c10026ce00620b0066cc0061b20026cd00620b0066c90061b2", - "0x6d000220b0076cf0061c50026cf00620b0066cf00604b0026cf00620b006", - "0x622a00602e00222a00620b00600202a00200220b0060020090026d1006", - "0x20090020026d400600202d0026d300620b0066d200602c0026d200620b", - "0x602b0026d500620b00600202a00200220b0066d10060f200200220b006", - "0x620b0066d300602f0026d300620b00622b00602c00222b00620b0066d5", - "0x6d90066d86d700620b0076d60060300026d600620b0066d600602c0026d6", - "0x6bc6b66b56b401412a00200220b0066d700603300200220b006002009002", - "0x6c200612b0026db00620b0066c10060160026da00620b0066bb6ba6b96b8", - "0x90020026de00600202d0026dd00620b0066da0060410026dc00620b006", - "0x606100200220b0066d900603300200220b00600211e00200220b006002", - "0x39600200220b0066bb00620c00200220b00600f00604d00200220b006010", - "0x200220b0066b800639800200220b0066b900639700200220b0066ba006", - "0x220b0066b500639b00200220b0066b600639a00200220b0066bc006399", - "0x620b0060023e10026df00620b00600213100200220b0066b4006395002", - "0x1350026e100620b0066e06df00705b0026e000620b0066e000604b0026e0", - "0x20b0066e300644b0026e300620b0066e16e200705d0026e200620b006002", - "0x160026e600620b00600600612c0026e500620b00665b00600c0026e4006", - "0x20b0066e400644c0026e800620b0066c200612b0026e700620b0066c1006", - "0x20b00600211e00200220b0060020090026e96e86e76e66e50160066e9006", - "0x66bb00620c00200220b00600f00604d00200220b006010006061002002", - "0x6b800639800200220b0066b900639700200220b0066ba00639600200220b", - "0x639b00200220b0066b600639a00200220b0066bc00639900200220b006", - "0x26ea00620b0066c600644b00200220b0066b400639500200220b0066b5", - "0x66c10060160026ec00620b00600600612c0026eb00620b00665b00600c", - "0x66ef00620b0066ea00644c0026ee00620b0066c200612b0026ed00620b", - "0x200220b0066b30060f200200220b0060020090026ef6ee6ed6ec6eb016", - "0x665e0060410026dc00620b00665d00612b0026db00620b00665c006016", - "0x6f201420b0066f10063710026f16f000720b0066dd00607f0026dd00620b", - "0x20b0066f300639b00200220b0066f20063950026f96f86f76f66f56f46f3", - "0x66f700639700200220b0066f600639800200220b0066f5006399002002", - "0x6db00601600200220b0066f900620c00200220b0066f800639600200220b", - "0x6fc00620b0066f40063d30026fb00620b0066dc00612b0026fa00620b006", - "0x70000620b0076ff0061510026ff6fe6fd00920b0066fc6fb6fa0093d4002", - "0x613000270300620b00670000615200200220b006002009002702006701", - "0x70600620b0060020ef00200220b00670400604d00270570400720b006703", - "0x7050061b200200220b00670700604d00270870700720b006706006130002", - "0x220b00670900604d00270a70900720b00622e00613000222e00620b006", - "0x604d00270d70c00720b00670b00613000270b00620b0067080061b2002", - "0x70f00620b00670d0061b200270e00620b00670a0061b200200220b00670c", - "0x61c500222d00620b00622d00604b00222d00620b00670f70e0071c1002", - "0x71200620b00600202a00200220b00600200900271100671000220b00722d", - "0x600202d00271400620b00671300602c00271300620b00671200602e002", - "0x20b00600202a00200220b0067110060f200200220b006002009002002715", - "0x2f00271400620b00671700602c00271700620b00671600602b002716006", - "0x20b00671800602f00271800620b00671800602c00271800620b006714006", - "0x671b71a00620b00771900603000271900620b00671900602c002719006", - "0x220b00671a00603300200220b00600211e00200220b00600200900271c", - "0x612c00271f00620b00665b00600c00271e71d00720b0066f000607f002", - "0x620b0066fe00612b00272100620b0066fd00601600272000620b006006", - "0x600f00272400620b00600f00604b00272300620b00671e006041002722", - "0x72772601620b00672572472372272172071f0105d400272500620b006010", - "0x220b00600200900272c00672b72a00620b0077290060ed00272922c728", - "0x72e00602c00272e00620b00672d00602f00272d00620b00672a00608e002", - "0x20b00600200900273100673072f00620b00772e00603000272e00620b006", - "0x73271d00748400273200620b00600202a00200220b00672f006033002002", - "0x73500620b00672600600c00273400620b00673300648500273300620b006", - "0x22c00612b00222900620b00672800601600273600620b00672700612c002", - "0x273873722973673501600673800620b00673400644c00273700620b006", - "0x200220b00671d00604700200220b00673100603300200220b006002009", - "0x620b00673a00604b00273a00620b00600222200273900620b006002131", - "0x705d00273c00620b00600213500273b00620b00673a73900705b00273a", - "0x20b00672600600c00273e00620b00673d00644b00273d00620b00673b73c", - "0x12b00274100620b00672800601600274000620b00672700612c00273f006", - "0x74274174073f01600674300620b00673e00644c00274200620b00622c006", - "0x20b00672c00644b00200220b00671d00604700200220b006002009002743", - "0x1600274600620b00672700612c00274500620b00672600600c002744006", - "0x20b00674400644c00274700620b00622c00612b00222800620b006728006", - "0x20b00600211e00200220b006002009002748747228746745016006748006", - "0x600f00604d00200220b00601000606100200220b00671c006033002002", - "0x60024bd00274900620b00600213100200220b0066f000604700200220b", - "0x74b00620b00674a74900705b00274a00620b00674a00604b00274a00620b", - "0x74d00644b00274d00620b00674b74c00705d00274c00620b006002135002", - "0x74f00620b00600600612c00222700620b00665b00600c00274e00620b006", - "0x74e00644c00275100620b0066fe00612b00275000620b0066fd006016002", - "0x211e00200220b00600200900275275175074f22701600675200620b006", - "0x604700200220b00600f00604d00200220b00601000606100200220b006", - "0x75400620b00665b00600c00275300620b00670200644b00200220b0066f0", - "0x6fe00612b00275600620b0066fd00601600275500620b00600600612c002", - "0x275875775675575401600675800620b00675300644c00275700620b006", - "0x6100200220b0066b100603300200220b00600211e00200220b006002009", - "0x200220b00665e00604700200220b00600f00604d00200220b006010006", - "0x75a00620b0060025bc00275900620b00600213100200220b00669b00604d", - "0x213500275b00620b00675a75900705b00275a00620b00675a00604b002", - "0x620b00675d00644b00275d00620b00675b75c00705d00275c00620b006", - "0x601600276000620b00600600612c00275f00620b00665b00600c00275e", - "0x620b00675e00644c00276200620b00665d00612b00276100620b00665c", - "0x220b00600211e00200220b00600200900276376276176075f016006763", - "0x20b00600f00604d00200220b00601000606100200220b00669d006033002", - "0x20b00600213100200220b00621c00606100200220b00665e006047002002", - "0x705b00276500620b00676500604b00276500620b0060025bc002764006", - "0x20b00676676700705d00276700620b00600213500276600620b006765764", - "0x12c00276a00620b00665b00600c00276900620b00676800644b002768006", - "0x20b00665d00612b00276c00620b00665c00601600276b00620b006006006", - "0x200900276e76d76c76b76a01600676e00620b00676900644c00276d006", - "0x1000606100200220b0061540065bd00200220b00600211e00200220b006", - "0x639600200220b00666000639500200220b00600f00604d00200220b006", - "0x39900200220b00666400639800200220b00666500639700200220b00621f", - "0x200220b00666100639b00200220b00666200639a00200220b006663006", - "0x600600612c00277000620b00668300600c00276f00620b00669100644b", - "0x277300620b00668e00612b00277200620b00668d00601600277100620b", - "0x220b00600200900277477377277177001600677400620b00676f00644c", - "0x220b00601000606100200220b0061540065bd00200220b00600211e002", - "0x20b00666100639b00200220b00666200639a00200220b00600f00604d002", - "0x666500639700200220b00621f00639600200220b006660006395002002", - "0x66700620c00200220b00666300639900200220b00666400639800200220b", - "0x277600620b00668300600c00277500620b00668700644b00200220b006", - "0x667a00612b00277700620b00667900601600223100620b00600600612c", - "0x900277977877723177601600677900620b00677500644c00277800620b", - "0x606100200220b0061540065bd00200220b00600211e00200220b006002", - "0x39b00200220b00666200639a00200220b00600f00604d00200220b006010", - "0x200220b00621f00639600200220b00666000639500200220b006661006", - "0x220b00666300639900200220b00666400639800200220b006665006397", - "0x20b00667e00644b00200220b00621e0060c400200220b00666700620c002", - "0x1600277b00620b00600600612c00277a00620b00667800600c002232006", - "0x20b00623200644c00277d00620b00667a00612b00277c00620b006679006", - "0x20b00600211e00200220b00600200900277e77d77c77b77a01600677e006", - "0x600f00604d00200220b00601000606100200220b0061540065bd002002", - "0x66100639b00200220b00666700620c00200220b00666200639a00200220b", - "0x639700200220b00621f00639600200220b00666000639500200220b006", - "0x44b00200220b00666300639900200220b00666400639800200220b006665", - "0x20b00600600612c00278000620b00666d00600c00277f00620b006673006", - "0x44c00278300620b00666f00612b00278200620b00666e006016002781006", - "0x200220b00600200900278478378278178001600678400620b00677f006", - "0x720b0060a000635a00278500620b0060025d600200220b0066560060f2", - "0x278700620b00678700604b00278700620b0067857860071c10027860a0", - "0x60a000604d00200220b00600200900278900678800220b0077870061c5", - "0x3000278a00620b00678a00602c00278a00620b00601400602f00200220b", - "0x678b00603300200220b00600200900278d00678c78b00620b00778a006", - "0x12b00278f00620b00601b00601600278e00620b00616100600c00200220b", - "0x279200600202d00279100620b00600c00604100279000620b006015006", - "0x1420b00600c00637100200220b00678d00603300200220b006002009002", - "0x600c00279c79b00720b00679a0065d300279a799798797796795794793", - "0x620b00601500612b00279e00620b00601b00601600279d00620b006161", - "0x7a100c20b0067a079f79e79d00c53d0027a000620b00679c00644d00279f", - "0x220b0060020090027a70067a67a500620b0077a400618f0027a47a37a2", - "0x7a20060160027a900620b0067a100600c0027a800620b0067a50060be002", - "0x7a800720b0067a80065a70027aa00620b0067a300612b00223500620b006", - "0x7ac00c20b0067ab7aa2357a900c5a80027ab00620b0067ab00611b0027ab", - "0x220b0060020090027b20067b17b000620b0077af0063bc0027af7ae7ad", - "0x20b0067ac00600c0027b300620b00600259200200220b0067b00063bd002", - "0x5aa0027b500620b0067b300611b0027b400620b0067a800611b002234006", - "0x7ba0067b97b800620b0077b700618f0027b77b600720b0067b57b4234009", - "0x20b0067ad0060160027bb00620b0067b80060be00200220b006002009002", - "0x11b0027be00620b00679b00644d0027bd00620b0067ae00612b0027bc006", - "0x27c27c17c000920b0067bf7be7bd7bc00c2190027bf00620b0067bb006", - "0x7c300644f00200220b0060020090027c50067c47c300620b0077c200644e", - "0x79779679579479301412a00200220b0062330060330022337c600720b006", - "0x67c000601600278e00620b0067b600600c0027c700620b0067c6799798", - "0x279100620b0067c700604100279000620b0067c100612b00278f00620b", - "0x7c900604d00200220b0067c80060fa0021067c97c800920b00615400659e", - "0x7cc7cb00720b0067ca00601c0027ca00620b00610600601900200220b006", - "0x20b0067cd00601c0027cd00620b00600206500200220b0067cb0060c4002", - "0x540027d000620b0067cc00605400200220b0067ce0060c40027cf7ce007", - "0x77d17d00070290027d000620b0067d000611b0027d100620b0067cf006", - "0x602b0027d300620b00600202a00200220b0060020090020027d200220b", - "0x20027d600600202d0027d500620b0067d400602c0027d400620b0067d3", - "0x7d800620b0067d700602e0027d700620b00600202a00200220b006002009", - "0x7d900602c0027d900620b0067d500602f0027d500620b0067d800602c002", - "0x20b0060020090022300067db7da00620b0077d90060300027d900620b006", - "0x63710027dd7dc00720b00679100607f00200220b0067da006033002002", - "0x200220b0067de0063950027e57e47e37e27e17e07df7de01420b0067dd", - "0x220b0067e200639800200220b0067e100639900200220b0067df00639b", - "0x20b0067e500620c00200220b0067e400639600200220b0067e3006397002", - "0x63d30027e700620b00679000612b0027e600620b00678f006016002002", - "0x61510027eb7ea7e900920b0067e87e77e60093d40027e800620b0067e0", - "0x20b00622f00615200200220b0060020090027ed0067ec22f00620b0077eb", - "0xef00200220b0067ef00604d0027f07ef00720b0067ee0061300027ee006", - "0x20b0067f200604d0027f37f200720b0067f10061300027f100620b006002", - "0x4d0027f67f500720b0067f40061300027f400620b0067f00061b2002002", - "0x720b0067f70061300027f700620b0067f30061b200200220b0067f5006", - "0x61b20027fa00620b0067f60061b200200220b0067f800604d0027f97f8", - "0x20b0067fc00604b0027fc00620b0067fb7fa0071c10027fb00620b0067f9", - "0x2a00200220b0060020090027fe0067fd00220b0077fc0061c50027fc006", - "0x620b00680000602c00280000620b0067ff00602e0027ff00620b006002", - "0x220b0067fe0060f200200220b00600200900200280200600202d002801", - "0x680400602c00280400620b00680300602b00280300620b00600202a002", - "0x280500620b00680500602c00280500620b00680100602f00280100620b", - "0x780600603000280600620b00680600602c00280600620b00680500602f", - "0x200220b00680700603300200220b00600200900280900680880700620b", - "0x20b00680e0063fb00281181080f80e80d80c80b80a01420b0067dc006371", - "0x281500620b0067e900601600281400620b00678e00600c002813812007", - "0x81581400c3fd00281700620b0068130063fc00281600620b0067ea00612b", - "0x81e00681d81c00620b00781b0060c800281b81a81981800c20b006817816", - "0x20b00681f0063fe00281f00620b00681c0060c900200220b006002009002", - "0x82482300720b00682100613000200220b006820006349002822821820009", - "0x20b00682500613000282500620b00600200000200220b00682300604d002", - "0x1b200282700620b0068240061b200200220b00682600604d00223a826007", - "0x682900604b00282900620b0068288270071c100282800620b00623a006", - "0x200220b00600200900223b00682a00220b0078290061c500282900620b", - "0x20b00682c00602c00282c00620b00682b00602e00282b00620b00600202a", - "0x20b00623b0060f200200220b00600200900200282e00600202d00282d006", - "0x83000602c00283000620b00682f00602b00282f00620b00600202a002002", - "0x83100620b00683100602c00283100620b00682d00602f00282d00620b006", - "0x603300200220b00600200900283400683383200620b007831006030002", - "0x720b00680b0063d600283580a00720b00680a0063d500200220b006832", - "0x83880d00720b00680d0063d800283780c00720b00680c0063d700283680b", - "0x3db00283a80f00720b00680f0063da00283981200720b0068120063d9002", - "0x83501412a00283c81100720b0068110063dc00283b81000720b006810006", - "0x1c500200220b00683d00604700283d00620b00683c83b83a839838837836", - "0x20b00680d0063dd00200220b00600200900283f00683e00220b007822006", - "0x284300620b00681a00612b00284200620b006819006016002841840007", - "0x284784684500920b0068448438420093df00284400620b0068410063de", - "0x84800615200200220b00600200900284a00684984800620b007847006151", - "0x220b00684c00604d00284d84c00720b00684b00613000284b00620b006", - "0x84f00604d00285084f00720b00684e00613000284e00620b0060020ef002", - "0x285200620b0068500061b200285100620b00684d0061b200200220b006", - "0x8530061c500285300620b00685300604b00285300620b0068528510071c1", - "0x285600620b00600202a00200220b00600200900285500685400220b007", - "0x85900600202d00285800620b00685700602c00285700620b00685600602e", - "0x620b00600202a00200220b0068550060f200200220b006002009002002", - "0x602f00285800620b00685b00602c00285b00620b00685a00602b00285a", - "0x620b00785c00603000285c00620b00685c00602c00285c00620b006858", - "0x1412a00200220b00685d00603300200220b00600200900285f00685e85d", - "0x86100620b00684500601600286000620b00681181080f81284080c80b80a", - "0x600202d00286300620b00686000604100286200620b00684600612b002", - "0x20b00685f00603300200220b00600211e00200220b006002009002002864", - "0x681100620c00200220b00600f00604d00200220b006010006061002002", - "0x81200639800200220b00680f00639700200220b00681000639600200220b", - "0x639b00200220b00680c00639a00200220b00684000639900200220b006", - "0x3e100286500620b00600213100200220b00680a00639500200220b00680b", - "0x20b00686686500705b00286600620b00686600604b00286600620b006002", - "0x44b00286800620b00623f86700705d00286700620b00600213500223f006", - "0x20b00600600612c00286a00620b00681800600c00286900620b006868006", - "0x44c00223e00620b00684600612b00286c00620b00684500601600286b006", - "0x200220b00600200900286d23e86c86b86a01600686d00620b006869006", - "0x200220b00600f00604d00200220b00601000606100200220b00600211e", - "0x220b00680f00639700200220b00681000639600200220b00681100620c", - "0x20b00680c00639a00200220b00684000639900200220b006812006398002", - "0x684a00644b00200220b00680a00639500200220b00680b00639b002002", - "0x287000620b00600600612c00286f00620b00681800600c00286e00620b", - "0x686e00644c00287200620b00684600612b00287100620b006845006016", - "0x83f0060f200200220b00600200900223d87287187086f01600623d00620b", - "0x1600287300620b00681181080f81280d80c80b80a01412a00200220b006", - "0x20b00687300604100286200620b00681a00612b00286100620b006819006", - "0x600c00287587400720b00686300607f00200220b00600211e002863006", - "0x620b00686100601600287700620b00600600612c00287600620b006818", - "0x604b00287a00620b00687500604100287900620b00686200612b002878", - "0x8798788778760105d400287c00620b00601000600f00287b00620b00600f", - "0x88388200620b0078810060ed00288188087f87e87d01620b00687c87b87a", - "0x88400602f00288400620b00688200608e00200220b00600200900223c006", - "0x88600620b00788500603000288500620b00688500602c00288500620b006", - "0x600202a00200220b00688600603300200220b006002009002888006887", - "0x88b00620b00688a00648500288a00620b00688987400748400288900620b", - "0x87f00601600288d00620b00687e00612c00288c00620b00687d00600c002", - "0x89000620b00688b00644c00288f00620b00688000612b00288e00620b006", - "0x220b00688800603300200220b00600200900289088f88e88d88c016006", - "0x620b00600222200289100620b00600213100200220b006874006047002", - "0x13500289300620b00689289100705b00289200620b00689200604b002892", - "0x20b00689500644b00289500620b00689389400705d00289400620b006002", - "0x1600289800620b00687e00612c00289700620b00687d00600c002896006", - "0x20b00689600644c00289900620b00688000612b00223900620b00687f006", - "0x687400604700200220b00600200900289a89923989889701600689a006", - "0x12c00289c00620b00687d00600c00289b00620b00623c00644b00200220b", - "0x20b00688000612b00289e00620b00687f00601600289d00620b00687e006", - "0x20090028a089f89e89d89c0160068a000620b00689b00644c00289f006", - "0x1000606100200220b00683400603300200220b00600211e00200220b006", - "0x639500200220b00680b00639b00200220b00600f00604d00200220b006", - "0x39700200220b00681000639600200220b00681100620c00200220b00680a", - "0x200220b00680c00639a00200220b00681200639800200220b00680f006", - "0x8a100620b00600213100200220b00682200604d00200220b00680d006399", - "0x8a28a100705b0028a200620b0068a200604b0028a200620b006002501002", - "0x8a500620b0068a38a400705d0028a400620b0060021350028a300620b006", - "0x600612c0028a700620b00681800600c0028a600620b0068a500644b002", - "0x23800620b00681a00612b0028a900620b0068190060160028a800620b006", - "0x20b0060020090028aa2388a98a88a70160068aa00620b0068a600644c002", - "0x20b00600f00604d00200220b00601000606100200220b00600211e002002", - "0x681100620c00200220b00680a00639500200220b00680b00639b002002", - "0x81200639800200220b00680f00639700200220b00681000639600200220b", - "0x644b00200220b00680d00639900200220b00680c00639a00200220b006", - "0x620b00600600612c0028ac00620b00681800600c0028ab00620b00681e", - "0x644c0028af00620b00681a00612b0028ae00620b0068190060160028ad", - "0x11e00200220b0060020090028b08af8ae8ad8ac0160068b000620b0068ab", - "0x4d00200220b00601000606100200220b00680900603300200220b006002", - "0x28b100620b00600213100200220b0067dc00604700200220b00600f006", - "0x68b28b100705b0028b200620b0068b200604b0028b200620b0060024bd", - "0x28b400620b0062378b300705d0028b300620b00600213500223700620b", - "0x600600612c0028b600620b00678e00600c0028b500620b0068b400644b", - "0x28b900620b0067ea00612b0028b800620b0067e90060160028b700620b", - "0x220b0060020090028ba8b98b88b78b60160068ba00620b0068b500644c", - "0x220b00600f00604d00200220b00601000606100200220b00600211e002", - "0x678e00600c0028bb00620b0067ed00644b00200220b0067dc006047002", - "0x28be00620b0067e90060160028bd00620b00600600612c0028bc00620b", - "0x8be8bd8bc0160068c000620b0068bb00644c0028bf00620b0067ea00612b", - "0x20b00623000603300200220b00600211e00200220b0060020090028c08bf", - "0x679100604700200220b00600f00604d00200220b006010006061002002", - "0x8c200604b0028c200620b0060025bc0028c100620b00600213100200220b", - "0x23600620b0060021350028c300620b0068c28c100705b0028c200620b006", - "0x600c0028c500620b0068c400644b0028c400620b0068c323600705d002", - "0x620b00678f0060160028c700620b00600600612c0028c600620b00678e", - "0x8c60160068ca00620b0068c500644c0028c900620b00679000612b0028c8", - "0x1540065bd00200220b00600211e00200220b0060020090028ca8c98c88c7", - "0x639500200220b00600f00604d00200220b00601000606100200220b006", - "0x39800200220b00679800639700200220b00679900639600200220b006793", - "0x200220b00679500639a00200220b00679600639900200220b006797006", - "0x20b0067b600600c0028cb00620b0067c500644b00200220b00679400639b", - "0x12b0028ce00620b0067c00060160028cd00620b00600600612c0028cc006", - "0x8cf8ce8cd8cc0160068d000620b0068cb00644c0028cf00620b0067c1006", - "0x220b0061540065bd00200220b00600211e00200220b0060020090028d0", - "0x20b00679500639a00200220b00600f00604d00200220b006010006061002", - "0x679900639600200220b00679300639500200220b00679400639b002002", - "0x79600639900200220b00679700639800200220b00679800639700200220b", - "0xc0028d100620b0067ba00644b00200220b00679b00620c00200220b006", - "0x20b0067ad0060160028d300620b00600600612c0028d200620b0067b6006", - "0x160068d600620b0068d100644c0028d500620b0067ae00612b0028d4006", - "0x65bd00200220b00600211e00200220b0060020090028d68d58d48d38d2", - "0x39a00200220b00600f00604d00200220b00601000606100200220b006154", - "0x200220b00679300639500200220b00679400639b00200220b006795006", - "0x220b00679700639800200220b00679800639700200220b006799006396", - "0x20b0067a80060c400200220b00679b00620c00200220b006796006399002", - "0x612c0028d800620b0067ac00600c0028d700620b0067b200644b002002", - "0x620b0067ae00612b0028da00620b0067ad0060160028d900620b006006", - "0x60020090028dc8db8da8d98d80160068dc00620b0068d700644c0028db", - "0x601000606100200220b0061540065bd00200220b00600211e00200220b", - "0x79b00620c00200220b00679500639a00200220b00600f00604d00200220b", - "0x639600200220b00679300639500200220b00679400639b00200220b006", - "0x39900200220b00679700639800200220b00679800639700200220b006799", - "0x620b0067a100600c0028dd00620b0067a700644b00200220b006796006", - "0x612b0028e000620b0067a20060160028df00620b00600600612c0028de", - "0x8e28e18e08df8de0160068e200620b0068dd00644c0028e100620b0067a3", - "0x220b0061540065bd00200220b0067890060f200200220b006002009002", - "0x8e300604d0028e48e300720b0060a000613000200220b0060140060d0002", - "0x28e78e600720b0068e50061300028e500620b0060025d700200220b006", - "0x20b0068e80061300028e800620b0068e40061b200200220b0068e600604d", - "0x1300028eb00620b0068e70061b200200220b0068e900604d0028ea8e9007", - "0x20b0068ea0061b200200220b0068ec00604d0028ed8ec00720b0068eb006", - "0x28f000620b0068ef8ee0071c10028ef00620b0068ed0061b20028ee006", - "0x20090028f20068f100220b0078f00061c50028f000620b0068f000604b", - "0x2c0028f400620b0068f300602e0028f300620b00600202a00200220b006", - "0xf200200220b0060020090020028f500600202d00224300620b0068f4006", - "0x8f700620b0068f600602b0028f600620b00600202a00200220b0068f2006", - "0x8f800602c0028f800620b00624300602f00224300620b0068f700602c002", - "0x24400620b00624400602c00224400620b0068f800602f0028f800620b006", - "0x603300200220b0060020090028fb0068fa8f900620b007244006030002", - "0x600211e00200220b0060020090020028fc00600202d00200220b0068f9", - "0x1000606100200220b00600c00604700200220b0068fb00603300200220b", - "0x25d80028fd00620b00600213100200220b00600f00604d00200220b006", - "0x620b0068fe8fd00705b0028fe00620b0068fe00604b0028fe00620b006", - "0x644b00290100620b0068ff90000705d00290000620b0060021350028ff", - "0x620b00600600612c00290300620b00616100600c00290200620b006901", - "0x644c00290600620b00601500612b00290500620b00601b006016002904", - "0xf200200220b00600200900290790690590490301600690700620b006902", - "0x200220b0060140060d000200220b0061540065bd00200220b00609b006", - "0x620b00601b00601600207f00620b00616100600c00200220b00600211e", - "0x12c00290a00620b00607f00600c00290990800720b00600c00607f0020c7", - "0x20b00601500612b00290c00620b0060c700601600290b00620b006006006", - "0xf00290f00620b00600f00604b00290e00620b00690900604100290d006", - "0x91101620b00691090f90e90d90c90b90a0103f900291000620b006010006", - "0x20b00600200900291800691791600620b0079150063bc002915914913912", - "0x91990800748400291900620b00600202a00200220b0069160063bd002002", - "0x91c00620b00691100600c00291b00620b00691a00648500291a00620b006", - "0x91400612b00291e00620b00691300601600291d00620b00691200612c002", - "0x292091f91e91d91c01600692000620b00691b00644c00291f00620b006", - "0x92100620b00691800644b00200220b00690800604700200220b006002009", - "0x91300601600292300620b00691200612c00292200620b00691100600c002", - "0x92600620b00692100644c00292500620b00691400612b00292400620b006", - "0x200220b00600211e00200220b006002009002926925924923922016006", - "0x220b00600f00604d00200220b00601000606100200220b00602d0060fa", - "0x20b00616200644b00200220b0060140060d000200220b00600c006047002", - "0x1600292900620b00600600612c00292800620b00616100600c002927006", - "0x20b00692700644c00292b00620b00601500612b00292a00620b00601b006", - "0x20b00600211e00200220b00600200900292c92b92a92992801600692c006", - "0x601000606100200220b00600c00604700200220b006139006033002002", - "0x1600639c00200220b00602d0060fa00200220b00600f00604d00200220b", - "0x231300292d00620b00600213100200220b0060140060d000200220b006", - "0x620b00692e92d00705b00292e00620b00692e00604b00292e00620b006", - "0x644b00293000620b00624892f00705d00292f00620b006002135002248", - "0x620b00600600612c00293200620b00600200600c00293100620b006930", - "0x644c00224700620b00601500612b00293400620b00601b006016002933", - "0x11e00200220b00600200900293524793493393201600693500620b006931", - "0x4d00200220b00601000606100200220b00600c00604700200220b006002", - "0x200220b00601600639c00200220b0060140060d000200220b00600f006", - "0x600600612c00293700620b00600200600c00293600620b00605400644b", - "0x293a00620b00601500612b00293900620b00601b00601600293800620b", - "0x220b00600211e00224693a93993893701600624600620b00693600644c", - "0x20b00600200600c00201600620b0060020ef00200c00620b0060025d9002", - "0xfc00201900620b00600700612b00201b00620b006006006016002017006", - "0x20b00600c0065e10020c400620b00601600604b00201c00620b006009006", - "0x5e300201501401000f00c20b0060650c401c01901b01700f5e2002065006", - "0x60540065e400200220b00600200900211b00693b05400620b007015006", - "0x220b00602b00604d00200220b00602900639c00202c02b02a02900c20b", - "0x602d0065da00202d00620b00602a0065e500200220b00602c006033002", - "0x203000620b00601000601600202f00620b00600f00600c00202e00620b", - "0x3303002f00c00604800620b00602e0065db00203300620b00601400612b", - "0x600f00600c00203900620b00611b0065dc00200220b006002009002048", - "0x203700620b00601400612b00211e00620b00601000601600203500620b", - "0x620b00600c00630b00212003711e03500c00612000620b0060390065db", - "0x600213100201000620b00600213100201600620b00600f0065dd00200f", - "0x200220b0060150065df00201701500720b0060160065de00201400620b", - "0x60170065e000206500620b0060060060160020c400620b00600200600c", - "0x202900620b00601400604e00211b00620b00601000604e00205400620b", - "0x200220b00600200600201c01901b00920b00602911b0540650c40165e6", - "0x2a0065e900200220b00600200900202b00693c02a00620b00701c0065e8", - "0x720b00602c00613200200220b00602e00603300202e02d02c00920b006", - "0x613200203300620b00603000605300200220b00602f00605100203002f", - "0x620b00603900605300200220b00604800605100203904800720b00602d", - "0xc5ea00203500620b00603500600f00203300620b00603300600f002035", - "0x220b00600200900203a10d12000993d03711e00720b007035033007019", - "0x611e00601600212400620b00603c0063b700203c00620b00600202a002", - "0x212a00620b0061240063b800203e00620b00603700612b00207d00620b", - "0x212c00620b00603a0063b900200220b00600200900200293e00600202d", - "0x612c0063b800203e00620b00610d00612b00207d00620b006120006016", - "0x212b00620b0060410063bb00204100620b00612a0063ba00212a00620b", - "0x600211e00200220b00600200900212d00693f04300620b00712b0063bc", - "0x212e00620b00604500900748400204500620b0060430065eb00200220b", - "0x607d00601600213100620b00601b00600c00204700620b00612e006485", - "0x604b00620b00604700644c00204d00620b00603e00612b00213000620b", - "0x604700200220b00600211e00200220b00600200900204b04d13013100c", - "0x4f00620b00601b00600c00204e00620b00612d00644b00200220b006009", - "0x4e00644c00205100620b00603e00612b00213200620b00607d006016002", - "0x600211e00200220b00600200900205305113204f00c00605300620b006", - "0x600c00212f00620b00602b00644b00200220b00600900604700200220b", - "0x620b00600700612b00213300620b00601900601600205600620b00601b", - "0x20b0060025ed00213605813305600c00613600620b00612f00644c002058", - "0x600f00603900200f00620b00600204800200220b006002139002016006", - "0x900201701500794001401000720b00700f00600200903500200f00620b", - "0x1000620b00601000600c00201b00620b0060070065ee00200220b006002", - "0x5f000200220b0060020090020c400694101c01900720b00701b0065ef002", - "0x20b0060650065f100205400620b00601900606f00206500620b00601c006", - "0x620b00600202a00200220b00600200900200294200600202d00211b006", - "0x65f100205400620b0060c400606f00202a00620b0060290065f2002029", - "0x620b00600c00631600200c00620b00605400630900211b00620b00602a", - "0x694302b00620b00711b0065f400200c00620b00600c0160075f300200c", - "0x620b00602b0065f500200220b00600211e00200220b00600200900202c", - "0x600f00204800620b00601400601600203300620b00601000600c00202d", - "0x3503904803300c5f600203500620b00600900604e00203900620b00602d", - "0x200900203700694411e00620b00703000607100203002f02e00920b006", - "0x200220b00610d00603300210d12000720b00611e00614100200220b006", - "0x600c00631600203e00620b00602f00601600207d00620b00602e00600c", - "0x20b00612c12a03e07d00c31700212c00620b00612000604e00212a00620b", - "0x20b00600200900204100694512b00620b00712400607100212403c03a009", - "0x600c00200220b00612d00603300212d04300720b00612b006141002002", - "0x620b00604300604e00212e00620b00603c00601600204500620b00603a", - "0x620b00604100631c00200220b00600200900200294600600202d002047", - "0x631b00204d00620b00603c00601600213000620b00603a00600c002131", - "0xc0065f700200220b00600200900204b04d13000900604b00620b006131", - "0x204f00620b00602e00600c00204e00620b00603700631c00200220b006", - "0x5113204f00900605100620b00604e00631b00213200620b00602f006016", - "0x200220b00602c00603300200220b00600211e00200220b006002009002", - "0x20b00601400601600204500620b00601000600c00200220b00600c0065f7", - "0x731900205300620b00600202a00204700620b00600900604e00212e006", - "0x20b00604500600c00205600620b00612f00631a00212f00620b006053047", - "0x900613600620b00605600631b00205800620b00612e006016002133006", - "0x60160065f800200220b00600211e00200220b006002009002136058133", - "0x600213100200220b0060070065f700200220b00600900605100200220b", - "0x5b00205b00620b00605b00604b00205b00620b00600213400213400620b", - "0x613505d00705d00205d00620b00600213500213500620b00605b134007", - "0x206100620b00601500600c00205f00620b00613700631c00213700620b", - "0x6413806100900606400620b00605f00631b00213800620b006017006016", - "0x620b00601600603900201600620b00600204800200220b00600211e002", - "0x600200900201501400794701000f00720b007016006002009035002016", - "0x200f00620b00600f00600c00201700c00720b00600c00635a00200220b", - "0x600c00604d00200220b00600200900201b00694800220b0070170061c5", - "0x201c00620b00601900700732800201900620b0060090065f900200220b", - "0x601000601600206500620b00600f00600c0020c400620b00601c006329", - "0x600200900211b05406500900611b00620b0060c400632a00205400620b", - "0x607600202b00620b00600700600f00200220b00601b0060f200200220b", - "0x200900202d00694902c00620b00702a00607700202a02900720b00602b", - "0x202f00620b00600200000202e00620b00602c00900705b00200220b006", - "0x1000601600203500620b00600f00600c00203000620b00602f00c0071c1", - "0x12000620b00602e00604e00203700620b00602900600f00211e00620b006", - "0x3300920b00610d12003711e03501632600210d00620b00603000604b002", - "0x200220b00600200900203c00694a03a00620b00703900614b002039048", - "0x632900203e00620b00607d12400732800207d12400720b00603a00607b", - "0x620b00604800601600212c00620b00603300600c00212a00620b00603e", - "0x220b00600200900204112b12c00900604100620b00612a00632a00212b", - "0x4800601600212d00620b00603300600c00204300620b00603c00632b002", - "0x200900212e04512d00900612e00620b00604300632a00204500620b006", - "0x632c00200220b00600900605100200220b00600c00604d00200220b006", - "0x20b00613100632900213100620b00604702900732800204700620b00602d", - "0x32a00204b00620b00601000601600204d00620b00600f00600c002130006", - "0x604d00200220b00600200900204e04b04d00900604e00620b006130006", - "0x13100200220b00600700606100200220b00600900605100200220b00600c", - "0x13200620b00613200604b00213200620b00600213400204f00620b006002", - "0x5300705d00205300620b00600213500205100620b00613204f00705b002", - "0x620b00601400600c00205600620b00612f00632b00212f00620b006051", - "0x13300900613600620b00605600632a00205800620b006015006016002133", - "0x5fa00201700620b00600f00600f00201500620b00600200600c002136058", - "0x201900694b01b00620b0070140065fb00201401000720b006017015007", - "0x720b00601c0065fd00201c00620b00601b0065fc00200220b006002009", - "0x1600202d00620b00600600612c00202c00620b00601000600c0020650c4", - "0x20b00600c0065fe00202f00620b00600900612b00202e00620b006007006", - "0x3301600720b00601600635a00203000620b00603000604100203000c007", - "0x2c0105d400204800620b0060c400600f00203300620b00603300604b002", - "0x20b00702b0060ed00202b02a02911b05401620b00604803303002f02e02d", - "0x211e00620b00603900608e00200220b00600200900203500694c039006", - "0x703700603000203700620b00603700602c00203700620b00611e00602f", - "0x200220b00612000603300200220b00600200900210d00694d12000620b", - "0x12a03e07d12403c01420b00603a00637100203a00c00720b00600c0065fe", - "0x639900200220b00612400639b00200220b00603c00639500204112b12c", - "0x39600200220b00612c00639700200220b00612a00639800200220b00603e", - "0x12e00620b00602900601600200220b00604100620c00200220b00612b006", - "0x12e0093d400213100620b00607d0063d300204700620b00602a00612b002", - "0x204d00694e13000620b00704500615100204512d04300920b006131047", - "0x220b00704b0061c500204b00620b00613000615200200220b006002009", - "0xc00604700200220b00601600604d00200220b00600200900204e00694f", - "0x213200620b00604f00601900204f00620b00606500601b00200220b006", - "0x20b00600206500200220b0060510060c400205305100720b00613200601c", - "0x5400200220b0060560060c400213305600720b00612f00601c00212f006", - "0x20b00605800611b00213600620b00613300605400205800620b006053006", - "0x2a00200220b00600200900200295000220b007136058007029002058006", - "0x620b00605b00602c00205b00620b00613400602b00213400620b006002", - "0x5d00620b00600202a00200220b00600200900200295100600202d002135", - "0x5400600c00213500620b00613700602c00213700620b00605d00602e002", - "0x13800620b00604300601600206100620b00611b00612c00205f00620b006", - "0x600202d00213900620b00613500602c00206400620b00612d00612b002", - "0x605400600c00200220b00604e0060f200200220b006002009002002952", - "0x213f00620b00604300601600206f00620b00611b00612c00213c00620b", - "0x601600604b00214100620b00600c00604100207100620b00612d00612b", - "0x14514107113f06f13c0105b800207500620b00606500600f00214500620b", - "0x7700695307600620b00706c0060ed00206c06a06913b06701620b006075", - "0x20b00606700600c00207900620b00607600608e00200220b006002009002", - "0x12b00213800620b00606900601600206100620b00613b00612c00205f006", - "0x20b0061390063a800213900620b00607900602c00206400620b00606a006", - "0x12c00207b00620b00605f00600c00214b00620b0061460063a9002146006", - "0x20b00606400612b00207f00620b00613800601600214a00620b006061006", - "0x20090021510c707f14a07b01600615100620b00614b0063aa0020c7006", - "0x214e00620b00606700600c00215200620b0060770063ab00200220b006", - "0x606a00612b00208300620b00606900601600214f00620b00613b00612c", - "0x900215008508314f14e01600615000620b0061520063aa00208500620b", - "0x4700200220b00601600604d00200220b00606500606100200220b006002", - "0x620b00605400600c00215e00620b00604d0063ab00200220b00600c006", - "0x612b00215f00620b00604300601600216000620b00611b00612c002161", - "0x16315d15f16016101600616300620b00615e0063aa00215d00620b00612d", - "0x220b00600c00604700200220b00610d00603300200220b006002009002", - "0x620b00600202a00200220b00606500606100200220b00601600604d002", - "0x63a900208700620b0061620063a800216200620b00615c00602b00215c", - "0x620b00611b00612c00215700620b00605400600c00215400620b006087", - "0x63aa00216e00620b00602a00612b00215b00620b00602900601600208a", - "0x4700200220b00600200900216816e15b08a15701600616800620b006154", - "0x200220b00606500606100200220b00601600604d00200220b00600c006", - "0x611b00612c00208e00620b00605400600c0020ed00620b0060350063ab", - "0x216c00620b00602a00612b0020d000620b00602900601600216b00620b", - "0x220b00600200900209216c0d016b08e01600609200620b0060ed0063aa", - "0x20b0060190063ab00200220b00601600604d00200220b00600c006047002", - "0x1600209400620b00600600612c00217100620b00601000600c00216d006", - "0x20b00616d0063aa00209600620b00600900612b00217300620b006007006", - "0x607600200c00620b00600600600f002175096173094171016006175006", - "0x200900200f00695401600620b00700900607700200900700720b00600c", - "0x600200900201500695501401000720b0070160020075ff00200220b006", - "0xf00201b00620b00601000600c00201700620b00601400660000200220b", - "0x201c01901b00900601c00620b00601700660100201900620b006007006", - "0x6500620b0060c40066020020c400620b00600202a00200220b006002009", - "0x6500660100211b00620b00600700600f00205400620b00601500600c002", - "0x600f00660200200220b00600200900202911b05400900602900620b006", - "0x202c00620b00600700600f00202b00620b00600200600c00202a00620b", - "0x700620b00600600601b00202d02c02b00900602d00620b00602a006601", - "0x1a300200220b00600200900201600695600c00900720b0070070060db002", - "0x20b00600f0061a400201000620b00600900609900200f00620b00600c006", - "0x620b00600202a00200220b00600200900200295700600202d002014006", - "0x61a400201000620b00601600609900201700620b0060150061a5002015", - "0x620b00601b00600f00201b00620b00601000605300201400620b006017", - "0x1a600200220b00600200900201c00695801900620b0070140060df00201b", - "0x20b00600200600c00206500620b0060c40061b20020c400620b006019006", - "0x11b05400720b00602a02900760300202a00620b00606500604b002029006", - "0x660400200220b00600200900202c00695902b00620b00711b00633b002", - "0x620b00601b00600f00202e00620b00605400600c00202d00620b00602b", - "0x220b00600200900203002f02e00900603000620b00602d00660500202f", - "0x1b00600f00204800620b00605400600c00203300620b00602c006606002", - "0x200900203503904800900603500620b00603300660500203900620b006", - "0x660600211e00620b00600202a00200220b00601c00603300200220b006", - "0x620b00601b00600f00212000620b00600200600c00203700620b00611e", - "0x220b00600211e00203a10d12000900603a00620b00603700660500210d", - "0xf00695a01600c00720b0070090060db00200900620b00600700601b002", - "0x20b00600c00609900201000620b0060160061a300200220b006002009002", - "0x600200900200295b00600202d00201500620b0060100061a4002014006", - "0x609900201b00620b0060170061a500201700620b00600202a00200220b", - "0x620b00601400605300201500620b00601b0061a400201400620b00600f", - "0xc400695c01c00620b0070150060df00201900620b00601900600f002019", - "0x20b0060650061b200206500620b00601c0061a600200220b006002009002", - "0x601600202c00620b00600200600c00211b00620b0060021ad002054006", - "0x620b00611b00604300202e00620b00601900600f00202d00620b006006", - "0x920b00603002f02e02d02c0161ae00203000620b00605400604b00202f", - "0x220b00600200900204800695d03300620b00702b00601400202b02a029", - "0x3700695e11e00620b00703500601700203503900720b006033006015002", - "0x612000613600210d12000720b00611e0060f800200220b006002009002", - "0x60800203c00620b00603a00660700203a00620b00610d0061d600200220b", - "0x602900600c00207d00620b00612400660900212400620b00603c039007", - "0x612c00620b00607d00660a00212a00620b00602a00601600203e00620b", - "0x60800212b00620b00603700660b00200220b00600200900212c12a03e009", - "0x602900600c00204300620b00604100660900204100620b00612b039007", - "0x612e00620b00604300660a00204500620b00602a00601600212d00620b", - "0xc00204700620b00604800660c00200220b00600200900212e04512d009", - "0x20b00604700660a00213000620b00602a00601600213100620b006029006", - "0x220b0060c400603300200220b00600200900204d13013100900604d006", - "0x4e01900760800204e00620b00604b00660b00204b00620b00600202a002", - "0x5100620b00600200600c00213200620b00604f00660900204f00620b006", - "0x5305100900612f00620b00613200660a00205300620b006006006016002", - "0x760d00200f00620b00600600612b00201600620b00600200601600212f", - "0x201400695f01000620b00700c00660e00200c00900700920b00600f016", - "0x620b00601500661000201500620b00601000660f00200220b006002009", - "0xfa00200220b00601b00634900201c01901b00920b006017006611002017", - "0x620b0060c40066120020c400620b00601900622600200220b00601c006", - "0x661300211b00620b00600900612b00205400620b006007006016002065", - "0x1400661400200220b00600200900202911b05400900602900620b006065", - "0x2c00620b00600900612b00202b00620b00600700601600202a00620b006", - "0x620b00600200600c00202d02c02b00900602d00620b00602a006613002", - "0x604b00201b00620b00600c00637300201700620b00600700615d002015", - "0x6500201401000f00920b00601901b01701500c61500201900620b006016", - "0x620b00600900612b00211b00620b00600600601600201c00620b006002", - "0xc61700202b00620b00601400661600202a00620b00601c00611b002029", - "0x61900202d00620b0060540066180020540650c400920b00602b02a02911b", - "0x200900202f00696002e00620b00702c0060ed00202c00620b00602d006", - "0x203300620b0060300063a800203000620b00602e00608e00200220b006", - "0x60c400601600203900620b00600f00600c00204800620b0060330063a9", - "0x203700620b00606500612b00211e00620b00601000615d00203500620b", - "0x220b00600200900212003711e03503901600612000620b0060480063aa", - "0xc400601600203a00620b00600f00600c00210d00620b00602f0063ab002", - "0x7d00620b00606500612b00212400620b00601000615d00203c00620b006", - "0x600200601600203e07d12403c03a01600603e00620b00610d0063aa002", - "0x700920b00600f01600757600200f00620b00600600612b00201600620b", - "0x200220b00600200900201400696101000620b00700c00657700200c009", - "0x601700657b00201700620b00601500657a00201500620b006010006579", - "0x20b00601900657d00200220b00601b00657c0020650c401c01901b01620b", - "0x60c400657e00200220b00606500604d00200220b00601c0060fa002002", - "0x202900620b00600700601600211b00620b00605400657f00205400620b", - "0x2b02a02900900602b00620b00611b00658000202a00620b00600900612b", - "0x20b00600700601600202c00620b00601400658100200220b006002009002", - "0x900602f00620b00602c00658000202e00620b00600900612b00202d006", - "0x35500200c00900720b00600900622500200220b00600211e00202f02e02d", - "0x604d00200220b0060160060fa00201501401000f01601620b00600c006", - "0x61a00200220b00601400634900200220b00601000634900200220b00600f", - "0x620b00600200600c00201b00620b0060020ef00201700620b006015006", - "0x60fc00202900620b00600700615d00211b00620b006006006016002054", - "0x2a02911b05401661b00202b00620b00601b00604b00202a00620b006017", - "0x202d00696202c00620b00706500661c0020650c401c01900c20b00602b", - "0x602e00639c00203002f02e00920b00602c00661d00200220b006002009", - "0x35500203300900720b00600900622500200220b00603000603300200220b", - "0x604d00200220b0060480060fa00203711e03503904801620b006033006", - "0x61a00200220b00611e00634900200220b00603500634900200220b006039", - "0x20b00610d00659100210d00620b00612000659000212000620b006037006", - "0x37b00203c00620b00603c00604b00203c00620b00603a00653c00203a006", - "0x600261e00203e00620b0060020ef00207d12400720b00603c02f0c4009", - "0x212a00620b00612a00604b00203e00620b00603e00604b00212a00620b", - "0x204100900720b00600900622500212b12c00720b00612a03e12400937b", - "0x34900200220b00612d00604d00204712e04512d04301620b006041006355", - "0x200220b00604700639c00200220b00612e00634900200220b006045006", - "0x612b00604b00213000620b0061310061bf00213100620b006043006361", - "0x20b00600900622500204b04d00720b00613012b12c00937b00212b00620b", - "0x604f0060fa00212f05305113204f01620b00604e00635500204e009007", - "0x12f00639c00200220b00605300634900200220b00605100634900200220b", - "0x204b00620b00604b00604b00205600620b0061320061b200200220b006", - "0x213600900720b00600900622500205813300720b00605604b04d00937b", - "0x4d00200220b0061340060fa00213705d13505b13401620b006136006355", - "0x200220b00613700639c00200220b00605d00634900200220b00605b006", - "0x605800604b00206100620b00605f00662000205f00620b00613500661f", - "0x20b00600900622500206413800720b00606105813300937b00205800620b", - "0x60670060fa00206c06a06913b06701620b006139006355002139009007", - "0x6c00639c00200220b00606900634900200220b00613b00604d00200220b", - "0x206f00620b00613c00662000213c00620b00606a00661f00200220b006", - "0x35500207113f00720b00606f06413800937b00206400620b00606400604b", - "0x604d00200220b0061410060fa00207707607514514101620b006009006", - "0x61a00200220b00607600634900200220b00607500634900200220b006145", - "0x20b00614600659100214600620b00607900659000207900620b006077006", - "0x4b00207100620b00607100604b00207b00620b00614b00653c00214b006", - "0x604b00207f14a00720b00607b07113f00937b00207b00620b00607b006", - "0x607d07f14a00937b00207d00620b00607d00604b00207f00620b00607f", - "0x215100620b00615100604b00215200620b0060026210021510c700720b", - "0x33100214f14e00720b0061521510c700937b00215200620b00615200604b", - "0x20b00601900600c00208500620b00608300633200208300620b00614f006", - "0x21200216100620b00614e00615d00215e00620b00601c006016002150006", - "0x8a00200220b00600200900216016115e15000c00616000620b006085006", - "0x620b00601900600c00215f00620b00602d00633300200220b006009006", - "0x621200215c00620b0060c400615d00216300620b00601c00601600215d", - "0x1401000720b00600c00637200216215c16315d00c00616200620b00615f", - "0x1400637300201c00620b00600700615d00201900620b00600200600c002", - "0x60650c401c01900c61500206500620b00601600604b0020c400620b006", - "0x11b00620b00700f00603000205400620b00600206500201b01701500920b", - "0x60020ef00200220b00611b00603300200220b006002009002029006963", - "0x200900200296400600202d00202b00620b00602a00604b00202a00620b", - "0x604b00202c00620b00600200000200220b00602900603300200220b006", - "0x620b00605400611b00202d00620b00601b00622400202b00620b00602c", - "0x204803303000996502f02e00720b00702b02d054009006016622002054", - "0x3500620b0060390063b700203900620b00600202a00200220b006002009", - "0x350063b800203700620b00602f00612b00211e00620b00602e006016002", - "0x480063b900200220b00600200900200296600600202d00212000620b006", - "0x3700620b00603300612b00211e00620b00603000601600210d00620b006", - "0x3c0063bb00203c00620b0061200063ba00212000620b00610d0063b8002", - "0x20b00600200900207d00696712400620b00703a0063bc00203a00620b006", - "0x62400212a00620b00603e01000762300203e00620b0061240065eb002002", - "0x20b00611e00601600212b00620b00601500600c00212c00620b00612a006", - "0x62500212d00620b00603700612b00204300620b00601700615d002041006", - "0x200220b00600200900204512d04304112b01600604500620b00612c006", - "0x20b00601500600c00212e00620b00607d00662600200220b006010006397", - "0x12b00213000620b00601700615d00213100620b00611e006016002047006", - "0x4d13013104701600604b00620b00612e00662500204d00620b006037006", - "0x604d00200f01600720b00600900613000200c00620b00600213100204b", - "0x1700620b00600c00604e00201500620b00600f00604b00200220b006016", - "0x662700200220b00601400603300201401000720b00601701500704f002", - "0x20b00601900605100201c01900720b00601000613200201b00620b006007", - "0x6500604b00206500620b0060026280020c400620b00601c006053002002", - "0xc406501b0060020166290020c400620b0060c400600f00206500620b006", - "0x662a00200220b00600200900202c02b02a00996802911b05400920b007", - "0x620b00611b00612b00202e00620b00605400601600202d00620b006029", - "0x20b00600200900200296900600202d00203000620b00602d00662b00202f", - "0x612b00202e00620b00602a00601600203300620b00602c00662c002002", - "0x620b00603000662d00203000620b00603300662b00202f00620b00602b", - "0x11e00696a03500620b00704800662f00204800620b00603900662e002039", - "0x20b00603700600f00203700620b00603500663000200220b006002009002", - "0x63200200220b00612000606100210d12000720b00603a00663100203a006", - "0x603c0063a800200220b00600200900212400696b03c00620b00710d006", - "0x212a00620b00602e00601600203e00620b00607d0063a900207d00620b", - "0x12b12c12a00900612b00620b00603e0063aa00212c00620b00602f00612b", - "0x4100620b00600213100200220b00612400603300200220b006002009002", - "0x4304100705b00204300620b00604300604b00204300620b006002633002", - "0x12e00620b00612d04500705d00204500620b00600213500212d00620b006", - "0x2f00612b00213100620b00602e00601600204700620b00612e0063ab002", - "0x200900204d13013100900604d00620b0060470063aa00213000620b006", - "0x204e00620b00602e00601600204b00620b00611e0063ab00200220b006", - "0x13204f04e00900613200620b00604b0063aa00204f00620b00602f00612b", - "0x663500200220b00600200900200700696c00600620b007002006634002", - "0x620b00600c00663600200c00620b00600900622300200900620b006006", - "0x705d00200f00620b00600213500200220b006002009002016006006016", - "0x20b00601400663600201400620b00601000663700201000620b00600700f", - "0x620b00600f00663800200f00620b00600c0063bf002015006006015006", - "0x60160065de00201400620b00600213100201000620b006002131002016", - "0x20c400620b00600200600c00200220b0060150065df00201701500720b", - "0x601000604e00205400620b0060170065e000206500620b006006006016", - "0x602911b0540650c40165e600202900620b00601400604e00211b00620b", - "0x96d02a00620b00701c0065e800200220b00600200600201c01901b00920b", - "0x3300202e02d02c00920b00602a0065e900200220b00600200900202b006", - "0x20b00602f00605100203002f00720b00602c00613200200220b00602e006", - "0x5100203904800720b00602d00613200203300620b006030006053002002", - "0x620b00603300600f00203500620b00603900605300200220b006048006", - "0x11e00720b00703503300701900c5ea00203500620b00603500600f002033", - "0x203c00620b00600202a00200220b00600200900203a10d12000996e037", - "0x603700612b00207d00620b00611e00601600212400620b00603c0063b7", - "0x200900200296f00600202d00212a00620b0061240063b800203e00620b", - "0x207d00620b00612000601600212c00620b00603a0063b900200220b006", - "0x612a0063ba00212a00620b00612c0063b800203e00620b00610d00612b", - "0x97004300620b00712b0063bc00212b00620b0060410063bb00204100620b", - "0x20b0060430065eb00200220b00600211e00200220b00600200900212d006", - "0x204700620b00612e00648500212e00620b006045009007484002045006", - "0x603e00612b00213000620b00607d00601600213100620b00601b00600c", - "0x200900204b04d13013100c00604b00620b00604700644c00204d00620b", - "0x12d00644b00200220b00600900604700200220b00600211e00200220b006", - "0x13200620b00607d00601600204f00620b00601b00600c00204e00620b006", - "0x13204f00c00605300620b00604e00644c00205100620b00603e00612b002", - "0x20b00600900604700200220b00600211e00200220b006002009002053051", - "0x601600205600620b00601b00600c00212f00620b00602b00644b002002", - "0x620b00612f00644c00205800620b00600700612b00213300620b006019", - "0x220b00600213900200f00620b00600206400213605813305600c006136", - "0x1400605100201501400720b00600c00613200201000620b006002131002", - "0x20c400620b00600600601600201c00620b00600200600c00200220b006", - "0xc401c00c17600205400620b00601000604e00206500620b006015006099", - "0x20b00701900607100200220b00600200600201901b01700920b006054065", - "0x2b02a00720b00611b00614100200220b00600200900202900697111b006", - "0x602a00613200202c00620b00600900663900200220b00602b006033002", - "0x202f00620b00602e00605300200220b00602d00605100202e02d00720b", - "0x20b00602f00600f00203000620b00603000604b00203000620b0060025d7", - "0x11e03500997203904803300920b00702f03002c00701b01662900202f006", - "0x603300601600212000620b00603900662a00200220b006002009002037", - "0x203a00620b00612000662b00201600620b00604800612b00210d00620b", - "0x203c00620b00603700662c00200220b00600200900200297300600202d", - "0x603c00662b00201600620b00611e00612b00210d00620b006035006016", - "0x212400620b00607d00662e00207d00620b00603a00662d00203a00620b", - "0x212a00697403e00620b00712400662f00201600620b00601600f00713b", - "0x212c00620b00603e00663000200220b00600211e00200220b006002009", - "0x612c00600f00204500620b00610d00601600212d00620b00601700600c", - "0x704300614b00204304112b00920b00612e04512d00914600212e00620b", - "0x13000720b00604700607b00200220b00600200900213100697504700620b", - "0x204e00697604b00620b00704d00614a00200220b00613000606100204d", - "0x620b00604f00663b00204f00620b00604b00663a00200220b006002009", - "0x612b00205300620b00604100601600205100620b00612b00600c002132", - "0x205612f05305100c00605600620b00613200663c00212f00620b006016", - "0x213300620b00600213100200220b00604e00603300200220b006002009", - "0x605813300705b00205800620b00605800604b00205800620b006002633", - "0x205b00620b00613613400705d00213400620b00600213500213600620b", - "0x604100601600205d00620b00612b00600c00213500620b00605b00663d", - "0x606100620b00613500663c00205f00620b00601600612b00213700620b", - "0x213800620b00613100663d00200220b00600200900206105f13705d00c", - "0x601600612b00213900620b00604100601600206400620b00612b00600c", - "0x200900213b06713906400c00613b00620b00613800663c00206700620b", - "0x600c00206900620b00612a00663d00200220b00600211e00200220b006", - "0x620b00601600612b00206c00620b00610d00601600206a00620b006017", - "0x20b00600200900206f13c06c06a00c00606f00620b00606900663c00213c", - "0x20b00600900663e00200220b00600f00614500200220b00600211e002002", - "0x601600207100620b00601700600c00213f00620b00602900663d002002", - "0x620b00613f00663c00214500620b00600700612b00214100620b00601b", - "0x20b00600c00603900200c00620b00600204800207514514107100c006075", - "0x200900201401000797700f01600720b00700c00600200903500200c006", - "0x201600620b00601600600c00201500620b00600700601b00200220b006", - "0x61a300200220b00600200900201900697801b01700720b0070150060db", - "0x620b00601c0061a40020c400620b00601700609900201c00620b00601b", - "0x5400620b00600202a00200220b00600200900200297900600202d002065", - "0x11b0061a40020c400620b00601900609900211b00620b0060540061a5002", - "0x2900620b00602900600f00202900620b0060c400605300206500620b006", - "0x211e00200220b00600200900202b00697a02a00620b0070650060df002", - "0x202f00620b00602c00604b00202c00620b00602a0061a600200220b006", - "0x603300202e02d00720b00603002f00704f00203000620b00600900604e", - "0x11e00620b00600f00601600203500620b00601600600c00200220b00602e", - "0x3500c21800212000620b00602d00604e00203700620b00602900600f002", - "0x3a00697b10d00620b00703900607100203904803300920b00612003711e", - "0x612400603300212403c00720b00610d00614100200220b006002009002", - "0x4e00203e00620b00604800601600207d00620b00603300600c00200220b", - "0x31c00200220b00600200900200297c00600202d00212a00620b00603c006", - "0x20b00604800601600212b00620b00603300600c00212c00620b00603a006", - "0x20b00600200900204304112b00900604300620b00612c00631b002041006", - "0x20b00602900606100200220b00602b00603300200220b00600211e002002", - "0x604e00203e00620b00600f00601600207d00620b00601600600c002002", - "0x620b00612d12a00731900212d00620b00600202a00212a00620b006009", - "0x601600204700620b00607d00600c00212e00620b00604500631a002045", - "0x900213013104700900613000620b00612e00631b00213100620b00603e", - "0x605100200220b00600700606100200220b00600211e00200220b006002", - "0x4b00204b00620b00600213400204d00620b00600213100200220b006009", - "0x20b00600213500204e00620b00604b04d00705b00204b00620b00604b006", - "0x205100620b00613200631c00213200620b00604e04f00705d00204f006", - "0x605100631b00212f00620b00601400601600205300620b00601000600c", - "0x20b00600263f00200220b00600700639b00205612f05300900605600620b", - "0x611b00201600620b00600206500200c00620b006009006224002009006", - "0xc01600600200c64100200c00620b00600c00664000201600620b006016", - "0x664200200220b00600200900201b01701500997d01401000f00920b007", - "0x620b00601000612b00201c00620b00600f00601600201900620b006014", - "0x20b00600200900200297e00600202d00206500620b0060190066430020c4", - "0x612b00201c00620b00601500601600205400620b00601b006644002002", - "0x620b00606500664500206500620b0060540066430020c400620b006017", - "0x2b00697f02a00620b00711b00615100211b00620b006029006646002029", - "0x20b00602c00633100202c00620b00602a00615200200220b006002009002", - "0x12b00202f00620b00601c00601600202e00620b00602d00633200202d006", - "0x203303002f00900603300620b00602e00621200203000620b0060c4006", - "0x620b00601c00601600204800620b00602b00633300200220b006002009", - "0x3900900611e00620b00604800621200203500620b0060c400612b002039", - "0x900622400200900620b00600264700200220b00600700639a00211e035", - "0x201600620b00601600611b00201600620b00600206500200c00620b006", - "0x1401000f00920b00700c01600600200c64100200c00620b00600c006640", - "0x201900620b00601400664200200220b00600200900201b017015009980", - "0x60190066430020c400620b00601000612b00201c00620b00600f006016", - "0x601b00664400200220b00600200900200298100600202d00206500620b", - "0x20c400620b00601700612b00201c00620b00601500601600205400620b", - "0x602900664600202900620b00606500664500206500620b006054006643", - "0x220b00600200900202b00698202a00620b00711b00615100211b00620b", - "0x2d00633200202d00620b00602c00633100202c00620b00602a006152002", - "0x3000620b0060c400612b00202f00620b00601c00601600202e00620b006", - "0x200220b00600200900203303002f00900603300620b00602e006212002", - "0x60c400612b00203900620b00601c00601600204800620b00602b006333", - "0x700639900211e03503900900611e00620b00604800621200203500620b", - "0x6500200c00620b00600900622400200900620b00600264800200220b006", - "0x620b00600c00664000201600620b00601600611b00201600620b006002", - "0x201b01701500998301401000f00920b00700c01600600200c64100200c", - "0x620b00600f00601600201900620b00601400664200200220b006002009", - "0x202d00206500620b0060190066430020c400620b00601000612b00201c", - "0x601600205400620b00601b00664400200220b006002009002002984006", - "0x620b0060540066430020c400620b00601700612b00201c00620b006015", - "0x615100211b00620b00602900664600202900620b006065006645002065", - "0x20b00602a00615200200220b00600200900202b00698502a00620b00711b", - "0x1600202e00620b00602d00633200202d00620b00602c00633100202c006", - "0x20b00602e00621200203000620b0060c400612b00202f00620b00601c006", - "0x620b00602b00633300200220b00600200900203303002f009006033006", - "0x621200203500620b0060c400612b00203900620b00601c006016002048", - "0x264900200220b00600900639500211e03503900900611e00620b006048", - "0x201700620b00600200600c00201600620b00600206500200c00620b006", - "0x601600611b00201900620b00600700612b00201b00620b006006006016", - "0x60c401c01901b01701664a0020c400620b00600c00661600201c00620b", - "0x200900205400698606500620b00701500664b00201501401000f00c20b", - "0x202a00620b00611b00664d00211b00620b00606500664c00200220b006", - "0x900202c00698702b00620b0070290063e500202900620b00602a006220", - "0x2e00620b00602d00664e00202d00620b00602b0063e600200220b006002", - "0x1000601600203000620b00600f00600c00202f00620b00602e00664f002", - "0x3900620b00602f00665000204800620b00601400612b00203300620b006", - "0x3500620b00602c00665100200220b00600200900203904803303000c006", - "0x1400612b00203700620b00601000601600211e00620b00600f00600c002", - "0x900210d12003711e00c00610d00620b00603500665000212000620b006", - "0x3c00620b00600f00600c00203a00620b00605400665100200220b006002", - "0x3a00665000207d00620b00601400612b00212400620b006010006016002", - "0x65200200700620b00600200665200203e07d12403c00c00603e00620b006", - "0x20b00600c00665400200c00620b00600700665200200900620b006006006", - "0x65200200220b00600f00604d00201000f00720b006016006130002016006", - "0x20b00601500613000201500620b00601400665400201400620b006009006", - "0x1b200201900620b0060100061b200200220b00601700604d00201b017007", - "0x60c400604b0020c400620b00601c0190071c100201c00620b00601b006", - "0x200220b00600200900206500698800220b0070c40061c50020c400620b", - "0x20b00611b00602c00211b00620b00605400602e00205400620b00600202a", - "0x20b0060650060f200200220b00600200900200298900600202d002029006", - "0x2b00602c00202b00620b00602a00602b00202a00620b00600202a002002", - "0x60070063e200202c00600602c00620b00602900636f00202900620b006", - "0x65400200f00620b00600264900200220b00601600639500201600c00720b", - "0x620b00600206500201400620b00600f00622400201000620b006009006", - "0x1662200201400620b00601400664000201500620b00601500611b002015", - "0x20b0060020090020c401c01900998a01b01700720b007010014015006002", - "0x1700601600205400620b0060650063b700206500620b00600202a002002", - "0x2a00620b0060540063b800202900620b00601b00612b00211b00620b006", - "0x2b00620b0060c40063b900200220b00600200900200298b00600202d002", - "0x2b0063b800202900620b00601c00612b00211b00620b006019006016002", - "0x2c00620b00602d0063bb00202d00620b00602a0063ba00202a00620b006", - "0x65eb00200220b00600200900202f00698c02e00620b00702c0063bc002", - "0x20b00603300665600203300620b00603000c00765300203000620b00602e", - "0x65700203500620b00602900612b00203900620b00611b006016002048006", - "0x639500200220b00600200900211e03503900900611e00620b006048006", - "0x12000620b00611b00601600203700620b00602f00665800200220b00600c", - "0x10d12000900603a00620b00603700665700210d00620b00602900612b002", - "0x213100201600620b00600f00665a00200f00620b00600c0063ee00203a", - "0x1701500720b0060160065de00201400620b00600213100201000620b006", - "0x60060060160020c400620b00600200600c00200220b0060150065df002", - "0x211b00620b00601000604e00205400620b0060170065e000206500620b", - "0x1901b00920b00602911b0540650c40165e600202900620b00601400604e", - "0x900202b00698d02a00620b00701c0065e800200220b00600200600201c", - "0x20b00602e00603300202e02d02c00920b00602a0065e900200220b006002", - "0x605300200220b00602f00605100203002f00720b00602c006132002002", - "0x20b00604800605100203904800720b00602d00613200203300620b006030", - "0x600f00203300620b00603300600f00203500620b006039006053002002", - "0x12000998e03711e00720b00703503300701900c5ea00203500620b006035", - "0x603c0063b700203c00620b00600202a00200220b00600200900203a10d", - "0x203e00620b00603700612b00207d00620b00611e00601600212400620b", - "0x200220b00600200900200298f00600202d00212a00620b0061240063b8", - "0x610d00612b00207d00620b00612000601600212c00620b00603a0063b9", - "0x204100620b00612a0063ba00212a00620b00612c0063b800203e00620b", - "0x900212d00699004300620b00712b0063bc00212b00620b0060410063bb", - "0x48400204500620b0060430065eb00200220b00600211e00200220b006002", - "0x601b00600c00204700620b00612e00648500212e00620b006045009007", - "0x204d00620b00603e00612b00213000620b00607d00601600213100620b", - "0x200220b00600200900204b04d13013100c00604b00620b00604700644c", - "0x4e00620b00612d00644b00200220b00600900604700200220b00600211e", - "0x3e00612b00213200620b00607d00601600204f00620b00601b00600c002", - "0x900205305113204f00c00605300620b00604e00644c00205100620b006", - "0x644b00200220b00600900604700200220b00600211e00200220b006002", - "0x620b00601900601600205600620b00601b00600c00212f00620b00602b", - "0x5600c00613600620b00612f00644c00205800620b00600700612b002133", - "0x3500200c00620b00600c00603900200c00620b006002048002136058133", - "0x200220b00600200900201401000799100f01600720b00700c006002009", - "0x701500665b00201600620b00601600600c00201500620b006007006590", - "0x620b00601b00665c00200220b00600200900201900699201b01700720b", - "0x202d00206500620b00601c00665d0020c400620b00601700659600201c", - "0x5400665e00205400620b00600202a00200220b006002009002002993006", - "0x6500620b00611b00665d0020c400620b00601900659600211b00620b006", - "0x6500666000202900620b0060290060fc00202900620b0060c40061d6002", - "0x620b00602a00659b00200220b00600200900202b00699402a00620b007", - "0x202f02e02d00920b00602c00659e00202c00620b00602c00659c00202c", - "0x620b00602d00636100200220b00602f00659f00200220b00602e00604d", - "0x636000200220b0060330060fa00204803300720b006030006360002030", - "0x611e0060fa00203711e00720b00604800636000203503900720b006009", - "0x3f100200220b0061200060fa00210d12000720b00603500636000200220b", - "0x612403c00766100212400620b00610d0063f100203c00620b006037006", - "0x207d00620b00607d00602c00207d00620b00603a00602f00203a00620b", - "0x703e00603000203e00620b00603e00602c00203e00620b00607d00602f", - "0x3300200220b00600211e00200220b00600200900212c00699512a00620b", - "0x620b00600f00601600212d00620b00601600600c00200220b00612a006", - "0xc3f200204700620b0060390063f100212e00620b0060290060fc002045", - "0x699613100620b0070430063f300204304112b00920b00604712e04512d", - "0x4d00766300204b04d00720b00613100666200200220b006002009002130", - "0x620b00612b00600c00204f00620b00604e00666400204e00620b00604b", - "0x13200900605300620b00604f00666500205100620b006041006016002132", - "0x12b00600c00212f00620b00613000621f00200220b006002009002053051", - "0x5800620b00612f00666500213300620b00604100601600205600620b006", - "0x603300200220b00600211e00200220b006002009002058133056009006", - "0x13100200220b00602900639c00200220b0060390060fa00200220b00612c", - "0x13400620b00613400604b00213400620b00600266600213600620b006002", - "0x13500705d00213500620b00600213500205b00620b00613413600705b002", - "0x620b00601600600c00213700620b00605d00621f00205d00620b00605b", - "0x5f00900613800620b00613700666500206100620b00600f00601600205f", - "0x20b00602b00603300200220b00600211e00200220b006002009002138061", - "0x6402900766300206400620b00600202a00200220b0060090060fa002002", - "0x13b00620b00601600600c00206700620b00613900666400213900620b006", - "0x6913b00900606a00620b00606700666500206900620b00600f006016002", - "0x220b0060090060fa00200220b00600211e00200220b00600200900206a", - "0x620b00600213400206c00620b00600213100200220b00600700639c002", - "0x13500206f00620b00613c06c00705b00213c00620b00613c00604b00213c", - "0x20b00607100621f00207100620b00606f13f00705d00213f00620b006002", - "0x66500207500620b00601400601600214500620b00601000600c002141006", - "0x201500620b00600200600c00207607514500900607600620b006141006", - "0x65fb00201401000720b0060170150075fa00201700620b00600f00600f", - "0x20b00601b0065fc00200220b00600200900201900699701b00620b007014", - "0x202c00620b00601000600c0020650c400720b00601c0065fd00201c006", - "0x600900612b00202e00620b00600700601600202d00620b00600600612c", - "0x3000620b00603000604100203000c00720b00600c0065fe00202f00620b", - "0x600f00203300620b00603300604b00203301600720b00601600635a002", - "0x11b05401620b00604803303002f02e02d02c0105d400204800620b0060c4", - "0x220b00600200900203500699803900620b00702b0060ed00202b02a029", - "0x3700602c00203700620b00611e00602f00211e00620b00603900608e002", - "0x20b00600200900210d00699912000620b00703700603000203700620b006", - "0x637100203a00c00720b00600c0065fe00200220b006120006033002002", - "0x200220b00603c00639500204112b12c12a03e07d12403c01420b00603a", - "0x220b00612a00639800200220b00603e00639900200220b00612400639b", - "0x20b00604100620c00200220b00612b00639600200220b00612c006397002", - "0x63d300204700620b00602a00612b00212e00620b006029006016002002", - "0x615100204512d04300920b00613104712e0093d400213100620b00607d", - "0x20b00613000615200200220b00600200900204d00699a13000620b007045", - "0x4d00200220b00600200900204e00699b00220b00704b0061c500204b006", - "0x4f00620b00606500601b00200220b00600c00604700200220b006016006", - "0x60c400205305100720b00613200601c00213200620b00604f006019002", - "0x13305600720b00612f00601c00212f00620b00600206500200220b006051", - "0x613300605400205800620b00605300605400200220b0060560060c4002", - "0x99c00220b00713605800702900205800620b00605800611b00213600620b", - "0x20b00613400602b00213400620b00600202a00200220b006002009002002", - "0x600200900200299d00600202d00213500620b00605b00602c00205b006", - "0x602c00213700620b00605d00602e00205d00620b00600202a00200220b", - "0x620b00605f00602c00205f00620b00613500602f00213500620b006137", - "0x3300200220b00600200900213800699e06100620b00705f00603000205f", - "0x620b00611b00612c00206400620b00605400600c00200220b006061006", - "0x202d00213b00620b00612d00612b00206700620b006043006016002139", - "0x600213100200220b00613800603300200220b00600200900200299f006", - "0x5b00206a00620b00606a00604b00206a00620b0060025bb00206900620b", - "0x606c13c00705d00213c00620b00600213500206c00620b00606a069007", - "0x207100620b00605400600c00213f00620b00606f00663700206f00620b", - "0x612d00612b00214500620b00604300601600214100620b00611b00612c", - "0x900207607514514107101600607600620b00613f00663600207500620b", - "0x214a00620b00605400600c00200220b00604e0060f200200220b006002", - "0x612d00612b0020c700620b00604300601600207f00620b00611b00612c", - "0x214e00620b00601600604b00215200620b00600c00604100215100620b", - "0x1620b00614f14e1521510c707f14a0105b800214f00620b00606500600f", - "0x60020090020850069a008300620b00707b0060ed00207b14b146079077", - "0x2c00215e00620b00615000602f00215000620b00608300608e00200220b", - "0x20090021600069a116100620b00715e00603000215e00620b00615e006", - "0x12c00206400620b00607700600c00200220b00616100603300200220b006", - "0x20b00614b00612b00206700620b00614600601600213900620b006079006", - "0x622300215d00620b00615f00663500215f00620b00600202a00213b006", - "0x620b00613900666700215c00620b00606400636e00216300620b00615d", - "0x663600215400620b00613b00644900208700620b006067006448002162", - "0x3300200220b00600200900215715408716215c01600615700620b006163", - "0x215b00620b0060025bb00208a00620b00600213100200220b006160006", - "0x600213500216e00620b00615b08a00705b00215b00620b00615b00604b", - "0x8e00620b0060ed0066370020ed00620b00616e16800705d00216800620b", - "0x1460060160020d000620b00607900612c00216b00620b00607700600c002", - "0x16d00620b00608e00663600209200620b00614b00612b00216c00620b006", - "0x620b00608500663700200220b00600200900216d09216c0d016b016006", - "0x601600217300620b00607900612c00209400620b00607700600c002171", - "0x620b00617100663600217500620b00614b00612b00209600620b006146", - "0x20b00606500606100200220b0060020090020d11750961730940160060d1", - "0x604d00663700200220b00600c00604700200220b00601600604d002002", - "0x209b00620b00611b00612c00217600620b00605400600c00209900620b", - "0x609900663600209d00620b00612d00612b00217a00620b006043006016", - "0x10d00603300200220b00600200900217c09d17a09b17601600617c00620b", - "0x606100200220b00600c00604700200220b00601600604d00200220b006", - "0x4b0020a000620b0060022220020cc00620b00600213100200220b006065", - "0x20b00600213500217d00620b0060a00cc00705b0020a000620b0060a0006", - "0x20a400620b00617e00663700217e00620b00617d0a200705d0020a2006", - "0x60290060160020cd00620b00611b00612c00217f00620b00605400600c", - "0x618000620b0060a40066360020a800620b00602a00612b0020d200620b", - "0x200220b00601600604d00200220b0060020090021800a80d20cd17f016", - "0x620b00603500663700200220b00606500606100200220b00600c006047", - "0x601600218100620b00611b00612c0020ab00620b00605400600c0020ce", - "0x620b0060ce0066360020c800620b00602a00612b0020cf00620b006029", - "0x20b00600c00604700200220b0060020090020c90c80cf1810ab0160060c9", - "0x1000600c0020ca00620b00601900663700200220b00601600604d002002", - "0xb300620b0060070060160020c600620b00600600612c0020cb00620b006", - "0xc60cb01600618e00620b0060ca0066360020b500620b00600900612b002", - "0x201b00620b0060020ef00201701500720b00600f00613000218e0b50b3", - "0x60170061b200200220b00601900604d00201c01900720b00601b006130", - "0x200220b00606500604d00205406500720b0060c40061300020c400620b", - "0x2900604d00202a02900720b00611b00613000211b00620b00601c0061b2", - "0x202c00620b00602a0061b200202b00620b0060540061b200200220b006", - "0x2d0061c500202d00620b00602d00604b00202d00620b00602c02b0071c1", - "0x202f00620b00600202a00200220b00600200900202e0069a200220b007", - "0x9a300600202d00203300620b00603000602c00203000620b00602f00602e", - "0x620b00600202a00200220b00602e0060f200200220b006002009002002", - "0x602f00203300620b00603900602c00203900620b00604800602b002048", - "0x620b00603500602f00203500620b00603500602c00203500620b006033", - "0x1200069a403700620b00711e00603000211e00620b00611e00602c00211e", - "0x620b00600700601600200220b00603700603300200220b006002009002", - "0x3c03a10d00920b00607d1240070f400207d00620b00600c00612b002124", - "0x61ca00200220b00600200900212a0069a503e00620b00703c0061c8002", - "0x1020b00612b0061eb00212b00620b00612c0061d400212c00620b00603e", - "0x20b0060430060fa00200220b00604100604d00213104712e04512d043041", - "0x612e00604d00200220b00604500606100200220b00612d0061ef002002", - "0x612b00204e00620b00610d00601600200220b00613100604d00200220b", - "0x4700604b00204b04d13000920b00604f04e00738300204f00620b00603a", - "0x20b0060020090020510069a613200620b00704b0060ea00204700620b006", - "0x5813305612f01420b00601600637100205300620b0061320060ec002002", - "0x39900200220b00613300639a00200220b00612f00639500213505b134136", - "0x200220b00613400639700200220b00613600639800200220b006058006", - "0x620b00613000601600200220b00613500620c00200220b00605b006396", - "0x93d100206400620b0060560063d000213800620b00604d00612b002061", - "0x670069a713900620b00705f00615100205f13705d00920b006064138061", - "0x620b00600266800213b00620b00613900615200200220b006002009002", - "0x206c00620b0060020ef00206a00620b00613b05304706900c66d002069", - "0x606a00666e00207100620b00606c00604b00213f00620b00600900615d", - "0x620b00600238200206f13c00720b00614107113f00966f00214100620b", - "0x7607500720b00614506f13c00937b00214500620b00614500604b002145", - "0x7600604b00207b00620b00600600612c00214b00620b00600200600c002", - "0xc700620b00601000604b00207f00620b00601500604b00214a00620b006", - "0x920b0061510c707f14a07b14b00f67000215100620b00601400604b002", - "0x215200620b00615200602c00215200620b00614600602f002146079077", - "0x900214f0069a814e00620b00715200603000207500620b00607500615d", - "0x63500208300620b00600202a00200220b00614e00603300200220b006002", - "0x20b00607700600c00215000620b00608500622300208500620b006083006", - "0x15d00216000620b00605d00601600216100620b00607900612c00215e006", - "0x20b00615000663600215d00620b00613700612b00215f00620b006075006", - "0x14f00603300200220b00600200900216315d15f16016115e00f006163006", - "0x604b00216200620b00600222200215c00620b00600213100200220b006", - "0x620b00600213500208700620b00616215c00705b00216200620b006162", - "0xc00208a00620b00615700663700215700620b00608715400705d002154", - "0x20b00605d00601600216e00620b00607900612c00215b00620b006077006", - "0x63600208e00620b00613700612b0020ed00620b00607500615d002168006", - "0x220b00600200900216b08e0ed16816e15b00f00616b00620b00608a006", - "0x20b00601500604d00200220b00601000604d00200220b00601400604d002", - "0x606700663700200220b0060530060fa00200220b00604700604d002002", - "0x209200620b00600600612c00216c00620b00600200600c0020d000620b", - "0x613700612b00217100620b00600900615d00216d00620b00605d006016", - "0x217309417116d09216c00f00617300620b0060d000663600209400620b", - "0x200220b00601600604700200220b00604700604d00200220b006002009", - "0x220b00601500604d00200220b00601000604d00200220b00601400604d", - "0x600612c00217500620b00600200600c00209600620b006051006637002", - "0x17600620b00600900615d00209900620b0061300060160020d100620b006", - "0xd117500f00617a00620b00609600663600209b00620b00604d00612b002", - "0x604d00200220b00601600604700200220b00600200900217a09b176099", - "0x63700200220b00601500604d00200220b00601000604d00200220b006014", - "0x20b00600600612c00217c00620b00600200600c00209d00620b00612a006", - "0x12b00217d00620b00600900615d0020a000620b00610d0060160020cc006", - "0x17d0a00cc17c00f00617e00620b00609d0066360020a200620b00603a006", - "0x601600604700200220b00612000603300200220b00600200900217e0a2", - "0x1500604d00200220b00601000604d00200220b00601400604d00200220b", - "0x604b00217f00620b0060023f60020a400620b00600213100200220b006", - "0x620b0060021350020cd00620b00617f0a400705b00217f00620b00617f", - "0xc00218000620b0060a80066370020a800620b0060cd0d200705d0020d2", - "0x20b0060070060160020ab00620b00600600612c0020ce00620b006002006", - "0x6360020c800620b00600c00612b0020cf00620b00600900615d002181006", - "0x20b0060090063980020c90c80cf1810ab0ce00f0060c900620b006180006", - "0x600200600c00201600620b00600206500200c00620b006002669002002", - "0x201900620b00600700612b00201b00620b00600600601600201700620b", - "0x1b01701666a0020c400620b00600c00661600201c00620b00601600611b", - "0x69a906500620b00701500666b00201501401000f00c20b0060c401c019", - "0x611b00667100211b00620b00606500666c00200220b006002009002054", - "0x9aa02b00620b0070290060c800202900620b00602a00667300202a00620b", - "0x2d00652800202d00620b00602b0060c900200220b00600200900202c006", - "0x3000620b00600f00600c00202f00620b00602e00621400202e00620b006", - "0x2f00652900204800620b00601400612b00203300620b006010006016002", - "0x2c00652a00200220b00600200900203904803303000c00603900620b006", - "0x3700620b00601000601600211e00620b00600f00600c00203500620b006", - "0x3711e00c00610d00620b00603500652900212000620b00601400612b002", - "0xf00600c00203a00620b00605400652a00200220b00600200900210d120", - "0x7d00620b00601400612b00212400620b00601000601600203c00620b006", - "0x20b00600900621e00203e07d12403c00c00603e00620b00603a006529002", - "0x201401000720b00600f00621e00200f00620b00600243e00201600c007", - "0x20b00601400661f00201500620b00601600661f00200220b006010006349", - "0x1600200220b0060020090020029ab00220b007017015007678002017006", - "0x60650c400736500206500620b00600700612b0020c400620b006006006", - "0x600200900211b0069ac05400620b00701c00636600201c01901b00920b", - "0x202a02900720b00602900635b00202900620b00605400636800200220b", - "0x9ad02d02c00720b00702b02a00200936900202b00c00720b00600c00635b", - "0x60024d200200220b00602d00634900200220b00600200900202f02e007", - "0x203500620b00600c00621b00203900620b00602c00600c00203000620b", - "0x36600204803300720b00611e0350390094d300211e00620b00603000621b", - "0x603700636800200220b0060020090021200069ae03700620b007048006", - "0x900207d1240079af03c03a00720b00710d02903300936900210d00620b", - "0x44300203e00620b00600202a00200220b00603c00634900200220b006002", - "0x20b00612c00667a00212c00620b00612a00667900212a00620b00603e006", - "0x12b00204300620b00601b00601600204100620b00603a00600c00212b006", - "0x4512d04304100c00604500620b00612b00667b00212d00620b006019006", - "0x12e00620b00600202a00200220b00607d00634900200220b006002009002", - "0x13100667a00213100620b00604700667900204700620b00612e0064f4002", - "0x4b00620b00601b00601600204d00620b00612400600c00213000620b006", - "0x4b04d00c00604f00620b00613000667b00204e00620b00601900612b002", - "0x612000667400200220b00602900634900200220b00600200900204f04e", - "0x205300620b00601b00601600205100620b00603300600c00213200620b", - "0x12f05305100c00605600620b00613200667b00212f00620b00601900612b", - "0x20b00602900634900200220b00602f00634900200220b006002009002056", - "0x613300667500213300620b00600202a00200220b00600c006349002002", - "0x213400620b00613600667a00213600620b00605800667900205800620b", - "0x601900612b00213500620b00601b00601600205b00620b00602e00600c", - "0x200900213705d13505b00c00613700620b00613400667b00205d00620b", - "0xc00205f00620b00611b00667400200220b00600c00634900200220b006", - "0x20b00601900612b00213800620b00601b00601600206100620b006002006", - "0x600200900213906413806100c00613900620b00605f00667b002064006", - "0x6700640300206700620b00600202a00200220b00600c00634900200220b", - "0x6a00620b00606900667a00206900620b00613b00667900213b00620b006", - "0x700612b00213c00620b00600600601600206c00620b00600200600c002", - "0x67600213f06f13c06c00c00613f00620b00606a00667b00206f00620b006", - "0x20b0060020090020160069b200c0069b10090069b000700620b00c002006", - "0x90020150069b50140069b40100069b300f00620b00c006006676002002", - "0x220b00601700603300201b01700720b00600700667700200220b006002", - "0x1b0061ff00200220b00601900603300201c01900720b00600f006677002", - "0x620b00605406500767c00205400620b00601c0061ff00206500620b006", - "0x20b0060020090020029b600600202d00211b00620b0060c400636f0020c4", - "0x20b00600202a00200220b00600700603300200220b006010006033002002", - "0x2d00211b00620b00602a00602c00202a00620b00602900602b002029006", - "0x603300200220b00601400603300200220b0060020090020029b6006002", - "0x202c00620b00602b00602b00202b00620b00600202a00200220b006007", - "0x200220b0060020090020029b600600202d00211b00620b00602c00602c", - "0x2d00620b00600202a00200220b00600700603300200220b006015006033", - "0x11b00636f00211b00620b00602e00602c00202e00620b00602d00602b002", - "0x600667600200220b0060020090020029b700600202d00202f00620b006", - "0x200220b0060020090020390069ba0480069b90330069b803000620b00c", - "0x3500620b00600202a00200220b00600900603300200220b006030006033", - "0x600202d00203700620b00611e00602c00211e00620b00603500602b002", - "0x603300210d12000720b00600900667700200220b0060020090020029bb", - "0x220b00603a00603300203c03a00720b00603300667700200220b006120", - "0x7d00767c00203e00620b00603c0061ff00207d00620b00610d0061ff002", - "0x20029bb00600202d00203700620b00612400636f00212400620b00603e", - "0x200220b00600900603300200220b00604800603300200220b006002009", - "0x20b00612c00602c00212c00620b00612a00602b00212a00620b00600202a", - "0x20b00603900603300200220b0060020090020029bb00600202d002037006", - "0x612b00602b00212b00620b00600202a00200220b006009006033002002", - "0x202f00620b00603700636f00203700620b00604100602c00204100620b", - "0x9bc04300620b00c00600667600200220b0060020090020029b700600202d", - "0x20b00604300603300200220b00600200900212e0069be0450069bd12d006", - "0x604700602b00204700620b00600202a00200220b00600c006033002002", - "0x20090020029bf00600202d00213000620b00613100602c00213100620b", - "0x202a00200220b00600c00603300200220b00612d00603300200220b006", - "0x13000620b00604b00602c00204b00620b00604d00602b00204d00620b006", - "0x4e00720b00600c00667700200220b0060020090020029bf00600202d002", - "0x603300205113200720b00604500667700200220b00604e00603300204f", - "0x5600620b0060510061ff00212f00620b00604f0061ff00200220b006132", - "0x202d00213000620b00605300636f00205300620b00605612f00767c002", - "0xc00603300200220b00612e00603300200220b0060020090020029bf006", - "0x2c00205800620b00613300602b00213300620b00600202a00200220b006", - "0x29b700600202d00202f00620b00613000636f00213000620b006058006", - "0x5b0069c11340069c013600620b00c00600667600200220b006002009002", - "0x1600603300200220b00613600603300200220b0060020090021350069c2", - "0x2c00213700620b00605d00602b00205d00620b00600202a00200220b006", - "0x3300200220b0060020090020029c300600202d00205f00620b006137006", - "0x206100620b00600202a00200220b00601600603300200220b006134006", - "0x9c300600202d00205f00620b00613800602c00213800620b00606100602b", - "0x20b00601600603300200220b00605b00603300200220b006002009002002", - "0x13900602c00213900620b00606400602b00206400620b00600202a002002", - "0x1600667700200220b0060020090020029c300600202d00205f00620b006", - "0x6900720b00613500667700200220b00606700603300213b06700720b006", - "0x6a0061ff00213c00620b00613b0061ff00200220b00606900603300206a", - "0x620b00606c00636f00206c00620b00606f13c00767c00206f00620b006", - "0x13f00600613f00620b00602f00636f00202f00620b00605f00636f00205f", - "0x600266900200220b00600f00639800200f01600720b0060090063fb002", - "0x1600201c00620b00600200600c00201400620b00600206500201000620b", - "0x20b00601400611b00206500620b00600700612b0020c400620b006006006", - "0x67e00202900620b00600c0060c600211b00620b006010006616002054006", - "0x20b00701900667f00201901b01701500c20b00602911b0540650c401c00f", - "0x202c00620b00602a00668300200220b00600200900202b0069c402a006", - "0x702d0063bc00202d00620b00602e0063bb00202e00620b00602c0063b8", - "0x3300620b00602f0065eb00200220b0060020090020300069c502f00620b", - "0x600c00203900620b00604800668000204800620b006033016007684002", - "0x620b00601b00612b00211e00620b00601700601600203500620b006015", - "0x20b00600200900212003711e03500c00612000620b006039006681002037", - "0x1500600c00210d00620b00603000668200200220b006016006398002002", - "0x12400620b00601b00612b00203c00620b00601700601600203a00620b006", - "0x220b00600200900207d12403c03a00c00607d00620b00610d006681002", - "0x601500600c00203e00620b00602b00668200200220b006016006398002", - "0x212b00620b00601b00612b00212c00620b00601700601600212a00620b", - "0x620b00600200668500204112b12c12a00c00604100620b00603e006681", - "0x643d00201600620b00600700643d00200900620b006006006685002007", - "0x20b00600c00636f00200c00620b00600f01600721a00200f00620b006009", - "0x620b00600f00668700200f00620b00600c006446002010006006010006", - "0x60160065de00201400620b00600213100201000620b006002131002016", - "0x20c400620b00600200600c00200220b0060150065df00201701500720b", - "0x601000604e00205400620b0060170065e000206500620b006006006016", - "0x602911b0540650c40165e600202900620b00601400604e00211b00620b", - "0x9c602a00620b00701c0065e800200220b00600200600201c01901b00920b", - "0x3300202e02d02c00920b00602a0065e900200220b00600200900202b006", - "0x20b00602f00605100203002f00720b00602c00613200200220b00602e006", - "0x5100203904800720b00602d00613200203300620b006030006053002002", - "0x620b00603300600f00203500620b00603900605300200220b006048006", - "0x11e00720b00703503300701900c5ea00203500620b00603500600f002033", - "0x203c00620b00600202a00200220b00600200900203a10d1200099c7037", - "0x603700612b00207d00620b00611e00601600212400620b00603c0063b7", - "0x20090020029c800600202d00212a00620b0061240063b800203e00620b", - "0x207d00620b00612000601600212c00620b00603a0063b900200220b006", - "0x612a0063ba00212a00620b00612c0063b800203e00620b00610d00612b", - "0x9c904300620b00712b0063bc00212b00620b0060410063bb00204100620b", - "0x20b0060430065eb00200220b00600211e00200220b00600200900212d006", - "0x204700620b00612e00648500212e00620b006045009007484002045006", - "0x603e00612b00213000620b00607d00601600213100620b00601b00600c", - "0x200900204b04d13013100c00604b00620b00604700644c00204d00620b", - "0x12d00644b00200220b00600900604700200220b00600211e00200220b006", - "0x13200620b00607d00601600204f00620b00601b00600c00204e00620b006", - "0x13204f00c00605300620b00604e00644c00205100620b00603e00612b002", - "0x20b00600900604700200220b00600211e00200220b006002009002053051", - "0x601600205600620b00601b00600c00212f00620b00602b00644b002002", - "0x620b00612f00644c00205800620b00600700612b00213300620b006019", - "0x1600620c00201600c00720b0060070065d300213605813305600c006136", - "0x22400201000620b00600900653c00200f00620b00600268800200220b006", - "0x620b00601500611b00201500620b00600206500201400620b00600f006", - "0x720b00701001401500600201662200201400620b006014006640002015", - "0x6500620b00600202a00200220b0060020090020c401c0190099ca01b017", - "0x1b00612b00211b00620b00601700601600205400620b0060650063b7002", - "0x90020029cb00600202d00202a00620b0060540063b800202900620b006", - "0x11b00620b00601900601600202b00620b0060c40063b900200220b006002", - "0x2a0063ba00202a00620b00602b0063b800202900620b00601c00612b002", - "0x2e00620b00702c0063bc00202c00620b00602d0063bb00202d00620b006", - "0x768d00203000620b00602e0065eb00200220b00600200900202f0069cc", - "0x20b00611b00601600204800620b00603300668e00203300620b00603000c", - "0x900611e00620b00604800621d00203500620b00602900612b002039006", - "0x2f00668900200220b00600c00620c00200220b00600200900211e035039", - "0x10d00620b00602900612b00212000620b00611b00601600203700620b006", - "0x720b0060070065a500203a10d12000900603a00620b00603700621d002", - "0x900653c00200f00620b00600268a00200220b00601600639600201600c", - "0x201500620b00600206500201400620b00600f00622400201000620b006", - "0x600201662200201400620b00601400664000201500620b00601500611b", - "0x200220b0060020090020c401c0190099cd01b01700720b007010014015", - "0x20b00601700601600205400620b0060650063b700206500620b00600202a", - "0x2d00202a00620b0060540063b800202900620b00601b00612b00211b006", - "0x1600202b00620b0060c40063b900200220b0060020090020029ce006002", - "0x20b00602b0063b800202900620b00601c00612b00211b00620b006019006", - "0x3bc00202c00620b00602d0063bb00202d00620b00602a0063ba00202a006", - "0x602e0065eb00200220b00600200900202f0069cf02e00620b00702c006", - "0x4800620b00603300668c00203300620b00603000c00768b00203000620b", - "0x4800668f00203500620b00602900612b00203900620b00611b006016002", - "0x600c00639600200220b00600200900211e03503900900611e00620b006", - "0x12b00212000620b00611b00601600203700620b00602f00669100200220b", - "0x203a10d12000900603a00620b00603700668f00210d00620b006029006", - "0x20b00600263f00200220b00601600639b00201600c00720b0060070063cf", - "0x611b00201400620b00600206500201000620b00600f00622400200f006", - "0x1001400600201662200201000620b00601000664000201400620b006014", - "0x202a00200220b00600200900201c01901b0099d001701500720b007009", - "0x5400620b00601500601600206500620b0060c40063b70020c400620b006", - "0x600202d00202900620b0060650063b800211b00620b00601700612b002", - "0x1b00601600202a00620b00601c0063b900200220b0060020090020029d1", - "0x2900620b00602a0063b800211b00620b00601900612b00205400620b006", - "0x2b0063bc00202b00620b00602c0063bb00202c00620b0060290063ba002", - "0x620b00602d0065eb00200220b00600200900202e0069d202d00620b007", - "0x1600203300620b00603000669300203000620b00602f00c00769200202f", - "0x20b00603300669400203900620b00611b00612b00204800620b006054006", - "0x220b00600c00639b00200220b006002009002035039048009006035006", - "0x11b00612b00203700620b00605400601600211e00620b00602e006695002", - "0x645800210d12003700900610d00620b00611e00669400212000620b006", - "0x1000620b00600213100201600620b00600f00669600200f00620b00600c", - "0x150065df00201701500720b0060160065de00201400620b006002131002", - "0x206500620b0060060060160020c400620b00600200600c00200220b006", - "0x601400604e00211b00620b00601000604e00205400620b0060170065e0", - "0x200600201c01901b00920b00602911b0540650c40165e600202900620b", - "0x220b00600200900202b0069d302a00620b00701c0065e800200220b006", - "0x613200200220b00602e00603300202e02d02c00920b00602a0065e9002", - "0x620b00603000605300200220b00602f00605100203002f00720b00602c", - "0x605300200220b00604800605100203904800720b00602d006132002033", - "0x620b00603500600f00203300620b00603300600f00203500620b006039", - "0x900203a10d1200099d403711e00720b00703503300701900c5ea002035", - "0x212400620b00603c0063b700203c00620b00600202a00200220b006002", - "0x61240063b800203e00620b00603700612b00207d00620b00611e006016", - "0x603a0063b900200220b0060020090020029d500600202d00212a00620b", - "0x203e00620b00610d00612b00207d00620b00612000601600212c00620b", - "0x60410063bb00204100620b00612a0063ba00212a00620b00612c0063b8", - "0x220b00600200900212d0069d604300620b00712b0063bc00212b00620b", - "0x604500900748400204500620b0060430065eb00200220b00600211e002", - "0x213100620b00601b00600c00204700620b00612e00648500212e00620b", - "0x604700644c00204d00620b00603e00612b00213000620b00607d006016", - "0x20b00600211e00200220b00600200900204b04d13013100c00604b00620b", - "0x1b00600c00204e00620b00612d00644b00200220b006009006047002002", - "0x5100620b00603e00612b00213200620b00607d00601600204f00620b006", - "0x220b00600200900205305113204f00c00605300620b00604e00644c002", - "0x620b00602b00644b00200220b00600900604700200220b00600211e002", - "0x612b00213300620b00601900601600205600620b00601b00600c00212f", - "0x213605813305600c00613600620b00612f00644c00205800620b006007", - "0x20b00600213100201600620b00600f00669700200f00620b00600c006480", - "0x5df00201701500720b0060160065de00201400620b006002131002010006", - "0x620b0060060060160020c400620b00600200600c00200220b006015006", - "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", - "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", - "0x600200900202b0069d702a00620b00701c0065e800200220b006002006", - "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", - "0x603000605300200220b00602f00605100203002f00720b00602c006132", - "0x200220b00604800605100203904800720b00602d00613200203300620b", - "0x603500600f00203300620b00603300600f00203500620b006039006053", - "0x3a10d1200099d803711e00720b00703503300701900c5ea00203500620b", - "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", - "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", - "0x63b900200220b0060020090020029d900600202d00212a00620b006124", - "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", - "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", - "0x600200900212d0069da04300620b00712b0063bc00212b00620b006041", - "0x900748400204500620b0060430065eb00200220b00600211e00200220b", - "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", - "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", - "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", - "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", - "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", - "0x600200900205305113204f00c00605300620b00604e00644c002051006", - "0x602b00644b00200220b00600900604700200220b00600211e00200220b", - "0x213300620b00601900601600205600620b00601b00600c00212f00620b", - "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", - "0x264700200220b00601600639a00201600c00720b0060070063d2002136", - "0x201400620b00600206500201000620b00600f00622400200f00620b006", - "0x600201662200201000620b00601000664000201400620b00601400611b", - "0x200220b00600200900201c01901b0099db01701500720b007009010014", - "0x20b00601500601600206500620b0060c40063b70020c400620b00600202a", - "0x2d00202900620b0060650063b800211b00620b00601700612b002054006", - "0x1600202a00620b00601c0063b900200220b0060020090020029dc006002", - "0x20b00602a0063b800211b00620b00601900612b00205400620b00601b006", - "0x3bc00202b00620b00602c0063bb00202c00620b0060290063ba002029006", - "0x602d0065eb00200220b00600200900202e0069dd02d00620b00702b006", - "0x3300620b00603000621c00203000620b00602f00c00769800202f00620b", - "0x3300669a00203900620b00611b00612b00204800620b006054006016002", - "0x600c00639a00200220b00600200900203503904800900603500620b006", - "0x12b00203700620b00605400601600211e00620b00602e00669900200220b", - "0x210d12003700900610d00620b00611e00669a00212000620b00611b006", - "0x20b00600213100201600620b00600f00669b00200f00620b00600c00649f", - "0x5df00201701500720b0060160065de00201400620b006002131002010006", - "0x620b0060060060160020c400620b00600200600c00200220b006015006", - "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", - "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", - "0x600200900202b0069de02a00620b00701c0065e800200220b006002006", - "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", - "0x603000605300200220b00602f00605100203002f00720b00602c006132", - "0x200220b00604800605100203904800720b00602d00613200203300620b", - "0x603500600f00203300620b00603300600f00203500620b006039006053", - "0x3a10d1200099df03711e00720b00703503300701900c5ea00203500620b", - "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", - "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", - "0x63b900200220b0060020090020029e000600202d00212a00620b006124", - "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", - "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", - "0x600200900212d0069e104300620b00712b0063bc00212b00620b006041", - "0x900748400204500620b0060430065eb00200220b00600211e00200220b", - "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", - "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", - "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", - "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", - "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", - "0x600200900205305113204f00c00605300620b00604e00644c002051006", - "0x602b00644b00200220b00600900604700200220b00600211e00200220b", - "0x213300620b00601900601600205600620b00601b00600c00212f00620b", - "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", - "0x264800200220b00601600639900201600c00720b0060070063dd002136", - "0x201400620b00600206500201000620b00600f00622400200f00620b006", - "0x600201662200201000620b00601000664000201400620b00601400611b", - "0x200220b00600200900201c01901b0099e201701500720b007009010014", - "0x20b00601500601600206500620b0060c40063b70020c400620b00600202a", - "0x2d00202900620b0060650063b800211b00620b00601700612b002054006", - "0x1600202a00620b00601c0063b900200220b0060020090020029e3006002", - "0x20b00602a0063b800211b00620b00601900612b00205400620b00601b006", - "0x3bc00202b00620b00602c0063bb00202c00620b0060290063ba002029006", - "0x602d0065eb00200220b00600200900202e0069e402d00620b00702b006", - "0x3300620b00603000669e00203000620b00602f00c00769d00202f00620b", - "0x3300669f00203900620b00611b00612b00204800620b006054006016002", - "0x600c00639900200220b00600200900203503904800900603500620b006", - "0x12b00203700620b00605400601600211e00620b00602e0066a000200220b", - "0x210d12003700900610d00620b00611e00669f00212000620b00611b006", - "0x20b00600213100201600620b00600f0066a100200f00620b00600c0064ba", - "0x5df00201701500720b0060160065de00201400620b006002131002010006", - "0x620b0060060060160020c400620b00600200600c00200220b006015006", - "0x604e00211b00620b00601000604e00205400620b0060170065e0002065", - "0x201c01901b00920b00602911b0540650c40165e600202900620b006014", - "0x600200900202b0069e502a00620b00701c0065e800200220b006002006", - "0x200220b00602e00603300202e02d02c00920b00602a0065e900200220b", - "0x603000605300200220b00602f00605100203002f00720b00602c006132", - "0x200220b00604800605100203904800720b00602d00613200203300620b", - "0x603500600f00203300620b00603300600f00203500620b006039006053", - "0x3a10d1200099e603711e00720b00703503300701900c5ea00203500620b", - "0x620b00603c0063b700203c00620b00600202a00200220b006002009002", - "0x63b800203e00620b00603700612b00207d00620b00611e006016002124", - "0x63b900200220b0060020090020029e700600202d00212a00620b006124", - "0x620b00610d00612b00207d00620b00612000601600212c00620b00603a", - "0x63bb00204100620b00612a0063ba00212a00620b00612c0063b800203e", - "0x600200900212d0069e804300620b00712b0063bc00212b00620b006041", - "0x900748400204500620b0060430065eb00200220b00600211e00200220b", - "0x620b00601b00600c00204700620b00612e00648500212e00620b006045", - "0x644c00204d00620b00603e00612b00213000620b00607d006016002131", - "0x211e00200220b00600200900204b04d13013100c00604b00620b006047", - "0xc00204e00620b00612d00644b00200220b00600900604700200220b006", - "0x20b00603e00612b00213200620b00607d00601600204f00620b00601b006", - "0x600200900205305113204f00c00605300620b00604e00644c002051006", - "0x602b00644b00200220b00600900604700200220b00600211e00200220b", - "0x213300620b00601900601600205600620b00601b00600c00212f00620b", - "0x5813305600c00613600620b00612f00644c00205800620b00600700612b", - "0x600200900200f0160079e900c00900720b0070070060020096a2002136", - "0x6a400201400620b00600900600c00201000620b00600c0066a300200220b", - "0x6a500200220b0060020090020029ea00600202d00201500620b006010006", - "0x20b0060170066a400201400620b00601600600c00201700620b00600f006", - "0x604b00201c00620b0060150066a800201b00620b0060026a6002015006", - "0x20b00701900636600201900620b0060c401c0076a90020c400620b00601b", - "0x211b00620b00606500636800200220b0060020090020540069eb065006", - "0x601400600c00202a00620b00602900661200202900620b00611b006226", - "0x20b00600200900202c02b00700602c00620b00602a00661300202b00620b", - "0x661300202e00620b00601400600c00202d00620b006054006614002002", - "0x66aa00200f00620b00600c0064d700202f02e00700602f00620b00602d", - "0x201400620b00600213100201000620b00600213100201600620b00600f", - "0x600200600c00200220b0060150065df00201701500720b0060160065de", - "0x205400620b0060170065e000206500620b0060060060160020c400620b", - "0x650c40165e600202900620b00601400604e00211b00620b00601000604e", - "0x701c0065e800200220b00600200600201c01901b00920b00602911b054", - "0x2c00920b00602a0065e900200220b00600200900202b0069ec02a00620b", - "0x5100203002f00720b00602c00613200200220b00602e00603300202e02d", - "0x720b00602d00613200203300620b00603000605300200220b00602f006", - "0x600f00203500620b00603900605300200220b006048006051002039048", - "0x3503300701900c5ea00203500620b00603500600f00203300620b006033", - "0x600202a00200220b00600200900203a10d1200099ed03711e00720b007", - "0x207d00620b00611e00601600212400620b00603c0063b700203c00620b", - "0x9ee00600202d00212a00620b0061240063b800203e00620b00603700612b", - "0x612000601600212c00620b00603a0063b900200220b006002009002002", - "0x212a00620b00612c0063b800203e00620b00610d00612b00207d00620b", - "0x712b0063bc00212b00620b0060410063bb00204100620b00612a0063ba", - "0x5eb00200220b00600211e00200220b00600200900212d0069ef04300620b", - "0x612e00648500212e00620b00604500900748400204500620b006043006", - "0x213000620b00607d00601600213100620b00601b00600c00204700620b", - "0x4d13013100c00604b00620b00604700644c00204d00620b00603e00612b", - "0x220b00600900604700200220b00600211e00200220b00600200900204b", - "0x7d00601600204f00620b00601b00600c00204e00620b00612d00644b002", - "0x5300620b00604e00644c00205100620b00603e00612b00213200620b006", - "0x4700200220b00600211e00200220b00600200900205305113204f00c006", - "0x620b00601b00600c00212f00620b00602b00644b00200220b006009006", - "0x644c00205800620b00600700612b00213300620b006019006016002056", - "0x200f00620b00600c0064eb00213605813305600c00613600620b00612f", - "0x620b00600213100201000620b00600213100201600620b00600f0066ac", - "0x600c00200220b0060150065df00201701500720b0060160065de002014", - "0x620b0060170065e000206500620b0060060060160020c400620b006002", - "0x165e600202900620b00601400604e00211b00620b00601000604e002054", - "0x65e800200220b00600200600201c01901b00920b00602911b0540650c4", - "0x20b00602a0065e900200220b00600200900202b0069f002a00620b00701c", - "0x3002f00720b00602c00613200200220b00602e00603300202e02d02c009", - "0x602d00613200203300620b00603000605300200220b00602f006051002", - "0x203500620b00603900605300200220b00604800605100203904800720b", - "0x701900c5ea00203500620b00603500600f00203300620b00603300600f", - "0x2a00200220b00600200900203a10d1200099f103711e00720b007035033", - "0x620b00611e00601600212400620b00603c0063b700203c00620b006002", - "0x202d00212a00620b0061240063b800203e00620b00603700612b00207d", - "0x601600212c00620b00603a0063b900200220b0060020090020029f2006", - "0x620b00612c0063b800203e00620b00610d00612b00207d00620b006120", - "0x63bc00212b00620b0060410063bb00204100620b00612a0063ba00212a", - "0x220b00600211e00200220b00600200900212d0069f304300620b00712b", - "0x648500212e00620b00604500900748400204500620b0060430065eb002", - "0x620b00607d00601600213100620b00601b00600c00204700620b00612e", - "0x13100c00604b00620b00604700644c00204d00620b00603e00612b002130", - "0x600900604700200220b00600211e00200220b00600200900204b04d130", - "0x1600204f00620b00601b00600c00204e00620b00612d00644b00200220b", - "0x20b00604e00644c00205100620b00603e00612b00213200620b00607d006", - "0x220b00600211e00200220b00600200900205305113204f00c006053006", - "0x601b00600c00212f00620b00602b00644b00200220b006009006047002", - "0x205800620b00600700612b00213300620b00601900601600205600620b", - "0x620b00600c0064fb00213605813305600c00613600620b00612f00644c", - "0x600213100201000620b00600213100201600620b00600f0066ad00200f", - "0x200220b0060150065df00201701500720b0060160065de00201400620b", - "0x60170065e000206500620b0060060060160020c400620b00600200600c", - "0x202900620b00601400604e00211b00620b00601000604e00205400620b", - "0x200220b00600200600201c01901b00920b00602911b0540650c40165e6", - "0x2a0065e900200220b00600200900202b0069f402a00620b00701c0065e8", - "0x720b00602c00613200200220b00602e00603300202e02d02c00920b006", - "0x613200203300620b00603000605300200220b00602f00605100203002f", - "0x620b00603900605300200220b00604800605100203904800720b00602d", - "0xc5ea00203500620b00603500600f00203300620b00603300600f002035", - "0x220b00600200900203a10d1200099f503711e00720b007035033007019", - "0x611e00601600212400620b00603c0063b700203c00620b00600202a002", - "0x212a00620b0061240063b800203e00620b00603700612b00207d00620b", - "0x212c00620b00603a0063b900200220b0060020090020029f600600202d", - "0x612c0063b800203e00620b00610d00612b00207d00620b006120006016", - "0x212b00620b0060410063bb00204100620b00612a0063ba00212a00620b", - "0x600211e00200220b00600200900212d0069f704300620b00712b0063bc", - "0x212e00620b00604500900748400204500620b0060430065eb00200220b", - "0x607d00601600213100620b00601b00600c00204700620b00612e006485", - "0x604b00620b00604700644c00204d00620b00603e00612b00213000620b", - "0x604700200220b00600211e00200220b00600200900204b04d13013100c", - "0x4f00620b00601b00600c00204e00620b00612d00644b00200220b006009", - "0x4e00644c00205100620b00603e00612b00213200620b00607d006016002", - "0x600211e00200220b00600200900205305113204f00c00605300620b006", - "0x600c00212f00620b00602b00644b00200220b00600900604700200220b", - "0x620b00600700612b00213300620b00601900601600205600620b00601b", - "0x600c00650e00213605813305600c00613600620b00612f00644c002058", - "0x13100201000620b00600213100201600620b00600f0066ae00200f00620b", - "0x20b0060150065df00201701500720b0060160065de00201400620b006002", - "0x65e000206500620b0060060060160020c400620b00600200600c002002", - "0x620b00601400604e00211b00620b00601000604e00205400620b006017", - "0x20b00600200600201c01901b00920b00602911b0540650c40165e6002029", - "0x5e900200220b00600200900202b0069f802a00620b00701c0065e8002002", - "0x602c00613200200220b00602e00603300202e02d02c00920b00602a006", - "0x203300620b00603000605300200220b00602f00605100203002f00720b", - "0x603900605300200220b00604800605100203904800720b00602d006132", - "0x203500620b00603500600f00203300620b00603300600f00203500620b", - "0x600200900203a10d1200099f903711e00720b00703503300701900c5ea", - "0x601600212400620b00603c0063b700203c00620b00600202a00200220b", - "0x620b0061240063b800203e00620b00603700612b00207d00620b00611e", - "0x620b00603a0063b900200220b0060020090020029fa00600202d00212a", - "0x63b800203e00620b00610d00612b00207d00620b00612000601600212c", - "0x620b0060410063bb00204100620b00612a0063ba00212a00620b00612c", - "0x11e00200220b00600200900212d0069fb04300620b00712b0063bc00212b", - "0x620b00604500900748400204500620b0060430065eb00200220b006002", - "0x601600213100620b00601b00600c00204700620b00612e00648500212e", - "0x620b00604700644c00204d00620b00603e00612b00213000620b00607d", - "0x200220b00600211e00200220b00600200900204b04d13013100c00604b", - "0x20b00601b00600c00204e00620b00612d00644b00200220b006009006047", - "0x44c00205100620b00603e00612b00213200620b00607d00601600204f006", - "0x11e00200220b00600200900205305113204f00c00605300620b00604e006", - "0x212f00620b00602b00644b00200220b00600900604700200220b006002", - "0x600700612b00213300620b00601900601600205600620b00601b00600c", - "0x661f00213605813305600c00613600620b00612f00644c00205800620b", - "0x720b00600900613000200900620b00600700662000200700620b006002", - "0x604e00201400620b00601600604b00200220b00600c00604d00201600c", - "0x601000603300201000f00720b00601501400704f00201500620b006006", - "0x61ff00201b00620b00600f00604e00201700620b00600202a00200220b", - "0x66b100200700620b0060020066af00201901b00700601900620b006017", - "0x20b00600c00604d00201600c00720b00600900613000200900620b006007", - "0x704f00201500620b00600600604e00201400620b00601600604b002002", - "0x620b00600202a00200220b00601000603300201000f00720b006015014", - "0x1b00700601900620b0060170061ff00201b00620b00600f00604e002017", - "0x20b00600206500200c00620b00600268a00200220b006009006396002019", - "0x12b00201b00620b00600600601600201700620b00600200600c002016006", - "0x20b00600c00661600201c00620b00601600611b00201900620b006007006", - "0x66b400201501401000f00c20b0060c401c01901b0170166b30020c4006", - "0x20b0060650066b500200220b0060020090020540069fc06500620b007015", - "0x18f00202900620b00602a0066b700202a00620b00611b0066b600211b006", - "0x602b0060be00200220b00600200900202c0069fd02b00620b007029006", - "0x202f00620b00602e00653a00202e00620b00602d00653900202d00620b", - "0x601400612b00203300620b00601000601600203000620b00600f00600c", - "0x200900203904803303000c00603900620b00602f00621300204800620b", - "0x211e00620b00600f00600c00203500620b00602c00653b00200220b006", - "0x603500621300212000620b00601400612b00203700620b006010006016", - "0x605400653b00200220b00600200900210d12003711e00c00610d00620b", - "0x212400620b00601000601600203c00620b00600f00600c00203a00620b", - "0x7d12403c00c00603e00620b00603a00621300207d00620b00601400612b", - "0x20b00600206500200c00620b00600268800200220b00600900620c00203e", - "0x12b00201b00620b00600600601600201700620b00600200600c002016006", - "0x20b00600c00661600201c00620b00601600611b00201900620b006007006", - "0x66b400201501401000f00c20b0060c401c01901b0170166b30020c4006", - "0x20b0060650066b500200220b0060020090020540069fe06500620b007015", - "0x18f00202900620b00602a0066b700202a00620b00611b0066b600211b006", - "0x602b0060be00200220b00600200900202c0069ff02b00620b007029006", - "0x202f00620b00602e00653a00202e00620b00602d00653900202d00620b", - "0x601400612b00203300620b00601000601600203000620b00600f00600c", - "0x200900203904803303000c00603900620b00602f00621300204800620b", - "0x211e00620b00600f00600c00203500620b00602c00653b00200220b006", - "0x603500621300212000620b00601400612b00203700620b006010006016", - "0x605400653b00200220b00600200900210d12003711e00c00610d00620b", - "0x212400620b00601000601600203c00620b00600f00600c00203a00620b", - "0x7d12403c00c00603e00620b00603a00621300207d00620b00601400612b", - "0x9002016006a0200c006a01009006a0000700620b00c00200667600203e", - "0x1401000720b00600f00613000200f00620b0060020ef00200220b006002", - "0x600600604e00201b00620b00601400604b00200220b00601000604d002", - "0x220b00601700603300201701500720b00601901b00704f00201900620b", - "0x650076b800205400620b00601500604e00206500620b0060070061ff002", - "0x620b00601c00604e00200220b0060c40060330020c401c00720b006054", - "0x2900620b00600200000200220b006002009002002a0300600202d00211b", - "0x2b00604b00200220b00602a00604d00202b02a00720b006029006130002", - "0x720b00602f02e00704f00202f00620b00600600604e00202e00620b006", - "0x604e00204800620b0060090061ff00200220b00602d00603300202d02c", - "0x603300603300203303000720b0060390480076b800203900620b00602c", - "0x6002009002002a0300600202d00211b00620b00603000604e00200220b", - "0x4d00203711e00720b00603500613000203500620b0060023f700200220b", - "0x620b00600600604e00203a00620b00603700604b00200220b00611e006", - "0x1ff00200220b00610d00603300210d12000720b00603c03a00704f00203c", - "0x612a03e0076b800212a00620b00612000604e00203e00620b00600c006", - "0x211b00620b00612400604e00200220b00607d00603300207d12400720b", - "0x13000212c00620b0060026b900200220b006002009002002a0300600202d", - "0x20b00604100604b00200220b00612b00604d00204112b00720b00612c006", - "0x12d04300720b00612e04500704f00212e00620b00600600604e002045006", - "0x604300604e00213000620b0060160061ff00200220b00612d006033002", - "0x220b00613100603300213104700720b00604d1300076b800204d00620b", - "0x611b00652d00204b00620b00600202a00211b00620b00604700604e002", - "0x600c00656700204f04e00700604f00620b00604b0061ff00204e00620b", - "0x13100201000620b00600213100201600620b00600f0066ba00200f00620b", - "0x20b0060150065df00201701500720b0060160065de00201400620b006002", - "0x65e000206500620b0060060060160020c400620b00600200600c002002", - "0x620b00601400604e00211b00620b00601000604e00205400620b006017", - "0x20b00600200600201c01901b00920b00602911b0540650c40165e6002029", - "0x5e900200220b00600200900202b006a0402a00620b00701c0065e8002002", - "0x602c00613200200220b00602e00603300202e02d02c00920b00602a006", - "0x203300620b00603000605300200220b00602f00605100203002f00720b", - "0x603900605300200220b00604800605100203904800720b00602d006132", - "0x203500620b00603500600f00203300620b00603300600f00203500620b", - "0x600200900203a10d120009a0503711e00720b00703503300701900c5ea", - "0x601600212400620b00603c0063b700203c00620b00600202a00200220b", - "0x620b0061240063b800203e00620b00603700612b00207d00620b00611e", - "0x620b00603a0063b900200220b006002009002002a0600600202d00212a", - "0x63b800203e00620b00610d00612b00207d00620b00612000601600212c", - "0x620b0060410063bb00204100620b00612a0063ba00212a00620b00612c", - "0x11e00200220b00600200900212d006a0704300620b00712b0063bc00212b", - "0x620b00604500900748400204500620b0060430065eb00200220b006002", - "0x601600213100620b00601b00600c00204700620b00612e00648500212e", - "0x620b00604700644c00204d00620b00603e00612b00213000620b00607d", - "0x200220b00600211e00200220b00600200900204b04d13013100c00604b", - "0x20b00601b00600c00204e00620b00612d00644b00200220b006009006047", - "0x44c00205100620b00603e00612b00213200620b00607d00601600204f006", - "0x11e00200220b00600200900205305113204f00c00605300620b00604e006", - "0x212f00620b00602b00644b00200220b00600900604700200220b006002", - "0x600700612b00213300620b00601900601600205600620b00601b00600c", - "0x207500213605813305600c00613600620b00612f00644c00205800620b", - "0x211e00200220b00600213900200f00620b00600233500200c00620b006", - "0x201b00620b00600700600f00201700620b00600200600c00200220b006", - "0x6a0801600620b00701500633700201501401000920b00601b017007336", - "0x606500607600206500620b00601400600f00200220b006002009002019", - "0x620b0070c400607700201600620b00601600f0073390020c401c00720b", - "0x1600202b00620b00601000600c00200220b006002009002054006a09009", - "0x600900c00707900202d00620b00601c00600f00202c00620b006006006", - "0x702a00614b00202a02911b00920b00602d02c02b00914600200900620b", - "0x3000720b00602e00607b00200220b00600200900202f006a0a02e00620b", - "0x6bb00200220b006002009002039006a0b04800620b00703300614a002033", - "0x300076bd00211e00620b0060350066bc00203500620b006048009016009", - "0x620b00611b00600c00212000620b0060370066c100203700620b00611e", - "0x10d00900603c00620b0061200066c200203a00620b00602900601600210d", - "0x600900604d00200220b0060160060fa00200220b00600200900203c03a", - "0x207d00620b0061240300076bd00212400620b0060390066c300200220b", - "0x602900601600212a00620b00611b00600c00203e00620b00607d0066c1", - "0x600200900212b12c12a00900612b00620b00603e0066c200212c00620b", - "0x2f0066be00200220b0060160060fa00200220b00600900604d00200220b", - "0x12d00620b00602900601600204300620b00611b00600c00204100620b006", - "0x200220b00600200900204512d04300900604500620b0060410066c2002", - "0x620b0060540066c300200220b00600c00614e00200220b0060160060fa", - "0xc00213100620b0060470066c100204700620b00612e01c0076bd00212e", - "0x20b0061310066c200204d00620b00600600601600213000620b006010006", - "0x220b00600c00614e00200220b00600200900204b04d13000900604b006", - "0x4e0140076bd00204e00620b0060190066c300200220b00600f00634d002", - "0x5100620b00601000600c00213200620b00604f0066c100204f00620b006", - "0x5305100900612f00620b0061320066c200205300620b006006006016002", - "0x200900201000f016009a0c00c00900700920b0070060020076bf00212f", - "0x201500620b00600700601600201400620b00600c0066c000200220b006", - "0xa0d00600202d00201b00620b0060140066c400201700620b00600900612b", - "0x601600601600201900620b0060100066c600200220b006002009002002", - "0x201b00620b0060190066c400201700620b00600f00612b00201500620b", - "0x701c00657700201c00620b0060c40066c80020c400620b00601b0066c7", - "0x11b00620b00606500657900200220b006002009002054006a0e06500620b", - "0x1500601600202a00620b0060290066ca00202900620b00611b0066c9002", - "0x2d00620b00602a0066cb00202c00620b00601700612b00202b00620b006", - "0x202e00620b0060540066cc00200220b00600200900202d02c02b009006", - "0x602e0066cb00203000620b00601700612b00202f00620b006015006016", - "0xa0f00c00900720b0070070060020096cd00203303002f00900603300620b", - "0xf0066cf00200f00620b00600c0066ce00200220b006002009002016006", - "0x1500620b0060100066d100201400620b00600900600c00201000620b006", - "0x222a00201700620b00600213100200220b006002009002015014007006", - "0x620b00601b01700705b00201b00620b00601b00604b00201b00620b006", - "0x66d20020c400620b00601901c00705d00201c00620b006002135002019", - "0x620b0060650066d100205400620b00601600600c00206500620b0060c4", - "0x620b00600700612b00201000620b00600600601600211b05400700611b", - "0x1500620b00700f0061c800200f01600c00920b0060140100070f4002014", - "0x61d400201b00620b0060150061ca00200220b006002009002017006a10", - "0x202a02911b0540650c401c01020b0060190061eb00201900620b00601b", - "0x220b00605400606100200220b0060c40060fa00200220b00601c00604d", - "0x20b00602a00604d00200220b00602900604d00200220b00611b00604d002", - "0x650066d500202b00620b00602b0066d500202b00620b0060026d3002002", - "0x202f02e007a1102d02c00720b00706502b00200922b00206500620b006", - "0x203000620b00600202a00200220b00602d0061ef00200220b006002009", - "0x603300602c00204800620b00602c00600c00203300620b00603000602e", - "0x602f0061ef00200220b006002009002002a1200600202d00203900620b", - "0x600c00211e00620b00603500602b00203500620b00600202a00200220b", - "0x620b00603900602f00203900620b00611e00602c00204800620b00602e", - "0x10d006a1312000620b00703700603000203700620b00603700602c002037", - "0x3a00620b0060026d600200220b00612000603300200220b006002009002", - "0xa1412403c00720b00703a0090480096d700203a00620b00603a00611b002", - "0x600202a00200220b0061240060c400200220b00600200900203e07d007", - "0x212b00620b00603c00600c00212c00620b00612a00602b00212a00620b", - "0x200220b006002009002002a1500600202d00204100620b00612c00602c", - "0x620b00604300602e00204300620b00600202a00200220b00603e0060c4", - "0x602f00204100620b00612d00602c00212b00620b00607d00600c00212d", - "0x620b00704500603000204500620b00604500602c00204500620b006041", - "0x202a00200220b00612e00603300200220b006002009002047006a1612e", - "0x4d00620b00613000622300213000620b00613100663500213100620b006", - "0x1600612b00204e00620b00600c00601600204b00620b00612b00600c002", - "0x900213204f04e04b00c00613200620b00604d00663600204f00620b006", - "0x6d900205100620b00600213100200220b00604700603300200220b006002", - "0x20b00605305100705b00205300620b00605300604b00205300620b006002", - "0x63700213300620b00612f05600705d00205600620b00600213500212f006", - "0x20b00600c00601600213600620b00612b00600c00205800620b006133006", - "0xc00613500620b00605800663600205b00620b00601600612b002134006", - "0x60c400200220b00610d00603300200220b00600200900213505b134136", - "0x4b00213700620b0060026da00205d00620b00600213100200220b006009", - "0x20b00600213500205f00620b00613705d00705b00213700620b006137006", - "0x206400620b00613800663700213800620b00605f06100705d002061006", - "0x601600612b00206700620b00600c00601600213900620b00604800600c", - "0x200900206913b06713900c00606900620b00606400663600213b00620b", - "0xc00206a00620b00601700663700200220b0060090060c400200220b006", - "0x20b00601600612b00213c00620b00600c00601600206c00620b006002006", - "0x20096db00213f06f13c06c00c00613f00620b00606a00663600206f006", - "0x66dc00200220b00600200900200f016007a1700c00900720b007007006", - "0x620b0060100066dd00201400620b00600900600c00201000620b00600c", - "0x620b00600f0066df00200220b006002009002002a1800600202d002015", - "0x26e000201500620b0060170066dd00201400620b00601600600c002017", - "0xc400620b00601b00604b00201c00620b0060150066e100201b00620b006", - "0x54006a1906500620b00701900618f00201900620b0060c401c0076e2002", - "0x20b00611b00653900211b00620b0060650060be00200220b006002009002", - "0x21300202b00620b00601400600c00202a00620b00602900653a002029006", - "0x5400653b00200220b00600200900202c02b00700602c00620b00602a006", - "0x2f00620b00602d00621300202e00620b00601400600c00202d00620b006", - "0x620b00601000601b00201000f00720b00600f0066e300202f02e007006", - "0xc400201b01700720b00601500601c00201500620b006014006019002014", - "0x1c00720b00601900601c00201900620b0060026e400200220b006017006", - "0x6500601c00206500620b00601b00605400200220b00601c0060c40020c4", - "0x2900620b0060c400605400200220b0060540060c400211b05400720b006", - "0x11b00605400200220b00602a0060c400202b02a00720b00602900601c002", - "0x2c00620b00602c00611b00202d00620b00602b00605400202c00620b006", - "0x600202a00200220b006002009002002a1a00220b00702d02c007029002", - "0x203000620b00602f00602c00202f00620b00602e00602b00202e00620b", - "0x2e00203300620b00600202a00200220b006002009002002a1b00600202d", - "0x20b00603000602f00203000620b00604800602c00204800620b006033006", - "0x6a1c03500620b00703900603000203900620b00603900602c002039006", - "0x20b00600f0066e500200220b00603500603300200220b00600200900211e", - "0x203a00620b00610d0066e600210d00620b00612000601b002120037007", - "0x20b00603a00609900203e00620b00600200600c00203c00620b006002065", - "0x12400720b00612c12a03e0096e700212c00620b00603c00611b00212a006", - "0x6e900200220b006002009002041006a1d12b00620b00707d0066e800207d", - "0x20b00612d0061b200212d00620b0060430061a600204300620b00612b006", - "0x1b00200220b00612e00606100204712e00720b0060370066e5002045006", - "0x620b00600259200213000620b0061310066e600213100620b006047006", - "0x611b00213200620b00613000609900204f00620b00612400600c00204d", - "0x4500604b00204e04b00720b00605113204f0096e700205100620b00604d", - "0x20b00600200900212f006a1e05300620b00704e0066e800204500620b006", - "0x61b200213300620b0060560061a600205600620b0060530066e9002002", - "0x20b00613600637100213600c00720b00600c0065fe00205800620b006133", - "0x5b00639b00200220b00613400639500213806105f13705d13505b134014", - "0x639700200220b00613700639800200220b00605d00639900200220b006", - "0x1600200220b00613800620c00200220b00606100639600200220b00605f", - "0x20b0061350063d300206900620b00600900612b00213b00620b006007006", - "0x20b00605800604b00206713906400920b00606a06913b0093d400206a006", - "0x200220b00600200900213c006a1f06c00620b007067006151002058006", - "0x600600612c00214500620b00604b00600c00206f00620b00606c006152", - "0x7600620b00607600604b00207601600720b00601600635a00207500620b", - "0x604b00207904500720b00604500635a00207700620b00606f00604b002", - "0x20b00614600604b00214605800720b00605800635a00207900620b006079", - "0x603000214107113f00920b00614607907707607514500f670002146006", - "0x20b00614b00603300200220b00600200900207b006a2014b00620b007141", - "0x14a00639500208314f14e1521510c707f14a01420b00600c006371002002", - "0x639800200220b0060c700639a00200220b00607f00639b00200220b006", - "0x20c00200220b00614f00639600200220b00614e00639700200220b006152", - "0x620b00613900612b00216100620b00606400601600200220b006083006", - "0x15008500920b00615f1601610093df00215f00620b0061510063de002160", - "0x15200200220b006002009002163006a2115d00620b00715e00615100215e", - "0x20b00607100612c00215700620b00613f00600c00215c00620b00615d006", - "0x4b00216e00620b00615c00604b00215b00620b00601600604b00208a006", - "0x15b08a15700f6700020ed00620b00605800604b00216800620b006045006", - "0x612c00208e00620b00616200600c00215408716200920b0060ed16816e", - "0x620b00615000612b0020d000620b00608500601600216b00620b006087", - "0x20b006002009002002a2200600202d00209200620b00615400602c00216c", - "0x601600604d00200220b00604500604d00200220b00605800604d002002", - "0x12c00217100620b00613f00600c00216d00620b0061630063ab00200220b", - "0x20b00615000612b00217300620b00608500601600209400620b006071006", - "0x200900217509617309417101600617500620b00616d0063aa002096006", - "0x604d00200220b00601600604d00200220b00607b00603300200220b006", - "0x2a00200220b00600c00604700200220b00604500604d00200220b006058", - "0x620b00613f00600c00209900620b0060d100602e0020d100620b006002", - "0x612b0020d000620b00606400601600216b00620b00607100612c00208e", - "0x620b0060920063a800209200620b00609900602c00216c00620b006139", - "0x612c00217a00620b00608e00600c00209b00620b0061760063a9002176", - "0x620b00616c00612b00217c00620b0060d000601600209d00620b00616b", - "0x60020090020a00cc17c09d17a0160060a000620b00609b0063aa0020cc", - "0x5800604d00200220b00601600604d00200220b00600c00604700200220b", - "0xc00217d00620b00613c0063ab00200220b00604500604d00200220b006", - "0x20b00606400601600217e00620b00600600612c0020a200620b00604b006", - "0x160060cd00620b00617d0063aa00217f00620b00613900612b0020a4006", - "0x4d00200220b00600c00604700200220b0060020090020cd17f0a417e0a2", - "0xd200620b00612f0063ab00200220b00604500604d00200220b006016006", - "0x700601600218000620b00600600612c0020a800620b00604b00600c002", - "0x18100620b0060d20063aa0020ab00620b00600900612b0020ce00620b006", - "0x220b00600c00604700200220b0060020090021810ab0ce1800a8016006", - "0x20b0060410063ab00200220b00603700606100200220b00601600604d002", - "0x160020c900620b00600600612c0020c800620b00612400600c0020cf006", - "0x20b0060cf0063aa0020cb00620b00600900612b0020ca00620b006007006", - "0x611e00603300200220b0060020090020c60cb0ca0c90c80160060c6006", - "0xf00606100200220b00601600604d00200220b00600c00604700200220b", - "0x3a80020b500620b0060b300602b0020b300620b00600202a00200220b006", - "0x20b00600200600c0020b700620b00618e0063a900218e00620b0060b5006", - "0x12b0020bb00620b0060070060160020ba00620b00600600612c0020b9006", - "0xbd0bb0ba0b901600618f00620b0060b70063aa0020bd00620b006009006", - "0x1900201400620b00601000601b00201000f00720b00600f0066e300218f", - "0x60170060c400201b01700720b00601500601c00201500620b006014006", - "0xc40020c401c00720b00601900601c00201900620b0060026e400200220b", - "0x720b00606500601c00206500620b00601b00605400200220b00601c006", - "0x601c00202900620b0060c400605400200220b0060540060c400211b054", - "0x620b00611b00605400200220b00602a0060c400202b02a00720b006029", - "0x702900202c00620b00602c00611b00202d00620b00602b00605400202c", - "0x2e00620b00600202a00200220b006002009002002a2300220b00702d02c", - "0x600202d00203000620b00602f00602c00202f00620b00602e00602b002", - "0x603300602e00203300620b00600202a00200220b006002009002002a24", - "0x203900620b00603000602f00203000620b00604800602c00204800620b", - "0x900211e006a2503500620b00703900603000203900620b00603900602c", - "0x12003700720b00600f0066e500200220b00603500603300200220b006002", - "0x600206500203a00620b00610d0066e600210d00620b00612000601b002", - "0x212a00620b00603a00609900203e00620b00600200600c00203c00620b", - "0x6e800207d12400720b00612c12a03e0096e700212c00620b00603c00611b", - "0x612b0066e900200220b006002009002041006a2612b00620b00707d006", - "0x204500620b00612d0061b200212d00620b0060430061a600204300620b", - "0x604700601b00200220b00612e00606100204712e00720b0060370066e5", - "0xc00204d00620b00600259200213000620b0061310066e600213100620b", - "0x20b00604d00611b00213200620b00613000609900204f00620b006124006", - "0x620b00604500604b00204e04b00720b00605113204f0096e7002051006", - "0x6e900200220b00600200900212f006a2705300620b00704e0066e8002045", - "0x20b0061330061b200213300620b0060560061a600205600620b006053006", - "0x639500206105f13705d13505b13413601420b00600c006371002058006", - "0x39800200220b00613500639900200220b00605b00639a00200220b006136", - "0x200220b00605f00639600200220b00613700639700200220b00605d006", - "0x20b00600900612b00206700620b00600700601600200220b00606100620c", - "0x13800920b00606913b0670093d100206900620b0061340063d000213b006", - "0x6a2806a00620b00713900615100205800620b00605800604b002139064", - "0x604b00600c00213c00620b00606a00615200200220b00600200900206c", - "0x207500620b00601600604b00214500620b00600600612c00214100620b", - "0x605800604b00207700620b00604500604b00207600620b00613c00604b", - "0x3a800207113f06f00920b00607907707607514514100f67000207900620b", - "0x20b00606f00600c00214b00620b0061460063a900214600620b006071006", - "0x12b00207f00620b00613800601600214a00620b00613f00612c00207b006", - "0xc707f14a07b01600615100620b00614b0063aa0020c700620b006064006", - "0x20b00604500604d00200220b00605800604d00200220b006002009002151", - "0x4b00600c00215200620b00606c0063ab00200220b00601600604d002002", - "0x8300620b00613800601600214f00620b00600600612c00214e00620b006", - "0x14f14e01600615000620b0061520063aa00208500620b00606400612b002", - "0xc00604700200220b00601600604d00200220b006002009002150085083", - "0xc00215e00620b00612f0063ab00200220b00604500604d00200220b006", - "0x20b00600700601600216000620b00600600612c00216100620b00604b006", - "0x1600616300620b00615e0063aa00215d00620b00600900612b00215f006", - "0x4700200220b00601600604d00200220b00600200900216315d15f160161", - "0x15c00620b0060410063ab00200220b00603700606100200220b00600c006", - "0x700601600208700620b00600600612c00216200620b00612400600c002", - "0x8a00620b00615c0063aa00215700620b00600900612b00215400620b006", - "0x220b00611e00603300200220b00600200900208a157154087162016006", - "0x20b00600f00606100200220b00600c00604700200220b00601600604d002", - "0x16e0063a800216e00620b00615b00602b00215b00620b00600202a002002", - "0x8e00620b00600200600c0020ed00620b0061680063a900216800620b006", - "0x900612b0020d000620b00600700601600216b00620b00600600612c002", - "0x209216c0d016b08e01600609200620b0060ed0063aa00216c00620b006", - "0x201400620b00600204800200220b00600213900201000620b006002064", - "0x7a2901701500720b00701400600200903500201400620b006014006039", - "0x1500600c00201c00620b00600900659000200220b00600200900201901b", - "0x6002009002054006a2a0650c400720b00701c00665b00201500620b006", - "0x65d00202900620b0060c400659600211b00620b00606500665c00200220b", - "0x2a00200220b006002009002002a2b00600202d00202a00620b00611b006", - "0x620b00605400659600202c00620b00602b00665e00202b00620b006002", - "0x60fc00202d00620b0060290061d600202a00620b00602c00665d002029", - "0x600200900202f006a2c02e00620b00702a00666000202d00620b00602d", - "0x59d00203000620b00603000659c00203000620b00602e00659b00200220b", - "0x604d00203503904800920b00603300659e00203303000720b006030006", - "0x211e00620b00604800636100200220b00603500659f00200220b006039", - "0xfa00203a10d12000920b00603700659e00203703000720b00603000659d", - "0x3c00620b00610d0061b200200220b00603a00659f00200220b006120006", - "0x604d00200220b0061240060fa00203e07d12400920b00603000659e002", - "0x12a00620b00612a00600f00212a00620b00603e00605300200220b00607d", - "0x212d00f043009a2d04112b12c00920b00712a03c11e0070170166ea002", - "0xf00200220b00601000614500200220b00600211e00200220b006002009", - "0x20b00600200000204500620b0060410160076eb00204100620b006041006", - "0x204e00620b00601500600c00204700620b00612e00c0076ec00212e006", - "0x602d0060fc00213200620b00612b00612b00204f00620b00612c006016", - "0x212f00620b0060450065e100205300620b00604700604b00205100620b", - "0x704b0065e300204b04d13013100c20b00612f05305113204f04e00f5e2", - "0x5800c20b0060560065e400200220b006002009002133006a2e05600620b", - "0x20b0061350066ee00213500620b00605b13413605800c6ed00205b134136", - "0x12b00205f00620b00613000601600213700620b00613100600c00205d006", - "0x13806105f13700c00613800620b00605d0066ef00206100620b00604d006", - "0x20b00613100600c00206400620b0061330066f000200220b006002009002", - "0x6ef00213b00620b00604d00612b00206700620b006130006016002139006", - "0x11e00200220b00600200900206913b06713900c00606900620b006064006", - "0x13100200220b00601600613c00200220b00602d00639c00200220b006002", - "0x6c00620b00606c00604b00206c00620b0060026f100206a00620b006002", - "0xc00206f00620b00600c13c00705b00213c00620b00606c06a00705b002", - "0x20b00606f00604e00207500620b00604300601600214500620b006015006", - "0x200f00620b00600f01000713b00207700620b00612d00604e002076006", - "0x7900620b00714100607100214107113f00920b00607707607514500c6f2", - "0x3300207b14b00720b00607900614100200220b006002009002146006a2f", - "0x620b00614b14a00705d00214a00620b00600213500200220b00607b006", - "0x601600215100620b00613f00600c0020c700620b00607f0066f000207f", - "0x620b0060c70066ef00214e00620b00600f00612b00215200620b006071", - "0x620b0061460066f000200220b00600200900214f14e15215100c00614f", - "0x612b00215000620b00607100601600208500620b00613f00600c002083", - "0x216115e15008500c00616100620b0060830066ef00215e00620b00600f", - "0x14500200220b00602f00603300200220b00600211e00200220b006002009", - "0x616000c01602d00c6ed00216000620b00600202a00200220b006010006", - "0x216300620b00601500600c00215d00620b00615f0066ee00215f00620b", - "0x615d0066ef00216200620b00600700612b00215c00620b006017006016", - "0x20b00600211e00200220b00600200900208716215c16300c00608700620b", - "0x601600613c00200220b00600900639c00200220b00600c00604d002002", - "0x600213400215400620b00600213100200220b00601000614500200220b", - "0x8a00620b00615715400705b00215700620b00615700604b00215700620b", - "0x16e0066f000216e00620b00608a15b00705d00215b00620b006002135002", - "0x8e00620b0060190060160020ed00620b00601b00600c00216800620b006", - "0x8e0ed00c0060d000620b0061680066ef00216b00620b00600700612b002", - "0x600600700620b0060060065e000200600620b0060020066f30020d016b", - "0x6a3100f006a3001600620b01c0070066f400200220b00600211e002007", - "0xa3801c006a37019006a3601b006a35017006a34015006a33014006a32010", - "0x26f500200220b00600200900211b006a3b054006a3a065006a390c4006", - "0x620b00602900900705b00202900620b00602900604b00202900620b006", - "0x604e00202f00620b00602a00604e00202e00620b00601600656700202a", - "0x603300202d02c02b00920b00603002f02e0096f600203000620b00600c", - "0x4800620b00600600601600203300620b00600200600c00200220b00602d", - "0x600202d00203500620b00602c00604e00203900620b00602b00604e002", - "0x611e00604b00211e00620b0060026f700200220b006002009002002a3c", - "0x3c00620b00600200600c00203700620b00611e00900705b00211e00620b", - "0x3700604e00207d00620b00600f00630b00212400620b006006006016002", - "0x12a03e07d12403c0166f800212a00620b00600c00604e00203e00620b006", - "0x200900212b006a3d12c00620b00703a0065e800203a10d12000920b006", - "0x220b00612d00603300212d04304100920b00612c0065e900200220b006", - "0x4100604e00204800620b00610d00601600203300620b00612000600c002", - "0x9002002a3c00600202d00203500620b00604300604e00203900620b006", - "0x12e00620b00612000600c00204500620b00612b0066f900200220b006002", - "0x4712e00900613100620b0060450066fd00204700620b00610d006016002", - "0x20b00613000604b00213000620b0060026fe00200220b006002009002131", - "0x213200620b0060100064d700204d00620b00613000900705b002130006", - "0x511320096ff00205300620b00600c00604e00205100620b00604d00604e", - "0x20b00600200600c00200220b00604f00603300204f04e04b00920b006053", - "0x4e00203900620b00604b00604e00204800620b006006006016002033006", - "0x6fa00200220b006002009002002a3c00600202d00203500620b00604e006", - "0x20b00612f00900705b00212f00620b00612f00604b00212f00620b006002", - "0x4e00205b00620b00605600604e00213400620b0060140064eb002056006", - "0x3300213605813300920b00613505b1340096fb00213500620b00600c006", - "0x620b00600600601600203300620b00600200600c00200220b006136006", - "0x202d00203500620b00605800604e00203900620b00613300604e002048", - "0x5d00604b00205d00620b0060026fc00200220b006002009002002a3c006", - "0x620b0060150064fb00213700620b00605d00900705b00205d00620b006", - "0x970000206700620b00600c00604e00213900620b00613700604e002064", - "0x200600c00200220b00613800603300213806105f00920b006067139064", - "0x3900620b00605f00604e00204800620b00600600601600203300620b006", - "0x220b006002009002002a3c00600202d00203500620b00606100604e002", - "0x13b00900705b00213b00620b00613b00604b00213b00620b006002702002", - "0x13f00620b00606900604e00206f00620b00601700650e00206900620b006", - "0x13c06c06a00920b00607113f06f00970300207100620b00600c00604e002", - "0x600600601600203300620b00600200600c00200220b00613c006033002", - "0x203500620b00606c00604e00203900620b00606a00604e00204800620b", - "0x4b00214100620b00600270400200220b006002009002002a3c00600202d", - "0x601b00644600214500620b00614100900705b00214100620b006141006", - "0x214b00620b00600c00604e00214600620b00614500604e00207900620b", - "0xc00200220b00607700603300207707607500920b00614b146079009705", - "0x20b00607500604e00204800620b00600600601600203300620b006002006", - "0x6002009002002a3c00600202d00203500620b00607600604e002039006", - "0x705b00207b00620b00607b00604b00207b00620b00600270600200220b", - "0x20b00614a00604e00215200620b00601900645800214a00620b00607b009", - "0x7f00920b00614f14e15200970700214f00620b00600c00604e00214e006", - "0x601600203300620b00600200600c00200220b0061510060330021510c7", - "0x620b0060c700604e00203900620b00607f00604e00204800620b006006", - "0x8300620b00600270800200220b006002009002002a3c00600202d002035", - "0x649f00208500620b00608300900705b00208300620b00608300604b002", - "0x620b00600c00604e00215f00620b00608500604e00216000620b00601c", - "0x220b00616100603300216115e15000920b00615d15f16000922e00215d", - "0x15000604e00204800620b00600600601600203300620b00600200600c002", - "0x9002002a3c00600202d00203500620b00615e00604e00203900620b006", - "0x216300620b00616300604b00216300620b00600270900200220b006002", - "0x15c00604e00215700620b0060c40064ba00215c00620b00616300900705b", - "0x20b00615b08a15700970a00215b00620b00600c00604e00208a00620b006", - "0x203300620b00600200600c00200220b006154006033002154087162009", - "0x608700604e00203900620b00616200604e00204800620b006006006016", - "0x20b00600270b00200220b006002009002002a3c00600202d00203500620b", - "0x216800620b00616e00900705b00216e00620b00616e00604b00216e006", - "0x600c00604e00216c00620b00616800604e0020d000620b0060650063bf", - "0x616b00603300216b08e0ed00920b00609216c0d000970c00209200620b", - "0x4e00204800620b00600600601600203300620b00600200600c00200220b", - "0x2a3c00600202d00203500620b00608e00604e00203900620b0060ed006", - "0x620b00616d00604b00216d00620b00600270d00200220b006002009002", - "0x4e00217500620b0060540063ee00217100620b00616d00900705b00216d", - "0x990d117500970e00209900620b00600c00604e0020d100620b006171006", - "0x620b00600200600c00200220b00609600603300209617309400920b006", - "0x604e00203900620b00609400604e00204800620b006006006016002033", - "0x270f00200220b006002009002002a3c00600202d00203500620b006173", - "0x620b00617600900705b00217600620b00617600604b00217600620b006", - "0x604e0020a000620b00609b00604e0020cc00620b00611b00648000209b", - "0x603300217c09d17a00920b00617d0a00cc00922d00217d00620b00600c", - "0x4800620b00600600601600203300620b00600200600c00200220b00617c", - "0x600202a00203500620b00609d00604e00203900620b00617a00604e002", - "0x620b00617e00671200217e00620b0060a20350390097110020a200620b", - "0x66fd0020cd00620b00604800601600217f00620b00603300600c0020a4", - "0x70066e300200220b00600211e0020d20cd17f0090060d200620b0060a4", - "0x620b00601600601b00201600620b00600c00671300200c00700720b006", - "0xc400201501400720b00601000601c00201000620b00600f00601900200f", - "0x620b00600900604e00201900620b00601500611b00200220b006014006", - "0x71300200220b00601b00603300201b01700720b00601c0190070bf00201c", - "0x20b00600600601600202900620b00600200600c0020c400620b006007006", - "0x21800202c00620b00601700604e00202b00620b0060c400600f00202a006", - "0xa3e02d00620b00711b00607100211b05406500920b00602c02b02a02900c", - "0x731900203002f00720b00602d00614100200220b00600200900202e006", - "0x20b00606500600c00204800620b00603300631a00203300620b00603002f", - "0x900611e00620b00604800631b00203500620b006054006016002039006", - "0x600c00203700620b00602e00631c00200220b00600200900211e035039", - "0x620b00603700631b00210d00620b00605400601600212000620b006065", - "0x600700601b00200700600720b0060060066e300203a10d12000900603a", - "0xf01600720b00600c00601c00200c00620b00600900601900200900620b", - "0x20b00601000601c00201000620b0060026e400200220b0060160060c4002", - "0x5400201700620b00600f00605400200220b0060140060c4002015014007", - "0x701b01700702900201700620b00601700611b00201b00620b006015006", - "0x201900600720b0060060066e300200220b006002009002002a3f00220b", - "0x60c400601c0020c400620b00601c00601900201c00620b00601900601b", - "0x1c00211b00620b00600271400200220b0060650060c400205406500720b", - "0x20b00605400605400200220b0060290060c400202a02900720b00611b006", - "0x2900202b00620b00602b00611b00202c00620b00602a00605400202b006", - "0x620b00600202a00200220b006002009002002a4000220b00702c02b007", - "0x202d00202f00620b00602e00602c00202e00620b00602d00602b00202d", - "0x3000602e00203000620b00600202a00200220b006002009002002a41006", - "0x4800620b00602f00602f00202f00620b00603300602c00203300620b006", - "0x2035006a4203900620b00704800603000204800620b00604800602c002", - "0x211e00620b00600213100200220b00603900603300200220b006002009", - "0x10d0066e600210d00620b00612000601b00212003700720b0060060066e5", - "0x203e00620b00600200600c00203c00620b00600206500203a00620b006", - "0x12a03e0096e700212c00620b00603c00611b00212a00620b00603a006099", - "0x2009002041006a4312b00620b00707d0066e800207d12400720b00612c", - "0x212d00620b0060430061a600204300620b00612b0066e900200220b006", - "0x4511e00705b00204500620b00604500604b00204500620b00612d0061b2", - "0x620b00613100601b00213104700720b0060370066e500212e00620b006", - "0x12400600c00204b00620b00600259200204d00620b0061300066e6002130", - "0x5300620b00604b00611b00205100620b00604d00609900213200620b006", - "0x212e00620b00612e00604e00204f04e00720b0060530511320096e7002", - "0x12f0066e900200220b006002009002056006a4412f00620b00704f0066e8", - "0x13600620b0060580061b200205800620b0061330061a600213300620b006", - "0x213100213400620b00613612e00705b00213600620b00613600604b002", - "0x620b00605d00601b00205d13500720b0060470066e500205b00620b006", - "0x4e00600c00206100620b0060026e400205f00620b0061370066e6002137", - "0x13b00620b00606100611b00206700620b00605f00609900213900620b006", - "0x213400620b00613400604e00206413800720b00613b0671390096e7002", - "0x690066e900200220b00600200900206a006a4506900620b0070640066e8", - "0x6f00620b00613c0061b200213c00620b00606c0061a600206c00620b006", - "0x66e500213f00620b00606f05b00705b00206f00620b00606f00604b002", - "0x620b00614100601b00200220b00607100606100214107100720b006135", - "0x13800600c00207600620b00600271600207500620b0061450066e6002145", - "0x7b00620b00607600611b00214b00620b00607500609900214600620b006", - "0x213f00620b00613f00604e00207907700720b00607b14b1460096e7002", - "0x14a0066e900200220b00600200900207f006a4614a00620b0070790066e8", - "0x15200620b0061510061b200215100620b0060c70061a60020c700620b006", - "0x613200214e00620b00615213f00705b00215200620b00615200604b002", - "0x620b00608300605300200220b00614f00605100208314f00720b006134", - "0x605300200220b00615000605100215e15000720b00614e006132002085", - "0x20b00616000671800216000620b00616108500771700216100620b00615e", - "0x71a00216300620b00607700600c00215d00620b00615f00671900215f006", - "0x13400605100200220b00600200900215c16300700615c00620b00615d006", - "0xc00216200620b00607f00671c00200220b00613f00605100200220b006", - "0x900215408700700615400620b00616200671a00208700620b006077006", - "0x5100200220b00613400605100200220b00613500606100200220b006002", - "0x620b00613800600c00215700620b00606a00671c00200220b00605b006", - "0x200220b00600200900215b08a00700615b00620b00615700671a00208a", - "0x620b00605600671c00200220b00612e00605100200220b006047006061", - "0x1680070060ed00620b00616e00671a00216800620b00604e00600c00216e", - "0x20b00611e00605100200220b00603700606100200220b0060020090020ed", - "0x671a00216b00620b00612400600c00208e00620b00604100671c002002", - "0x603500603300200220b0060020090020d016b0070060d000620b00608e", - "0x600271d00216c00620b00600213100200220b00600600606100200220b", - "0x16d00620b00609216c00705b00209200620b00609200604b00209200620b", - "0x9400671c00209400620b00616d17100705d00217100620b006002135002", - "0x17500620b00617300671a00209600620b00600200600c00217300620b006", - "0x61320020d100620b00600213100200220b006002009002175096007006", - "0x620b00617600605300200220b00609900605100217609900720b0060d1", - "0x71900209d00620b00617a00671800217a00620b00609b00600771700209b", - "0x20b00617c00671a0020cc00620b00600200600c00217c00620b00609d006", - "0x200c006a4700900700720b00700600200771e0020a00cc0070060a0006", - "0x620b00600700600c00201600620b00600900660400200220b006002009", - "0x20b006002009002002a4800600202d00201000620b00601600660500200f", - "0xc00600c00201500620b00601400660600201400620b00600202a002002", - "0x1700620b00600f00636e00201000620b00601500660500200f00620b006", - "0x1600620b00600200601600201b01700700601b00620b006010006726002", - "0x200c00900700920b00600f01600757600200f00620b00600600612b002", - "0x1000657900200220b006002009002014006a4901000620b00700c006577", - "0x1b01620b00601700657b00201700620b00601500657a00201500620b006", - "0xfa00200220b00601c0060fa00200220b00601900657d0020650c401c019", - "0x5400620b00601b00672700200220b00606500604d00200220b0060c4006", - "0x900612b00202900620b00600700601600211b00620b006054006728002", - "0x200900202b02a02900900602b00620b00611b00622c00202a00620b006", - "0x202d00620b00600700601600202c00620b00601400672900200220b006", - "0x2f02e02d00900602f00620b00602c00622c00202e00620b00600900612b", - "0x20b00600c00604b00200c00620b00600271f00200220b006007006397002", - "0x620b00600f00604b00200f01600720b00600900c00600937b00200c006", - "0x201500620b00601000600c00201401000720b00600f00200772000200f", - "0x1b01701500900601b00620b00601400661600201700620b00601600615d", - "0xf01600920b00700c00700600200c64100200c00620b006009006224002", - "0x1b00720b00601000613000200220b006002009002017015014009a4a010", - "0x601c00613000201c00620b0060020ef00200220b00601b00604d002019", - "0x205400620b0060190061b200200220b0060c400604d0020650c400720b", - "0x60650061b200200220b00611b00604d00202911b00720b006054006130", - "0x200220b00602b00604d00202c02b00720b00602a00613000202a00620b", - "0x602d00604b00202e00620b00602c0061b200202d00620b0060290061b2", - "0x2f00620b00602f00604b00202f00620b00602e02d0071c100202d00620b", - "0x2f0061c500200f00620b00600f00612b00201600620b006016006016002", - "0x203300620b00600202a00200220b006002009002030006a4b00220b007", - "0xa4c00600202d00203900620b00604800602c00204800620b00603300602e", - "0x620b00600202a00200220b0060300060f200200220b006002009002002", - "0x602f00203900620b00611e00602c00211e00620b00603500602b002035", - "0x620b00601600601600212000620b00603700672100203700620b006039", - "0x10d00900603c00620b00612000672200203a00620b00600f00612b00210d", - "0x1400601600212400620b00601700672300200220b00600200900203c03a", - "0x12a00620b00612400672200203e00620b00601500612b00207d00620b006", - "0x6002009002007006a4d00600620b00700200672400212a03e07d009006", - "0x3aa00200c00620b0060090063a900200900620b0060060063a800200220b", - "0x20b00600213500200220b00600200900201600600601600620b00600c006", - "0x201400620b0060100063ab00201000620b00600700f00705d00200f006", - "0x213900200f00620b00600272500201500600601500620b0060140063aa", - "0x3500201000620b00601000603900201000620b00600204800200220b006", - "0x200220b00600200900201b017007a4e01501400720b007010006002009", - "0x701900665b00201400620b00601400600c00201900620b006009006590", - "0x620b0060c400665c00200220b006002009002065006a4f0c401c00720b", - "0x202d00202900620b00605400665d00211b00620b00601c006596002054", - "0x2a00665e00202a00620b00600202a00200220b006002009002002a50006", - "0x2900620b00602b00665d00211b00620b00606500659600202b00620b006", - "0xf00772a00201600620b0060160060fc00201600620b00611b0061d6002", - "0x600200900202d006a5102c00620b00702900666000201600620b006016", - "0x1400600c00202e00620b00602c00659b00200220b00600211e00200220b", - "0x11e00620b00600700615d00203500620b00601500601600203900620b006", - "0x3002f00c20b00603711e03503900c72c00203700620b00602e00659c002", - "0x200220b00600200900210d006a5212000620b007048006151002048033", - "0xc00212403c00720b00603a00c03300937b00203a00620b006120006152", - "0x20b00603c00615d00204100620b00603000601600212b00620b00602f006", - "0x61b00204500620b00612400604b00212d00620b0060160060fc002043006", - "0x620b00712c00661c00212c12a03e07d00c20b00604512d04304112b016", - "0x4d13013100920b00612e00661d00200220b006002009002047006a5312e", - "0xc00204e00620b00604b00672e00204b00620b00604d13013100972d002", - "0x20b00612a00615d00213200620b00603e00601600204f00620b00607d006", - "0x600200900205305113204f00c00605300620b00604e00672f002051006", - "0x1600205600620b00607d00600c00212f00620b00604700673100200220b", - "0x20b00612f00672f00205800620b00612a00615d00213300620b00603e006", - "0x20b00601600639c00200220b00600200900213605813305600c006136006", - "0x2f00600c00213400620b00610d00673100200220b00600c00604d002002", - "0x5d00620b00603300615d00213500620b00603000601600205b00620b006", - "0x220b00600200900213705d13505b00c00613700620b00613400672f002", - "0x5f00620b00600202a00200220b00602d00603300200220b00600211e002", - "0xc00213800620b00606100672e00206100620b00605f00c01600972d002", - "0x20b00600700615d00213900620b00601500601600206400620b006014006", - "0x600200900213b06713906400c00613b00620b00613800672f002067006", - "0x600f00673200200220b00600c00604d00200220b00600211e00200220b", - "0x600213400206900620b00600213100200220b00600900639c00200220b", - "0x6c00620b00606a06900705b00206a00620b00606a00604b00206a00620b", - "0x6f00673100206f00620b00606c13c00705d00213c00620b006002135002", - "0x14100620b00601b00601600207100620b00601700600c00213f00620b006", - "0x14107100c00607500620b00613f00672f00214500620b00600700615d002", - "0x200220b006002009002007006a5400600620b007002006733002075145", - "0x600c00613300200c00620b00600900605600200900620b00600600612f", - "0x200f00620b00600213500200220b00600200900201600600601600620b", - "0x1400613300201400620b00601000605800201000620b00600700f00705d", - "0x70060060db00200600620b00600200601b00201500600601500620b006", - "0x620b0060090061a300200220b00600200900200c006a5500900700720b", - "0x202d00201000620b0060160061a400200f00620b006007006099002016", - "0x140061a500201400620b00600202a00200220b006002009002002a56006", - "0x1000620b0060150061a400200f00620b00600c00609900201500620b006", - "0x100060df00201700620b00601700600f00201700620b00600f006053002", - "0x620b00601b0061a600200220b006002009002019006a5701b00620b007", - "0x4d00205406500720b0060c40061300020c400620b00601c0061b200201c", - "0x2900720b00611b00613000211b00620b0060020ef00200220b006065006", - "0x2b00613000202b00620b0060540061b200200220b00602900604d00202a", - "0x2e00620b00602a0061b200200220b00602c00604d00202d02c00720b006", - "0x2d0061b200200220b00602f00604d00203002f00720b00602e006130002", - "0x3300620b00603300604b00204800620b0060300061b200203300620b006", - "0x61c500203900620b00603900604b00203900620b0060480330071c1002", - "0x11e00620b00600202a00200220b006002009002035006a5800220b007039", - "0x600202d00212000620b00603700602c00203700620b00611e00602e002", - "0x20b00600202a00200220b0060350060f200200220b006002009002002a59", - "0x2f00212000620b00603a00602c00203a00620b00610d00602b00210d006", - "0x20b00601700600f00212400620b00603c00673400203c00620b006120006", - "0x220b00600200900203e07d00700603e00620b00612400673500207d006", - "0x20b00612a00673600212a00620b00600202a00200220b006019006033002", - "0x700604100620b00612c00673500212b00620b00601700600f00212c006", - "0x600600700620b0060060065e000200600620b00600200622900204112b", - "0x33100200220b006002009002007006a5a00600620b007002006737002007", - "0x20b00600c00621200200c00620b00600900633200200900620b006006006", - "0x5d00200f00620b00600213500200220b006002009002016006006016006", - "0x601400621200201400620b00601000633300201000620b00600700f007", - "0x900700600c64100201600620b00600c00622400201500600601500620b", - "0xc00200220b00600200900201b017015009a5b01401000f00920b007016", - "0x60650c400773800206500620b00601400604b0020c400620b006002006", - "0x1000620b00601000612b00200f00620b00600f00601600201c01900720b", - "0x673900200220b00600200900211b006a5c05400620b00701c006171002", - "0x620b00602a00673b00202a00620b00602900673a00202900620b006054", - "0x612b00202d00620b00600f00601600202c00620b00601900600c00202b", - "0x202f02e02d02c00c00602f00620b00602b00673c00202e00620b006010", - "0x203000620b00600213100200220b00611b00603300200220b006002009", - "0x603303000705b00203300620b00603300604b00203300620b00600273d", - "0x203500620b00604803900705d00203900620b00600213500204800620b", - "0x600f00601600203700620b00601900600c00211e00620b00603500673e", - "0x603a00620b00611e00673c00210d00620b00601000612b00212000620b", - "0x203c00620b00601b00673f00200220b00600200900203a10d12003700c", - "0x600200600c00207d00620b00612400673b00212400620b00603c00673a", - "0x212c00620b00601700612b00212a00620b00601500601600203e00620b", - "0x620b00700200674000212b12c12a03e00c00612b00620b00607d00673c", - "0x64f00200900620b00600600664e00200220b006002009002007006a5d006", - "0x200900201600600601600620b00600c00665000200c00620b006009006", - "0x201000620b00600700f00705d00200f00620b00600213500200220b006", - "0x74100201500600601500620b00601400665000201400620b006010006651", - "0x636100200700600600700620b0060060065e000200600620b006002006", - "0x620b00600700636100200900620b00600600636100200700620b006002", - "0x4d00201000f00720b00601600613000201600620b00600c0061bf00200c", - "0x620b0060140061bf00201400620b00600900636100200220b00600f006", - "0x61b200200220b00601700604d00201b01700720b006015006130002015", - "0x20b00601c0190071c100201c00620b00601b0061b200201900620b006010", - "0x65006a5e00220b0070c40061c50020c400620b0060c400604b0020c4006", - "0x620b00605400602e00205400620b00600202a00200220b006002009002", - "0x20b006002009002002a5f00600202d00202900620b00611b00602c00211b", - "0x602a00602b00202a00620b00600202a00200220b0060650060f2002002", - "0x602c00620b00602900636f00202900620b00602b00602c00202b00620b", - "0x600900600200937b00200f01600c00900c20b00600700674200202c006", - "0x20b00600c01401000937b00201400620b00601400604b00201401000720b", - "0x20c400620b00601700604b00201c00620b00601500615d002017015007", - "0x37b00201901b00720b0060650c401c00974300206500620b0060160063f1", - "0x604b00202900620b00605400615d00211b05400720b00600f01901b009", - "0x1c500200f01600720b00601600635a00202a02900700602a00620b00611b", - "0x20b00601600604d00200220b006002009002010006a6000220b00700f006", - "0x600900604d00200220b00600c00604d00200220b00600700604d002002", - "0x600c00201500620b00601400602b00201400620b00600202a00200220b", - "0x620b00601500602c00201b00620b00600600612c00201700620b006002", - "0x200220b0060100060f200200220b00600200900201901b017009006019", - "0x1c0650071c100206501600720b00601600635a00201c00620b006002744", - "0xa6100220b0070c40061c50020c400620b0060c400604b0020c400620b006", - "0x600700604d00200220b00601600604d00200220b006002009002054006", - "0x600202a00200220b00600900604d00200220b00600c00604d00200220b", - "0x202a00620b00600200600c00202900620b00611b00602b00211b00620b", - "0x2c02b02a00900602c00620b00602900602c00202b00620b00600600612c", - "0x2d00620b00600274400200220b0060540060f200200220b006002009002", - "0x4b00202e00620b00602d02f0071c100202f00c00720b00600c00635a002", - "0x6002009002030006a6200220b00702e0061c500202e00620b00602e006", - "0xc00604d00200220b00600700604d00200220b00601600604d00200220b", - "0x602b00203300620b00600202a00200220b00600900604d00200220b006", - "0x620b00600600612c00203900620b00600200600c00204800620b006033", - "0x220b00600200900211e03503900900611e00620b00604800602c002035", - "0x10d006a6312003700720b00700900200774500200220b0060300060f2002", - "0x20b00612000622800212000620b00612000674600200220b006002009002", - "0x12400720b00703c03700774500203c00c00720b00600c00635a00203a006", - "0x22800207d00620b00607d00674600200220b00600200900203e006a6407d", - "0x12b00620b00600274800212c00620b00600274700212a00620b00607d006", - "0x12400600c00212b00620b00612b00604b00212c00620b00612c00604b002", - "0x20b006002009002002a6504100620b00712b12c00774900212400620b006", - "0x612c00204300620b00604100622800204100620b006041006746002002", - "0x620b00601600604b00204700620b00612a00674a00212e00620b006006", - "0xa6600220b00704500674c00204512d00720b00613104712e00974b002131", - "0x600c00604d00200220b00603a00674d00200220b006002009002130006", - "0x600202a00200220b00604300674d00200220b00600700604d00200220b", - "0x204e00620b00612400600c00204b00620b00604d00602b00204d00620b", - "0x13204f04e00900613200620b00604b00602c00204f00620b00612d00612c", - "0x605300604d00205305100720b00613000674e00200220b006002009002", - "0x4b00205800620b00604300674a00213300620b00612d00612c00200220b", - "0x612c00205612f00720b00613605813300974b00213600620b006007006", - "0x620b00600c00604b00205d00620b00603a00674a00213500620b00612f", - "0x5600720b00605600622700205b13400720b00613705d13500974b002137", - "0x74a00213805b00720b00605b00622700206100620b00606100674a002061", - "0x705f00674c00205f00620b00613806100774f00213800620b006138006", - "0x2009002002a6800600202d00200220b006002009002064006a6700220b", - "0x200220b00606700604d00206713900720b00606400674e00200220b006", - "0x604b00213b00620b0060691390071c100206905100720b00605100635a", - "0x20b00600200900206a006a6900220b00713b0061c500213b00620b00613b", - "0x605600674d00200220b00605b00674d00200220b00605100604d002002", - "0x600c00213c00620b00606c00602e00206c00620b00600202a00200220b", - "0x620b00613c00602c00213f00620b00613400612c00206f00620b006124", - "0x200220b00606a0060f200200220b00600200900207113f06f009006071", - "0x7514500775000207500620b00605b00674a00214500620b00605600674a", - "0x220b006002009002076006a6a00220b00714100674c00214100620b006", - "0x200220b006002009002002a6b00600202d00200220b00605100604d002", - "0x510770071c100200220b00607900604d00207907700720b00607600674e", - "0xa6c00220b0071460061c500214600620b00614600604b00214600620b006", - "0x607b00602e00207b00620b00600202a00200220b00600200900214b006", - "0x20c700620b00613400612c00207f00620b00612400600c00214a00620b", - "0xf200200220b0060020090021510c707f00900615100620b00614a00602c", - "0x14e00620b00615200602b00215200620b00600202a00200220b00614b006", - "0x14e00602c00208300620b00613400612c00214f00620b00612400600c002", - "0x603a00674d00200220b00600200900208508314f00900608500620b006", - "0x1600604d00200220b00600700604d00200220b00600c00604d00200220b", - "0x602b00215000620b00600202a00200220b00612a00674d00200220b006", - "0x620b00600600612c00216100620b00612400600c00215e00620b006150", - "0x220b00600200900215f16016100900615f00620b00615e00602c002160", - "0x20b00600c00604d00200220b00603a00674d00200220b00601600604d002", - "0x615d00602b00215d00620b00600202a00200220b00600700604d002002", - "0x216200620b00600600612c00215c00620b00603e00600c00216300620b", - "0x4d00200220b00600200900208716215c00900608700620b00616300602c", - "0x200220b00600c00604d00200220b00600700604d00200220b006016006", - "0x20b00610d00600c00215700620b00615400602b00215400620b00600202a", - "0x900616e00620b00615700602c00215b00620b00600600612c00208a006", - "0x201700620b00600600601600201500620b00600200600c00216e15b08a", - "0x1900611b00201900900720b0060090065a700201b00620b00600700612b", - "0x620b00601c00661600201c00c00720b00600c00675100201900620b006", - "0x1400675300201401000f01600c20b00601c01901b01701501675200201c", - "0x620b0060c400675400200220b006002009002065006a6d0c400620b007", - "0x75600200220b006002009002029006a6e11b00620b007054006755002054", - "0x20b00602a00675700202c00c00720b00600c00675100202a00620b006002", - "0x900720b0060090065a700202b00620b00602d02c00775800202d02a007", - "0x2f00920b00702b02e01000f00c64100202b00620b00602b00664000202e", - "0x11e00620b00600275600200220b006002009002035039048009a6f033030", - "0x11e00653500203a00620b00602a00653500210d00620b00601600600c002", - "0x603300604b00212003700720b00603c03a10d00975900203c00620b006", - "0x203000620b00603000612b00202f00620b00602f00601600203300620b", - "0x12400675b00200220b00600200900207d006a7012400620b00712000675a", - "0x620b00612a00664000212a00620b00603e00c00775800203e00620b006", - "0x204512d043009a7104112b12c00920b00712a00903002f00c64100212a", - "0x612e00675c00212e00620b00604103311b00943f00200220b006002009", - "0x213000620b00613100675e00213100620b00604700675d00204700620b", - "0x612b00612b00204b00620b00612c00601600204d00620b00603700600c", - "0x200900204f04e04b04d00c00604f00620b00613000675f00204e00620b", - "0x676000200220b00611b00634900200220b00603300604d00200220b006", - "0x620b00605100675e00205100620b00613200675d00213200620b006045", - "0x612b00205600620b00604300601600212f00620b00603700600c002053", - "0x205813305612f00c00605800620b00605300675f00213300620b00612d", - "0x200220b00611b00634900200220b00603300604d00200220b006002009", - "0x620b00607d00676200200220b00600c00676100200220b0060090060c4", - "0x612b00205b00620b00602f00601600213400620b00603700600c002136", - "0x205d13505b13400c00605d00620b00613600675f00213500620b006030", - "0x200220b00611b00634900200220b00600c00676100200220b006002009", - "0x620b00603500676000200220b0060090060c400200220b00602a006534", - "0x600c00206100620b00605f00675e00205f00620b00613700675d002137", - "0x620b00603900612b00206400620b00604800601600213800620b006016", - "0x20b00600200900206713906413800c00606700620b00606100675f002139", - "0x602900676000200220b0060090060c400200220b00600c006761002002", - "0x206a00620b00606900675e00206900620b00613b00675d00213b00620b", - "0x601000612b00213c00620b00600f00601600206c00620b00601600600c", - "0x200900213f06f13c06c00c00613f00620b00606a00675f00206f00620b", - "0x676200200220b0060090060c400200220b00600c00676100200220b006", - "0x620b00600f00601600214100620b00601600600c00207100620b006065", - "0x14100c00607600620b00607100675f00207500620b00601000612b002145", - "0x220b006002009002007006a7200600620b007002006763002076075145", - "0xc00652900200c00620b00600900621400200900620b006006006528002", - "0xf00620b00600213500200220b00600200900201600600601600620b006", - "0x652900201400620b00601000652a00201000620b00600700f00705d002", - "0x700603300200700620b00600200652e00201500600601500620b006014", - "0x2a00200220b00600900603300200900620b00600600652e00200220b006", - "0x620b00601600602c00201600620b00600c00602e00200c00620b006002", - "0x20b00600f00662000201401000f00920b0060160063fe00200f00600600f", - "0x201700620b00601b00622400201b00c00720b00600c006751002015006", - "0x1c00720b00701501701900700601662200201900900720b0060090065a7", - "0x202900620b00600275600200220b00600200900211b054065009a730c4", - "0x775800202c02900720b00602900675700202b00c00720b00600c006751", - "0x601c00601600202d00900720b0060090065a700202a00620b00602c02b", - "0x701002a02d0c401c01662200202a00620b00602a00664000201c00620b", - "0x20b00600275600200220b006002009002048033030009a7402f02e00720b", - "0x53500212000620b00602900653500203700620b00600200600c002039006", - "0x612b00211e03500720b00610d12003700975900210d00620b006039006", - "0x620b00711e00675a00202e00620b00602e00601600202f00620b00602f", - "0x75800212400620b00603a00675b00200220b00600200900203c006a7503a", - "0x2f02e01662200207d00620b00607d00664000207d00620b00612400c007", - "0x200220b00600200900204112b12c009a7612a03e00720b00701407d009", - "0x20b00612d00676400212d00620b0060430063b700204300620b00600202a", - "0x1600204700620b00603500600c00212e00620b006045006765002045006", - "0x20b00612e00676600213000620b00612a00612b00213100620b00603e006", - "0x20b0060410063b900200220b00600200900204d13013104700c00604d006", - "0xc00204f00620b00604e00676500204e00620b00604b00676400204b006", - "0x20b00612b00612b00205100620b00612c00601600213200620b006035006", - "0x600200900212f05305113200c00612f00620b00604f006766002053006", - "0xc00676100200220b0060090060c400200220b00601400604d00200220b", - "0x213300620b00603500600c00205600620b00603c00676700200220b006", - "0x605600676600213600620b00602f00612b00205800620b00602e006016", - "0x600c00676100200220b00600200900213413605813300c00613400620b", - "0x90060c400200220b00602900653400200220b00601400604d00200220b", - "0x213500620b00605b00676400205b00620b0060480063b900200220b006", - "0x603000601600213700620b00600200600c00205d00620b006135006765", - "0x613800620b00605d00676600206100620b00603300612b00205f00620b", - "0x4d00200220b00600c00676100200220b00600200900213806105f13700c", - "0x200220b0060090060c400200220b00601000604d00200220b006014006", - "0x613900676500213900620b00606400676400206400620b00611b0063b9", - "0x206900620b00606500601600213b00620b00600200600c00206700620b", - "0x6a06913b00c00606c00620b00606700676600206a00620b00605400612b", - "0x700600600700620b0060060065e000200600620b00600200676800206c", - "0x200700600600700620b0060060065e000200600620b006002006769002", - "0x76b00200700600600700620b0060060065e000200600620b00600200676a", - "0x676c00200700600600700620b0060060065e000200600620b006002006", - "0x200676d00200700600600700620b0060060065e000200600620b006002", - "0x220b00600600604d00200220b006002009002009006a7700700620b007", - "0x1600661300201600620b00600c00661200200c00620b006007006226002", - "0x220b00600900634900200220b00600200900200f00600600f00620b006", - "0x600213500201400620b00600601000705b00201000620b006002131002", - "0x1b00620b00601700661400201700620b00601401500705d00201500620b", - "0x200600620b00600200676e00201900600601900620b00601b006613002", - "0x5e000200600620b00600200676f00200700600600700620b0060060065e0", - "0x65e000200600620b00600200677000200700600600700620b006006006", - "0x60065e000200600620b00600200677100200700600600700620b006006", - "0x700600c64100201600620b00600c00622400200700600600700620b006", - "0x200220b00600200900201b017015009a7801401000f00920b007016009", - "0x650c400777200206500620b00601400604b0020c400620b00600200600c", - "0x620b00601000612b00200f00620b00600f00601600201c01900720b006", - "0x77400200220b00600200900211b006a7905400620b00701c006773002010", - "0x20b00602a00677600202a00620b00602900677500202900620b006054006", - "0x12b00202d00620b00600f00601600202c00620b00601900600c00202b006", - "0x2f02e02d02c00c00602f00620b00602b00623100202e00620b006010006", - "0x3000620b00600213100200220b00611b00603300200220b006002009002", - "0x3303000705b00203300620b00603300604b00203300620b006002777002", - "0x3500620b00604803900705d00203900620b00600213500204800620b006", - "0xf00601600203700620b00601900600c00211e00620b006035006778002", - "0x3a00620b00611e00623100210d00620b00601000612b00212000620b006", - "0x3c00620b00601b00677900200220b00600200900203a10d12003700c006", - "0x200600c00207d00620b00612400677600212400620b00603c006775002", - "0x12c00620b00601700612b00212a00620b00601500601600203e00620b006", - "0x20b00700200623200212b12c12a03e00c00612b00620b00607d006231002", - "0x200900620b00600600653900200220b006002009002007006a7a006006", - "0x900201600600601600620b00600c00621300200c00620b00600900653a", - "0x1000620b00600700f00705d00200f00620b00600213500200220b006002", - "0x201500600601500620b00601400621300201400620b00601000653b002", - "0x620b00600600604e00200700620b00600202a00200220b006002006033", - "0x620b00600200677a00200c00900700600c00620b0060070061ff002009", - "0x600620b00700200677b00200700600600700620b0060060065e0002006", - "0x66ca00200900620b0060060066c900200220b006002009002007006a7b", - "0x600200900201600600601600620b00600c0066cb00200c00620b006009", - "0x6cc00201000620b00600700f00705d00200f00620b00600213500200220b", - "0x677c00201500600601500620b0060140066cb00201400620b006010006", - "0x20b00600600604d00200220b006002009002009006a7c00700620b007002", - "0x621300201600620b00600c00653a00200c00620b006007006539002002", - "0x20b0060090060c400200220b00600200900200f00600600f00620b006016", - "0x213500201400620b00600601000705b00201000620b006002131002002", - "0x620b00601700653b00201700620b00601401500705d00201500620b006", - "0x20b00700700600200977d00201900600601900620b00601b00621300201b", - "0xf00620b00600c00677e00200220b006002009002016006a7d00c009007", - "0x1000678000201400620b00600900600c00201000620b00600f00677f002", - "0x620b00600213100200220b00600200900201501400700601500620b006", - "0x1700705b00201b00620b00601b00604b00201b00620b00600222a002017", - "0x620b00601901c00705d00201c00620b00600213500201900620b00601b", - "0x678000205400620b00601600600c00206500620b0060c40067810020c4", - "0x600200600c00200220b00600211e00211b05400700611b00620b006065", - "0x201500620b00600900604e00201400620b00600600601600201000620b", - "0xf01600c00920b00601701501401000c78200201700620b00600700604e", - "0x65e900200220b006002009002019006a7e01b00620b00700f0065e8002", - "0x20b00606500603300200220b00601c0060510020650c401c00920b00601b", - "0x631a00211b00620b0060540c400731900205400620b00600202a002002", - "0x620b00601600601600202a00620b00600c00600c00202900620b00611b", - "0x220b00600200900202c02b02a00900602c00620b00602900631b00202b", - "0x1600601600202e00620b00600c00600c00202d00620b00601900631c002", - "0x678300203002f02e00900603000620b00602d00631b00202f00620b006", - "0x601600604d00201600c00720b00600900678400200900200720b006002", - "0x4f00201500620b00600600604e00201400620b00600c00604b00200220b", - "0x600200678400200220b00601000603300201000f00720b006015014007", - "0x20c400620b00601b00604b00200220b00601700604d00201b01700720b", - "0x603300201c01900720b0060650c400704f00206500620b00600700604e", - "0x211b00620b00600f00604e00205400620b00600202a00200220b00601c", - "0x2a02911b00900602a00620b0060540061ff00202900620b00601900604e", - "0x200220b00600211e00200220b00600213900200f00620b006002785002", - "0x65f700201501400720b00601000678600201000700720b006007006787", - "0x1900620b00600900604e00201b00620b00601400604b00200220b006015", - "0x678600200220b00601700603300201701600720b00601901b00704f002", - "0x620b00600200600c00200220b00601c00604d0020c401c00720b006007", - "0x604e00202b00620b0060c400631600202a00620b006006006016002029", - "0x2b02a02900c78a00201600620b00601600f00778900202c00620b00600c", - "0x900202e006a7f02d00620b00711b00607100211b05406500920b00602c", - "0x220b00603000603300203002f00720b00602d00614100200220b006002", - "0x671200204800620b00603302f01600971100203300620b00600202a002", - "0x620b00605400601600203500620b00606500600c00203900620b006048", - "0x220b00600200900203711e03500900603700620b0060390066fd00211e", - "0x606500600c00212000620b00602e0066f900200220b006016006051002", - "0x603c00620b0061200066fd00203a00620b00605400601600210d00620b", - "0x720b00600900678d00200900200720b00600200678b00203c03a10d009", - "0x604e00201400620b00600c00621b00200220b00601600604d00201600c", - "0x601000603300201000f00720b00601501400752c00201500620b006007", - "0x4b00200220b00601700634900201b01700720b00600200678d00200220b", - "0x60650c400704f00206500620b00600f00604e0020c400620b00601b006", - "0x4e00205400620b00600202a00200220b00601c00603300201c01900720b", - "0x20b0060540061ff00202900620b00601900604e00211b00620b006006006", - "0x900678f00200900200720b00600200678e00202a02911b00900602a006", - "0x1400620b00600c00621b00200220b00601600604d00201600c00720b006", - "0x3300201000f00720b00601501400752c00201500620b00600700604e002", - "0x20b00601700634900201b01700720b00600200678f00200220b006010006", - "0x704f00206500620b00600f00604e0020c400620b00601b00604b002002", - "0x620b00600202a00200220b00601c00603300201c01900720b0060650c4", - "0x61ff00202900620b00601900604e00211b00620b00600600604e002054", - "0x4b00200900620b00600200679000202a02911b00900602a00620b006054", - "0x601000f00704f00201000620b00600700604e00200f00620b006009006", - "0x4e00201400620b00600202a00200220b00601600603300201600c00720b", - "0x20b0060140061ff00201700620b00600c00604e00201500620b006006006", - "0x600900604b00200900620b00600200679100201b01701500900601b006", - "0xc00720b00601000f00704f00201000620b00600700604e00200f00620b", - "0x600600604e00201400620b00600202a00200220b006016006033002016", - "0x601b00620b0060140061ff00201700620b00600c00604e00201500620b", - "0x4e00200900620b00600202a00200220b00600200679300201b017015009", - "0x20b0060090061ff00201600620b00600700604e00200c00620b006006006", - "0x600900604b00200900620b00600200679400200f01600c00900600f006", - "0xc00720b00601000f00704f00201000620b00600700604e00200f00620b", - "0x600600604e00201400620b00600202a00200220b006016006033002016", - "0x601b00620b0060140061ff00201700620b00600c00604e00201500620b", - "0xf00620b00600900604b00200900620b00600200679500201b017015009", - "0x3300201600c00720b00601000f00704f00201000620b00600700604e002", - "0x1500620b00600600604e00201400620b00600202a00200220b006016006", - "0x1701500900601b00620b0060140061ff00201700620b00600c00604e002", - "0x604e00200f00620b00600900604b00200900620b00600200679600201b", - "0x601600603300201600c00720b00601000f00704f00201000620b006007", - "0x604e00201500620b00600600604e00201400620b00600202a00200220b", - "0x79700201b01701500900601b00620b0060140061ff00201700620b00600c", - "0x20b00600700604e00200f00620b00600900617300200900620b006002006", - "0x200220b00601600603300201600c00720b00601000f007798002010006", - "0x20b00600c00604e00201500620b00600600604e00201400620b00600202a", - "0x600200679900201b01701500900601b00620b0060140061ff002017006", - "0x201000620b00600600604e00200f00620b00600900604b00200900620b", - "0x600202a00200220b00601600603300201600c00720b00601000f00704f", - "0x201700620b00600700604e00201500620b00600c00604e00201400620b", - "0x900620b00600200679a00201b01701500900601b00620b0060140061ff", - "0xf00704f00201000620b00600600604e00200f00620b00600900604b002", - "0x1400620b00600202a00200220b00601600603300201600c00720b006010", - "0x140061ff00201700620b00600700604e00201500620b00600c00604e002", - "0x600900659d00200220b00600211e00201b01701500900601b00620b006", - "0x20b0060160060fa00201000f01600920b00600c00659e00200c00900720b", - "0x60020ef00201400620b00601000605300200220b00600f00604d002002", - "0x206500620b0060060060160020c400620b00600200600c00201500620b", - "0x601500604b00211b00620b00601400600f00205400620b00600700615d", - "0x79c00201c01901b01700c20b00602911b0540650c401679b00202900620b", - "0x602a0067a100200220b00600200900202b006a8002a00620b00701c006", - "0x200220b00602e00603300200220b00602c00606100202e02d02c00920b", - "0xfa00204803303000920b00602f00659e00202f00900720b00600900659d", - "0x3900620b00604800601900200220b00603300604d00200220b006030006", - "0x1900937b00203500620b00603500604b00203500620b00603900653c002", - "0x620b0060027a200212000620b0060020ef00203711e00720b00603502d", - "0x937b00210d00620b00610d00604b00212000620b00612000604b00210d", - "0x659e00212400900720b00600900659d00203c03a00720b00610d12011e", - "0x20b00612a00659f00200220b00603e00604d00212a03e07d00920b006124", - "0x604b00212b00620b00612c0061bf00212c00620b00607d006361002002", - "0x900659d00204304100720b00612b03c03a00937b00203c00620b00603c", - "0x60450060fa00204712e04500920b00612d00659e00212d00900720b006", - "0x604b00213100620b00612e0061b200200220b00604700659f00200220b", - "0x900659e00204d13000720b00613104304100937b00204300620b006043", - "0x220b00604e00604d00200220b00604b0060fa00204f04e04b00920b006", - "0x4d00604b00205100620b00613200653c00213200620b00604f006019002", - "0x20b00605104d13000937b00205100620b00605100604b00204d00620b006", - "0x203700620b00603700604b00212f00620b00612f00604b00212f053007", - "0x604b00205800620b0060027a300213305600720b00603712f05300937b", - "0x605813305600937b00205800620b00605800604b00213300620b006133", - "0x13500620b00605b00633200205b00620b00613400633100213413600720b", - "0x13600615d00213700620b00601b00601600205d00620b00601700600c002", - "0x900206105f13705d00c00606100620b00613500621200205f00620b006", - "0x213800620b00602b00633300200220b0060090065bd00200220b006002", - "0x601900615d00213900620b00601b00601600206400620b00601700600c", - "0x73ac00213b06713906400c00613b00620b00613800621200206700620b", - "0x90063ad00200220b00600200900200c006a8100900700720b007006002", - "0x1000620b0060160063ae00200f00620b00600700600c00201600620b006", - "0x201400620b00600202a00200220b006002009002002a8200600202d002", - "0x60150063ae00200f00620b00600c00600c00201500620b0060140063af", - "0x601b00620b0060100067a400201700620b00600f00636e00201000620b", - "0x720b00600900600200937b00200900620b0060070061bf00201b017007", - "0x700601000620b00601600604b00200f00620b00600c00615d00201600c", - "0x6a8300220b00700900674c00200900600720b00600600622700201000f", - "0x20b00600200612c00200220b00600700604d00200220b00600200900200c", - "0x6002009002002a8400600202d00200f00620b00600600674a002016006", - "0x200c79e00201000620b00600279d00200220b00600600674d00200220b", - "0x1400612c00201500620b00601500679f00201501400720b00600c007010", - "0x220b006002009002002a8501700620b0070150067a000201400620b006", - "0x600202d00201900620b00601b00674a00201b00620b006017006228002", - "0x601c00674a00201c00620b0060027a500200220b006002009002002a86", - "0x200f00620b00601900674a00201600620b00601400612c00201900620b", - "0x20650c400700606500620b00600f0067a70020c400620b006016006667", - "0x9002009006a8700220b00700700674c00200700200720b006002006227", - "0x600c00620b00600600674a00200220b00600200674d00200220b006002", - "0x9002016006a8800220b00700600674c00200220b00600200900200c006", - "0x600f00620b00600200674a00200220b0060090067a800200220b006002", - "0x20b00600279d00200220b00600200674d00200220b00600200900200f006", - "0x201400620b00601400679f00201400620b0060090100077ac002010006", - "0x150067a000201500620b00601500679f00201500620b0060160140077ac", - "0x1b00620b00601700622800200220b006002009002002a8901700620b007", - "0x220b006002009002002a8a00600202d00201900620b00601b00674a002", - "0x60190067a700201900620b00601c00674a00201c00620b0060027a5002", - "0x700700674c00200700600720b0060060062270020c40060060c400620b", - "0x74a00200220b00600600674d00200220b006002009002009006a8b00220b", - "0x60090067a800200220b00600200900200c00600600c00620b006002006", - "0x74a00201000620b00600200674a00201600620b0060060067ad00200220b", - "0x600f0067a700200f00620b00601401000774f00201400620b006016006", - "0x900700600c64100201600620b00600c00622400201500600601500620b", - "0xc00200220b00600200900201b017015009a8c01401000f00920b007016", - "0x60650c400760300206500620b00601400604b0020c400620b006002006", - "0x1000620b00601000612b00200f00620b00600f00601600201c01900720b", - "0x67ae00200220b00600200900211b006a8d05400620b00701c00633b002", - "0x620b00602a0067a900202a00620b0060290067af00202900620b006054", - "0x612b00202d00620b00600f00601600202c00620b00601900600c00202b", - "0x202f02e02d02c00c00602f00620b00602b00623500202e00620b006010", - "0x203000620b00600213100200220b00611b00603300200220b006002009", - "0x603303000705b00203300620b00603300604b00203300620b0060027aa", - "0x203500620b00604803900705d00203900620b00600213500204800620b", - "0x600f00601600203700620b00601900600c00211e00620b0060350067ab", - "0x603a00620b00611e00623500210d00620b00601000612b00212000620b", - "0x203c00620b00601b0067b000200220b00600200900203a10d12003700c", - "0x600200600c00207d00620b0061240067a900212400620b00603c0067af", - "0x212c00620b00601700612b00212a00620b00601500601600203e00620b", - "0x70070060020097b200212b12c12a03e00c00612b00620b00607d006235", - "0x20b00600c0067b300200220b00600200900200f016007a8e00c00900720b", - "0x2d00201500620b0060100067b600201400620b00600900600c002010006", - "0xc00201700620b00600f0067b700200220b006002009002002a8f006002", - "0x620b00600223400201500620b0060170067b600201400620b006016006", - "0x77b50020c400620b00601b00604b00201c00620b0060150067b400201b", - "0x2009002054006a9006500620b00701900675a00201900620b0060c401c", - "0x202900620b00611b0067b800211b00620b00606500675b00200220b006", - "0x602a0067bb00202b00620b00601400600c00202a00620b0060290067ba", - "0x620b0060540067c000200220b00600200900202c02b00700602c00620b", - "0x2e00700602f00620b00602d0067bb00202e00620b00601400600c00202d", - "0x220b00600200900200c006a9100900700720b0070060020077c100202f", - "0x160067bc00200f00620b00600700600c00201600620b0060090067c2002", - "0x600202a00200220b006002009002002a9200600202d00201000620b006", - "0x200f00620b00600c00600c00201500620b0060140067bd00201400620b", - "0x60100067be00201700620b00600f00636e00201000620b0060150067bc", - "0x20b00600c00603900200c00620b00600204800201b01700700601b00620b", - "0x2009002014010007a9300f01600720b00700c00600200903500200c006", - "0x1701500720b0070070067bf00201600620b00601600600c00200220b006", - "0x632000201900620b0060170061a600200220b00600200900201b006a94", - "0x620b00601c0063210020c400620b00601500604e00201c00620b006019", - "0x5400620b00600202a00200220b006002009002002a9500600202d002065", - "0x11b0063210020c400620b00601b00604e00211b00620b006054006322002", - "0x20b00600200900202a006a9602900620b00706500607700206500620b006", - "0x1600600c00202b00620b00602900900705b00200220b00600211e002002", - "0x3300620b0060c400604e00203000620b00600f00601600202f00620b006", - "0x2d02c00920b00604803303002f00c78200204800620b00602b00604e002", - "0x5e900200220b006002009002035006a9703900620b00702e0065e800202e", - "0x71200210d00620b00612003711e00971100212003711e00920b006039006", - "0x20b00602d00601600203c00620b00602c00600c00203a00620b00610d006", - "0x20b00600200900207d12403c00900607d00620b00603a0066fd002124006", - "0x601600212a00620b00602c00600c00203e00620b0060350066f9002002", - "0x900212b12c12a00900612b00620b00603e0066fd00212c00620b00602d", - "0x202a00200220b00602a00603300200220b00600211e00200220b006002", - "0x20b00604300671200204300620b0060410090c400971100204100620b006", - "0x6fd00212e00620b00600f00601600204500620b00601600600c00212d006", - "0x211e00200220b00600200900204712e04500900604700620b00612d006", - "0x213100200220b00600900605100200220b00600700605100200220b006", - "0x213000620b00613000604b00213000620b00600213400213100620b006", - "0x4d04b00705d00204b00620b00600213500204d00620b00613013100705b", - "0x13200620b00601000600c00204f00620b00604e0066f900204e00620b006", - "0x5113200900605300620b00604f0066fd00205100620b006014006016002", - "0xc0067c500200c00700720b0060070067c300200220b00600211e002053", - "0x1000620b00600f00631500200f00620b0060160065ee00201600620b006", - "0x1500611b00200220b0060140060c400201501400720b00601000601c002", - "0x720b00601c0190070bf00201c00620b00600900604e00201900620b006", - "0x600c0020c400620b0060070067c500200220b00601b00603300201b017", - "0x620b0060c400631600202a00620b00600600601600202900620b006002", - "0x6500920b00602c02b02a02900c31700202c00620b00601700604e00202b", - "0x200220b00600200900202e006a9802d00620b00711b00607100211b054", - "0x631a00203300620b00603002f00731900203002f00720b00602d006141", - "0x620b00605400601600203900620b00606500600c00204800620b006033", - "0x220b00600200900211e03503900900611e00620b00604800631b002035", - "0x5400601600212000620b00606500600c00203700620b00602e00631c002", - "0x665200203a10d12000900603a00620b00603700631b00210d00620b006", - "0x720b00600900613000200900620b00600700665400200700620b006002", - "0x604e00201400620b00601600604b00200220b00600c00604d00201600c", - "0x601000603300201000f00720b00601501400704f00201500620b006006", - "0x61ff00201b00620b00600f00604e00201700620b00600202a00200220b", - "0x1600603900201600620b00600204800201901b00700601900620b006017", - "0x2015014007a9901000f00720b00701600600200903500201600620b006", - "0x620b00600f00600c00201700620b00600900601b00200220b006002009", - "0x200220b00600200900201c006a9a01901b00720b0070170060db00200f", - "0x60c40061a400206500620b00601b0060990020c400620b0060190061a3", - "0x20b00600202a00200220b006002009002002a9b00600202d00205400620b", - "0x1a400206500620b00601c00609900202900620b00611b0061a500211b006", - "0x20b00602a00600f00202a00620b00606500605300205400620b006029006", - "0x200220b00600200900202c006a9c02b00620b0070540060df00202a006", - "0x620b00602d0061b200202d00620b00602b0061a600200220b00600211e", - "0x3002f00720b00602e00c00700937b00202e00620b00602e00604b00202e", - "0x2f00615d00203700620b00601000601600211e00620b00600f00600c002", - "0x3a00620b00603000604b00210d00620b00602a00600f00212000620b006", - "0x703500679c00203503904803300c20b00603a10d12003711e01679b002", - "0x7d00920b00603c0067a100200220b006002009002124006a9d03c00620b", - "0x12b00620b00612c00623300212c00620b00612a03e07d0097c600212a03e", - "0x3900615d00204300620b00604800601600204100620b00603300600c002", - "0x900204512d04304100c00604500620b00612b0067c700212d00620b006", - "0x4700620b00603300600c00212e00620b0061240067c800200220b006002", - "0x12e0067c700213000620b00603900615d00213100620b006048006016002", - "0x600211e00200220b00600200900204d13013104700c00604d00620b006", - "0x2a0097c600204b00620b00600202a00200220b00602c00603300200220b", - "0x20b00600f00600c00204f00620b00604e00623300204e00620b00604b00c", - "0x7c700205300620b00600700615d00205100620b006010006016002132006", - "0x11e00200220b00600200900212f05305113200c00612f00620b00604f006", - "0x13100200220b00600900606100200220b00600c00604d00200220b006002", - "0x13300620b00613300604b00213300620b00600213400205600620b006002", - "0x13600705d00213600620b00600213500205800620b00613305600705b002", - "0x620b00601400600c00205b00620b0061340067c800213400620b006058", - "0x67c700213700620b00600700615d00205d00620b006015006016002135", - "0xa9e00700620b0070020067c900205f13705d13500c00605f00620b00605b", - "0x60070067b800200220b00600600604d00200220b006002009002009006", - "0x600f00620b0060160067bb00201600620b00600c0067ba00200c00620b", - "0x20b00600213100200220b00600900653400200220b00600200900200f006", - "0x5d00201500620b00600213500201400620b00600601000705b002010006", - "0x601b0067bb00201b00620b0060170067c000201700620b006014015007", - "0x212003900604800201601603900604800201610001900600601900620b", - "0x19b00900700600212003900600200c01603900600200c00200c009007006", - "0x4700f3a500c009007006002120039006048002016016039006048002016", - "0x1656601600c00900700600212003900604800204700f016039006048002", - "0x20470166b100c009007006002120039006002047016016039006002047", - "0x1603900600200c75e00c009007006002120039006002047016016039006", - "0x12003900600200c01603900600200c7fc00900700600212003900600200c", - "0x70060021200390060480020160160390060480020168d4009007006002", - "0xc009007006002120039006048002016016039006048002016a9f00c009", - "0xc00900700600212003900604800204700f01603900604800204700faa0", - "0x600200caa200900700600212003900600200c01603900600200caa1016", - "0x600200c01603900600200caa300900700600212003900600200c016039", - "0x700600212003900600200c01603900600200caa4009007006002120039", - "0x600200caa600900700600212003900600200c01603900600200caa5009", - "0x600200c01603900600200caa700900700600212003900600200c016039", - "0x700600212003900600200c01603900600200caa8009007006002120039", - "0x600200caaa00900700600212003900600200c01603900600200caa9009", - "0x600200c01603900600200caab00900700600212003900600200c016039", - "0x700600212003900600200c01603900600200caac009007006002120039", - "0x600200caae00900700600212003900600200c01603900600200caad009", - "0x600200c01603900600200caaf00900700600212003900600200c016039", - "0x700600212003900600200c01603900600200cab0009007006002120039", - "0x600200cab200900700600212003900600200c01603900600200cab1009", - "0x600200c01603900600200cab300900700600212003900600200c016039", - "0x700600212003900600200c01603900600200cab4009007006002120039", - "0xab600c009007006002120039006048002016016039006048002016ab5009", - "0x9016006002009ab700900700600212003900600200c01603900600200c", - "0x11e03900604800201601403303900604800200fab80070060020c4006002", - "0x39007039006aba006002015009007009007007ab901600c009007006002", - "0xabc00c00900700600212403900600200c014033039006002016abb002015", - "0x212b016007016006abd00900700600212a00600200900907d00600200c", - "0x7033039006048002010abf00700600212d006002009016006002009abe", - "0x9016006002009ac000f01600c00900700600212e039006048002016009", - "0x604800200f00904f033039047006048002014ac100700600212f006002", - "0x1604f03303904700600200fac201000f01600c009007006002124039047", - "0x1600703303904700600200fac301600c00900700600212e039047006002", - "0x6002015009007009054007ac401600c009007006002133039047006002", - "0x200c00905803303900600200fac6006002134016002009016002007ac5", - "0x212a00600200900900c00600200cac701600c009007006002135039006", - "0xc00900700600213503900600200c009033039006002016ac8009007006", - "0x1600c00900700600212e03900604800201600703303900604800200fac9", - "0x700600212e039006048002016007007007007033039006048002015aca", - "0x4800200f007007007033039047006048002015acb01401000f01600c009", - "0x7033039006002016acc01401000f01600c009007006002137039047006", - "0x600200c007033039006002016acd00c00900700600213703900600200c", - "0x213703900600200c007033039006002016ace00c009007006002137039", - "0x900700600213703900600200c007033039006002016acf00c009007006", - "0x600200cad100900700600213703900600200c03303900600200cad000c", - "0x600200c03303900600200cad200900700600213703900600200c033039", - "0x9ad400700600212e039006009033039006009ad3009007006002137039", - "0x212e039006009033039006009ad500700600212e039006009033039006", - "0x5f007ad700900700600213803900600200c03303900600200cad6007006", - "0x2015009007009139007ad9002139006033006ad8006002015009007009", - "0x9065007adb00900700600213b03900600200c03303900600200cada006", - "0x900700600213b03900600200c03303900600200cadc006002015009007", - "0x700906a007ade00900700600213c03900600200c03303900600200cadd", - "0x6002007006007033007ae0006002054006007033007adf006002015009", - "0xc00900700600212e039006048002016009007033039006048002010ae1", - "0xc00900700600213703900600200c00700703303900600200fae200f016", - "0x6007ae400c0090070060020c4006002009007014016006002016ae3016", - "0x2015ae6006002146039006009039006007ae5006002141039006009039", - "0x1600c00900700600213703900604800201605401600704e033039006048", - "0x16ae800900700600214a03900600200c04e03900600200cae701401000f", - "0x7f00600200cae900c00900700600213703900600200c0c7033039006002", - "0x12d006002009007009016006002016aea00900700600212a006002009009", - "0x133039006048002016016007033039006048002010aeb00c009007006002", - "0x2007aed00600214e016002009016002007aec00f01600c009007006002", - "0xaef007006002150006002009016006002009aee00600214f016002009016", - "0x600201600702e03904700600200faf0006002154039006009039006007", - "0xaf2006002141039006009039006007af101600c009007006002133039047", - "0x39047006002010af300900700600212e04700600200c04f04700600200c", - "0x3900600caf400f01600c00900700600215b03904700600201605400702e", - "0x6002016af600216b0060ed006af5009007006002133039006009007168", - "0x916c039006002016af700c00900700600213703900600200c0d0033039", - "0x12a00600200900901600600200caf800c00900700600216d03900600200c", - "0x39006009afa00700600212e03900600902a039006009af9009007006002", - "0x700600212e03900600902c039006009afb00700600212e03900600902b", - "0x6058058007afd00900700600217303900600200c02903900600200cafc", - "0x2016aff00900700600217503900600905802903900600cafe006002054", - "0xf04e00600200cb0000c00900700600213703900600200c0d1033039006", - "0x48002016016007033039006048002010b01009007006002176006002009", - "0x7007033039047006048002015b0200f01600c00900700600216b039006", - "0x200cb0301401000f01600c00900700600216b03904700604800200f007", - "0x200c04d03900600200cb0400900700600213803900600200c02d039006", - "0x39006002016b06006002054006069069007b0500900700600217a039006", - "0x6002054006069069007b0700c00900700600217c03900600200c05f02d", - "0x600cb0900c00900700600213703900600200c0cc033039006002016b08", - "0x3900600906502f03900600cb0a00900700600217d039006009065030039", - "0xb0c00900700600217f03900600900702a03900600cb0b00900700600217e", - "0x6002016b0d00c00900700600213703900600200c0cd033039006002016", - "0x900702b03900600cb0e00c00900700600213703900600200c0d2033039", - "0x213703900600200c0ce033039006002016b0f009007006002180039006", - "0x16b1100900700600218103900600900702c03900600cb1000c009007006", - "0x4d04d002009b1200c00900700600213703900600200c0cf033039006002", - "0x600213703900600200c0c8033039006002016b13007006002154002007", - "0xc00900700600213703900600200c0c9033039006002016b1400c009007", - "0x2016b1600c00900700600213703900600200c0ca033039006002016b15", - "0x900700904d007b1700c00900700600213703900600200c0cb033039006", - "0x200c02f03900600200cb19006002015009007009064007b18006002015", - "0x600213b03900600200c03003900600200cb1a00900700600213b039006", - "0x200c0c6033039006002016b1c006002015009007009069007b1b009007", - "0x700600218e006002009016006002009b1d00c009007006002137039006", - "0x600219000200706504b002009b1f00600218f039006009039006007b1e", - "0x65002009b2100900700600216b03900600200c06503900600200cb20007", - "0x6048002016016007033039006048002010b2200700600213b002007065", - "0x2016016007033039006048002010b2300f01600c009007006002133039", - "0xc03a00704e03900600200fb2400f01600c009007006002133039006048", - "0x6002016b2600219c0060c7006b2501600c00900700600219b039006002", - "0x200900901600600200cb2700c00900700600219d00600200900900919c", - "0x7007002007b290060021a1002007016002007b2800900700600212a006", - "0x702e04700200cb2b0060021a3039006009039006007b2a00600214f002", - "0x60021a50390060091a406503900600cb2c0090070060021a4047002009", - "0x1a604700600200c00704e047006002016b2e0021330061a5006b2d009007", - "0x6b310021ae016007016006b300021200061ad006b2f00c009007006002", - "0x600200c1a4065039006002016b3300212e0061b4006b3200219c0060d0", - "0xb3600219c0060d1006b350021730060e5006b3400c0090070060021b8039", - "0xfb380070060020070470071bd007047009b3700600205400600f00f007", - "0x6002016b3901600c009007006002054048002009007007007007048002", - "0xb3b0021380060ea006b3a00c0090070060021bf03900600200c1a4065039", - "0x1c103900600200c05f1a406503900600200fb3c006002054006015015007", - "0x6b3f00219c0060cd006b3e00219c0060cc006b3d01600c009007006002", - "0x71c5007b4200219c0060cf006b4100219c0060ce006b4000219c0060d2", - "0x60ca006b4500219c0060c9006b4400219c0060c8006b43006002154006", - "0x1c803900600200c1a4065039006002016b4700219c0060cb006b4600219c", - "0x6002015009007009015007b4900213b0060f2006b4800c009007006002", - "0x600213b0060071d4007b4c00218f0061ca006b4b00219c0060c6006b4a", - "0x600200900900900600200cb4e0070060021d600200706500c002009b4d", - "0x2016b500070060020150090090090090090c6009b4f00900700600212a", - "0x90090090090c8009b5100c00900700600219d0060020090090090c7006", - "0xca009b530070060020150090090090090090c9009b52007006002015009", - "0x60020150090090090090090cb009b54007006002015009009009009009", - "0x90090090090cd009b560070060020150090090090090090cc009b55007", - "0xcf009b580070060020150090090090090090ce009b57007006002015009", - "0x60020150090090090090090d0009b59007006002015009009009009009", - "0x90090090090d2009b5b0070060020150090090090090090d1009b5a007", - "0x900700600212e04700600200c0be04700600200cb5c007006002015009", - "0x700600200704700700f007047009b5e006002134002007007002007b5d", - "0xb610060020fa0060fa0fa007b600070060020fa0480070070fa048009b5f", - "0x21f603900600200c1a4065039006002016b620060020fa0060fa0fa007", - "0x7007002007b640070060021f8002007064064002009b6300c009007006", - "0xcb6600900700600219d00600200900900900600200cb650060021f9002", - "0x2015009007009058007b6700900700600212a00600200900907f006002", - "0x7b6900c0090070060021fb04700600200c007016047006002016b68006", - "0xb6a0060021f8006007206" - ], - "contract_class_version": "0.1.0", - "entry_points_by_type": { - "CONSTRUCTOR": [ - { - "function_idx": 32, - "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" - } - ], - "EXTERNAL": [ - { - "function_idx": 4, - "selector": "0x233f7eb4ceacfd7c3e238afaf740a3ffcb352f9844a11df665e97c3b0370b6" - }, - { - "function_idx": 14, - "selector": "0x29ce6d1019e7bef00e94df2973d8d36e9e9b6c5f8783275441c9e466cb8b43" - }, - { - "function_idx": 3, - "selector": "0x7ec457cd7ed1630225a8328f826a29a327b19486f6b2882b4176545ebdbe3d" - }, - { - "function_idx": 29, - "selector": "0x9278fa5f64a571de10741418f1c4c0c4322aef645dd9d94a429c1f3e99a8a5" - }, - { - "function_idx": 12, - "selector": "0x960e70c0b7135476e33b1ba6a72e9b10cb5e261ebaa730d1ed01a0f21c22d3" - }, - { - "function_idx": 6, - "selector": "0xf2f7c15cbe06c8d94597cd91fd7f3369eae842359235712def5584f8d270cd" - }, - { - "function_idx": 27, - "selector": "0xfe80f537b66d12a00b6d3c072b44afbb716e78dde5c3f0ef116ee93d3e3283" - }, - { - "function_idx": 24, - "selector": "0x139562604eb722f14da2b8c1f8f681c99d31226bf9d57f148ec8b4d611f92f8" - }, - { - "function_idx": 1, - "selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad" - }, - { - "function_idx": 0, - "selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775" - }, - { - "function_idx": 10, - "selector": "0x1746f7542cac71b5c88f0b2301e87cd9b0896dab1c83b8b515762697e521040" - }, - { - "function_idx": 21, - "selector": "0x178e27745484c91a084e6a72059b13e3dbebef761175a63f4330bec3ad4aaa0" - }, - { - "function_idx": 7, - "selector": "0x1a1e41f464a235695e5050a846a26ca22ecc27acac54be5f6666848031efb8f" - }, - { - "function_idx": 5, - "selector": "0x1e6d35df2b9d989fb4b6bbcebda1314e4254cbe5e589dd94ff4f29ea935e91c" - }, - { - "function_idx": 31, - "selector": "0x213dfe25e2ca309c4d615a09cfc95fdb2fc7dc73fbcad12c450fe93b1f2ff9e" - }, - { - "function_idx": 25, - "selector": "0x22e07fe65aff1304b57cc48ee7c75a04ce2583b5ef2e7866eb8acbe09be43e2" - }, - { - "function_idx": 17, - "selector": "0x231c71f842bf17eb7be2cd595e2ad846543dbbbe46c1381a6477a1022625d60" - }, - { - "function_idx": 19, - "selector": "0x24fd89f2d8a7798e705aa5361f39154ca43e03721c05188285138f16018955d" - }, - { - "function_idx": 13, - "selector": "0x26e71b81ea2af0a2b5c6bfceb639b4fc6faae9d8de072a61fc913d3301ff56b" - }, - { - "function_idx": 2, - "selector": "0x28420862938116cb3bbdbedee07451ccc54d4e9412dbef71142ad1980a30941" - }, - { - "function_idx": 8, - "selector": "0x289da278a8dc833409cabfdad1581e8e7d40e42dcaed693fa4008dcdb4963b3" - }, - { - "function_idx": 30, - "selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd" - }, - { - "function_idx": 22, - "selector": "0x2a4bb4205277617b698a9a2950b938d0a236dd4619f82f05bec02bdbd245fab" - }, - { - "function_idx": 28, - "selector": "0x2aa20ff86b29546fd697eb81064769cf566031d56b10b8bba2c70125bd8403a" - }, - { - "function_idx": 20, - "selector": "0x2ad0f031c5480fdb7c7a0a026c56d2281dcc7359b88bd9053a8cf10048d44c4" - }, - { - "function_idx": 11, - "selector": "0x309e00d93c6f8c0c2fcc1c8a01976f72e03b95841c3e3a1f7614048d5a77ead" - }, - { - "function_idx": 23, - "selector": "0x31341177714d81ad9ccd0c903211bc056a60e8af988d0fd918cc43874549653" - }, - { - "function_idx": 9, - "selector": "0x36fcbf06cd96843058359e1a75928beacfac10727dab22a3972f0af8aa92895" - }, - { - "function_idx": 15, - "selector": "0x395b662db8770f18d407bbbfeebf45fffec4a7fa4f6c7cee13d084055a9387d" - }, - { - "function_idx": 16, - "selector": "0x3ad2979f59dc1535593f6af33e41945239f4811966bcd49314582a892ebcee8" - }, - { - "function_idx": 26, - "selector": "0x3ce4edd1dfe90e117a8b46482ea1d41700d9d00c1dccbce6a8e2f812c1882e4" - }, - { - "function_idx": 18, - "selector": "0x3ee0bfaf5b124501fef19bbd1312e71f6966d186c42eeb91d1bff729b91d1d4" - } - ], - "L1_HANDLER": [] - }, - "abi": "[{\"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\": \"function\", \"name\": \"__validate__\", \"inputs\": [{\"name\": \"calls\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"external\"}, {\"type\": \"struct\", \"name\": \"core::array::Span::\", \"members\": [{\"name\": \"snapshot\", \"type\": \"@core::array::Array::\"}]}, {\"type\": \"function\", \"name\": \"__execute__\", \"inputs\": [{\"name\": \"calls\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::>\"}], \"state_mutability\": \"external\"}, {\"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\": \"ExecuteFromOutsideImpl\", \"interface_name\": \"lib::outside_execution::IOutsideExecution\"}, {\"type\": \"struct\", \"name\": \"lib::outside_execution::OutsideExecution\", \"members\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"nonce\", \"type\": \"core::felt252\"}, {\"name\": \"execute_after\", \"type\": \"core::integer::u64\"}, {\"name\": \"execute_before\", \"type\": \"core::integer::u64\"}, {\"name\": \"calls\", \"type\": \"core::array::Span::\"}]}, {\"type\": \"enum\", \"name\": \"core::bool\", \"variants\": [{\"name\": \"False\", \"type\": \"()\"}, {\"name\": \"True\", \"type\": \"()\"}]}, {\"type\": \"interface\", \"name\": \"lib::outside_execution::IOutsideExecution\", \"items\": [{\"type\": \"function\", \"name\": \"execute_from_outside\", \"inputs\": [{\"name\": \"outside_execution\", \"type\": \"lib::outside_execution::OutsideExecution\"}, {\"name\": \"signature\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::>\"}], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"is_valid_outside_execution_nonce\", \"inputs\": [{\"name\": \"nonce\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::bool\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_outside_execution_message_hash\", \"inputs\": [{\"name\": \"outside_execution\", \"type\": \"lib::outside_execution::OutsideExecution\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"UpgradeableImpl\", \"interface_name\": \"lib::upgrade::IUpgradeable\"}, {\"type\": \"interface\", \"name\": \"lib::upgrade::IUpgradeable\", \"items\": [{\"type\": \"function\", \"name\": \"upgrade\", \"inputs\": [{\"name\": \"new_implementation\", \"type\": \"core::starknet::class_hash::ClassHash\"}, {\"name\": \"calldata\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::\"}], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"execute_after_upgrade\", \"inputs\": [{\"name\": \"data\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::array::Array::\"}], \"state_mutability\": \"external\"}]}, {\"type\": \"impl\", \"name\": \"ArgentAccountImpl\", \"interface_name\": \"account::interface::IArgentAccount\"}, {\"type\": \"struct\", \"name\": \"account::escape::Escape\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\"}, {\"name\": \"escape_type\", \"type\": \"core::felt252\"}, {\"name\": \"new_signer\", \"type\": \"core::felt252\"}]}, {\"type\": \"struct\", \"name\": \"lib::version::Version\", \"members\": [{\"name\": \"major\", \"type\": \"core::integer::u8\"}, {\"name\": \"minor\", \"type\": \"core::integer::u8\"}, {\"name\": \"patch\", \"type\": \"core::integer::u8\"}]}, {\"type\": \"enum\", \"name\": \"account::escape::EscapeStatus\", \"variants\": [{\"name\": \"None\", \"type\": \"()\"}, {\"name\": \"NotReady\", \"type\": \"()\"}, {\"name\": \"Ready\", \"type\": \"()\"}, {\"name\": \"Expired\", \"type\": \"()\"}]}, {\"type\": \"interface\", \"name\": \"account::interface::IArgentAccount\", \"items\": [{\"type\": \"function\", \"name\": \"__validate_declare__\", \"inputs\": [{\"name\": \"class_hash\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"__validate_deploy__\", \"inputs\": [{\"name\": \"class_hash\", \"type\": \"core::felt252\"}, {\"name\": \"contract_address_salt\", \"type\": \"core::felt252\"}, {\"name\": \"owner\", \"type\": \"core::felt252\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"change_owner\", \"inputs\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\"}, {\"name\": \"signature_r\", \"type\": \"core::felt252\"}, {\"name\": \"signature_s\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"change_guardian\", \"inputs\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"change_guardian_backup\", \"inputs\": [{\"name\": \"new_guardian_backup\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"trigger_escape_owner\", \"inputs\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"trigger_escape_guardian\", \"inputs\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"escape_owner\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"escape_guardian\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"cancel_escape\", \"inputs\": [], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"get_owner\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian_backup\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_escape\", \"inputs\": [], \"outputs\": [{\"type\": \"account::escape::Escape\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_version\", \"inputs\": [], \"outputs\": [{\"type\": \"lib::version::Version\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_name\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_guardian_escape_attempts\", \"inputs\": [], \"outputs\": [{\"type\": \"core::integer::u32\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_owner_escape_attempts\", \"inputs\": [], \"outputs\": [{\"type\": \"core::integer::u32\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_escape_and_status\", \"inputs\": [], \"outputs\": [{\"type\": \"(account::escape::Escape, account::escape::EscapeStatus)\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"Erc165Impl\", \"interface_name\": \"lib::erc165::IErc165\"}, {\"type\": \"interface\", \"name\": \"lib::erc165::IErc165\", \"items\": [{\"type\": \"function\", \"name\": \"supports_interface\", \"inputs\": [{\"name\": \"interface_id\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::bool\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"OldArgentAccountImpl\", \"interface_name\": \"account::interface::IDeprecatedArgentAccount\"}, {\"type\": \"interface\", \"name\": \"account::interface::IDeprecatedArgentAccount\", \"items\": [{\"type\": \"function\", \"name\": \"getVersion\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"getName\", \"inputs\": [], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"supportsInterface\", \"inputs\": [{\"name\": \"interface_id\", \"type\": \"core::felt252\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"isValidSignature\", \"inputs\": [{\"name\": \"hash\", \"type\": \"core::felt252\"}, {\"name\": \"signatures\", \"type\": \"core::array::Array::\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"constructor\", \"name\": \"constructor\", \"inputs\": [{\"name\": \"owner\", \"type\": \"core::felt252\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::AccountCreated\", \"kind\": \"struct\", \"members\": [{\"name\": \"owner\", \"type\": \"core::felt252\", \"kind\": \"key\"}, {\"name\": \"guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"struct\", \"name\": \"core::array::Span::>\", \"members\": [{\"name\": \"snapshot\", \"type\": \"@core::array::Array::>\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::TransactionExecuted\", \"kind\": \"struct\", \"members\": [{\"name\": \"hash\", \"type\": \"core::felt252\", \"kind\": \"key\"}, {\"name\": \"response\", \"type\": \"core::array::Span::>\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeOwnerTriggered\", \"kind\": \"struct\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\", \"kind\": \"data\"}, {\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeGuardianTriggered\", \"kind\": \"struct\", \"members\": [{\"name\": \"ready_at\", \"type\": \"core::integer::u64\", \"kind\": \"data\"}, {\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerEscaped\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianEscaped\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::EscapeCanceled\", \"kind\": \"struct\", \"members\": []}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::GuardianBackupChanged\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_guardian_backup\", \"type\": \"core::felt252\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::AccountUpgraded\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_implementation\", \"type\": \"core::starknet::class_hash::ClassHash\", \"kind\": \"data\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerAdded\", \"kind\": \"struct\", \"members\": [{\"name\": \"new_owner_guid\", \"type\": \"core::felt252\", \"kind\": \"key\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::OwnerRemoved\", \"kind\": \"struct\", \"members\": [{\"name\": \"removed_owner_guid\", \"type\": \"core::felt252\", \"kind\": \"key\"}]}, {\"type\": \"event\", \"name\": \"account::argent_account::ArgentAccount::Event\", \"kind\": \"enum\", \"variants\": [{\"name\": \"AccountCreated\", \"type\": \"account::argent_account::ArgentAccount::AccountCreated\", \"kind\": \"nested\"}, {\"name\": \"TransactionExecuted\", \"type\": \"account::argent_account::ArgentAccount::TransactionExecuted\", \"kind\": \"nested\"}, {\"name\": \"EscapeOwnerTriggered\", \"type\": \"account::argent_account::ArgentAccount::EscapeOwnerTriggered\", \"kind\": \"nested\"}, {\"name\": \"EscapeGuardianTriggered\", \"type\": \"account::argent_account::ArgentAccount::EscapeGuardianTriggered\", \"kind\": \"nested\"}, {\"name\": \"OwnerEscaped\", \"type\": \"account::argent_account::ArgentAccount::OwnerEscaped\", \"kind\": \"nested\"}, {\"name\": \"GuardianEscaped\", \"type\": \"account::argent_account::ArgentAccount::GuardianEscaped\", \"kind\": \"nested\"}, {\"name\": \"EscapeCanceled\", \"type\": \"account::argent_account::ArgentAccount::EscapeCanceled\", \"kind\": \"nested\"}, {\"name\": \"OwnerChanged\", \"type\": \"account::argent_account::ArgentAccount::OwnerChanged\", \"kind\": \"nested\"}, {\"name\": \"GuardianChanged\", \"type\": \"account::argent_account::ArgentAccount::GuardianChanged\", \"kind\": \"nested\"}, {\"name\": \"GuardianBackupChanged\", \"type\": \"account::argent_account::ArgentAccount::GuardianBackupChanged\", \"kind\": \"nested\"}, {\"name\": \"AccountUpgraded\", \"type\": \"account::argent_account::ArgentAccount::AccountUpgraded\", \"kind\": \"nested\"}, {\"name\": \"OwnerAdded\", \"type\": \"account::argent_account::ArgentAccount::OwnerAdded\", \"kind\": \"nested\"}, {\"name\": \"OwnerRemoved\", \"type\": \"account::argent_account::ArgentAccount::OwnerRemoved\", \"kind\": \"nested\"}]}]" - }, - "id": 5 -} \ No newline at end of file diff --git a/rpc/tests/contract/0x03e9b96873987da76121f74a3df71e38c44527d8ce2ad115bcfda3cba0548cc3.json b/rpc/tests/contract/0x03e9b96873987da76121f74a3df71e38c44527d8ce2ad115bcfda3cba0548cc3.json new file mode 100644 index 00000000..a3a0afbf --- /dev/null +++ b/rpc/tests/contract/0x03e9b96873987da76121f74a3df71e38c44527d8ce2ad115bcfda3cba0548cc3.json @@ -0,0 +1,3898 @@ +{ + "sierra_program": [ + "0x1", + "0x5", + "0x0", + "0x2", + "0x6", + "0x3", + "0x46d", + "0x393", + "0x82", + "0x52616e6765436865636b", + "0x800000000000000100000000000000000000000000000000", + "0x436f6e7374", + "0x800000000000000000000000000000000000000000000002", + "0x1", + "0x4b", + "0x2", + "0x22e41cb0c558b90e9e0f97e635b647ea27dba0a52bfa036591f47fce50d9bdc", + "0x1f212135402a17a986f43b71377d5a2bdbe8da74607e7904e71ebcefe98bd35", + "0x753235365f6d756c204f766572666c6f77", + "0x753235365f616464204f766572666c6f77", + "0x6", + "0x100000000", + "0x75313238", + "0x800000000000000700000000000000000000000000000000", + "0x537472756374", + "0x800000000000000700000000000000000000000000000003", + "0x0", + "0x25e2ca4b84968c2d8b83ef476ca8549410346b00836ce79beaf538155990bb2", + "0x800000000000000f00000000000000000000000000000001", + "0x2ee1e2b1b89f8c495f200e4956278a4d47395fe262f27b52e5865c9524c08c3", + "0x456e756d", + "0x3288d594b9a45d15bb2fcb7903f06cdb06b27f0ba88186ec4cfaa98307cb972", + "0x8", + "0x7", + "0x9", + "0x800000000000000000000000000000000000000000000003", + "0xd", + "0x3e", + "0x5449434b5f4c4153545f544f4f5f4c41524745", + "0x10000000000000000", + "0x80000000", + "0x5449434b5f43554d554c41544956455f4c4153545f544f4f5f4c41524745", + "0x800000000000000000000000", + "0x2dc900a232a440f8a03d5a620f3431b4281d06c130ad13dc392de9430b78a92", + "0x11", + "0x800000000000000700000000000000000000000000000002", + "0x12", + "0x16a4c8d7c05909052238a862d8cc3e7975bf05a07b3a69c6b28951083a6d672", + "0x4172726179", + "0x800000000000000300000000000000000000000000000001", + "0x800000000000000300000000000000000000000000000003", + "0x14", + "0x15", + "0x21b901c9d432606b61b702c7702ba3334fbdc8ddf1d3ec415a158a8c54da7ae", + "0x13", + "0x16", + "0x753132385f616464204f766572666c6f77", + "0x753132385f737562204f766572666c6f77", + "0xa99e1b0ff9d47a610510a60e7494dd5174b28b600c30eee35d157e8688e9a6", + "0x753235365f737562204f766572666c6f77", + "0x10", + "0x36", + "0xb", + "0xe", + "0x21", + "0x5", + "0x257bc06a6849b94eff40b2708155574da905e46e3d11f633916a39c895da849", + "0x52657475726e6564206461746120746f6f2073686f7274", + "0x63ecb4395e589622a41a66715a0eac930abc9f0b92c0b1dcda630adfb2bf2d", + "0x14e385bed5543455d7618ba323b6e8ce61624c8351e0025046c1701f2a98bc4", + "0x800000000000000700000000000000000000000000000004", + "0x25", + "0x120d37b0ff9375fcb6c499c1fb38743e6ddc9623df38f9100296a4f7517c1d7", + "0x26", + "0x556e696e697469616c697a6564", + "0x800000000000000200000000000000000000000000000001", + "0x753634", + "0x29", + "0x12867ecd09c884a5cf1f6d9eb0193b4695ce3bb3b2d796a8367d0c371f59cb2", + "0x95fef0b2c9f15aad008ff2f618de4489a74398cad31095f1a68b5388de261", + "0x800000000000000f00000000000000000000000000000003", + "0x2c", + "0x20b393d4ab2c5085871ff37c6137ccd5c5753097d0f77124951ef3b3e870179", + "0x2d", + "0x753132385f6d756c204f766572666c6f77", + "0x7536345f737562204f766572666c6f77", + "0x4f7074696f6e3a3a756e77726170206661696c65642e", + "0x100000000000000000000000000000000", + "0x8000000000000110000000000000000", + "0x553132384d756c47756172616e746565", + "0x4469766973696f6e2062792030", + "0x4e6f6e5a65726f", + "0x800000000000000700000000000000000000000000000001", + "0x2b06a6abfc0e14c496f0d71617249d074c6e7966aaf8de53a52a1ba48da4d23", + "0x2f23416cc60464d4158423619ba713070eb82b686c9d621a22c67bd37f6e0a9", + "0x38", + "0x898ad20ab2823f9c173f1b0d583dbb942cb72ffe0d638ad5b0fac64158fd9b", + "0x3a", + "0x2e7b04674854e7f687dbecfd7c5a966d7ae0e5f7412acc0d49932b92b6ec5de", + "0x3b", + "0x340306c0aa5cc354d36c15be309a07f7fe17229d3e6c407ddf661377abaa0b4", + "0x217ec331be0ba6d70a1f310fa03269bf55470d2a60f37354d92912688f8e2f2", + "0x436f6e747261637441646472657373", + "0x800000000000000700000000000000000000000000000006", + "0x3b40081ab6daf4e5857b4a6da8d601e12227a0a126bd758e4ec4e2a9315dda8", + "0x40", + "0x41", + "0x3f", + "0x1b4ae64beaab6debadae29f3081199c5e009f63106a4a9c1988b3200eb80055", + "0x43", + "0x3808c701a5d13e100ab11b6c02f91f752ecae7e420d21b56c90ec0a475cc7e5", + "0x426f78", + "0x29d7d57c04a880978e7b3689f6218e507f3be17588744b58dc17762447ad0e7", + "0x46", + "0x397ef51c187819cfc617c4a5b9986ade3cd2cced7efd91b53f4f4989a18a71c", + "0x800000000000000700000000000000000000000000000009", + "0x788720f18c44678cc2f5b6865058cb5c1d4cf9603dd64ece81e3f8faddd8f9", + "0x4661696c656420746f20646573657269616c697a6520706172616d202335", + "0x66656c74323532", + "0x2a8e140576760fa492e61115a6b5b96898f3690b9cd2a4ee07adfcb1e3b3f1d", + "0x1061aaa1b1f11973600b2505e14cb8bcfcf124b46f59b8cc1e29f8e5b165d7f", + "0x4c", + "0x1f2f76f0d027bfba0760ce0af953244ea9dc94e9cc16928b64494e3f4f969d6", + "0x4d", + "0x4661696c656420746f20646573657269616c697a6520706172616d202334", + "0x2b046bf19b01b2f676ff952d2420fb181083c68ba544ded10781fe7cf679942", + "0x6f916bead52bd5d8a1aed244d8f12afa719422e53f4dd7ef77ce254f37d91", + "0x50", + "0x4e6f6e20436f6e747261637441646472657373", + "0x434f52455f4f4e4c59", + "0x8afff1426c44eedda6a87f69bfda36caf3bd81df6103e615437fe6f0b7be72", + "0x5e", + "0x45", + "0x536e617073686f74", + "0x1baeba72e79e9db2587cf44fedb2f3700b2075a5e8e39a562584862c4b71f62", + "0x58", + "0x5f", + "0x5a", + "0x1597b831feeb60c71f259624b79cf66995ea4f7e383403583674ab9c33b9cec", + "0x5b", + "0x753332", + "0x80000000000000070000000000000000000000000000000e", + "0x348a62b7a38c0673e61e888d83a3ac1bf334ee7361a8514593d3d9532ed8b39", + "0x59", + "0x5c", + "0x5d", + "0x3342418ef16b3e2799b906b1e4e89dbb9b111332dd44f72458ce44f9895b508", + "0x7d4d99e9ed8d285b5c61b493cedb63976bc3d9da867933d829f49ce838b5e7", + "0x57", + "0x56", + "0x60", + "0x53746f7261676541646472657373", + "0x53746f726167654261736541646472657373", + "0x800000000000000700000000000000000000000000000005", + "0x9284a7a2031921933f261160896133968e25258f050817977d25758cae63a", + "0x2ce6fe7e76836c210da0bde14b39c96645f4e8599c7b68cc87d626a155d765d", + "0x65", + "0x4e4f545f55534544", + "0x4661696c656420746f20646573657269616c697a6520706172616d202333", + "0x282d9246385097df857e9df2a8b4ecc24df18d51d59eab8f7430f7fa10098ff", + "0x252970ec0d0de413bd1345511bce7af89f266141be15ec6422dad9a25b8142e", + "0x800000000000000f00000000000000000000000000000005", + "0x3f1930d296936e80973ececb9f6be997d9990c9444aa25bd21bb9f1a641b4b1", + "0x69", + "0x6a", + "0x6b", + "0x4aff2cc28bbfb699b22ece935efe226c118f5e0ef21b90e3d5fa167997d802", + "0x6c", + "0x11c6d8087e00642489f92d2821ad6ebd6532ad1a3b6d12833da6d6810391511", + "0x1aca6986f0ace45a89f86c77f07afd3139718321ccee932dcb6f1a26dc66d45", + "0x71", + "0x4661696c656420746f20646573657269616c697a6520706172616d202331", + "0x4661696c656420746f20646573657269616c697a6520706172616d202332", + "0x4f7574206f6620676173", + "0x10203be321c62a7bd4c060d69539c1fbe065baa9e253c74d2cc48be163e259", + "0x77", + "0x4275696c74696e436f737473", + "0x53797374656d", + "0x506564657273656e", + "0x9931c641b913035ae674b400b61a51476d506bbe8bba2ff8a6272790aba9e6", + "0x76", + "0x496e70757420746f6f206c6f6e6720666f7220617267756d656e7473", + "0x40023a3314fc994d5fdeab03f774ef73fff5fd32409b32ce0b1faa772b63cd", + "0x26e1d51cb16d5218071e78d83cec380b9fa653e92c9a811156b2e2c204e1dcb", + "0xc522f9a736af45c4c0ba482a9bc9a3c65bee878ffbb53fcea05ea1a8e944a", + "0x4761734275696c74696e", + "0x15e", + "0x7265766f6b655f61705f747261636b696e67", + "0x77697468647261775f676173", + "0x6272616e63685f616c69676e", + "0x73746f72655f74656d70", + "0x66756e6374696f6e5f63616c6c", + "0x3", + "0x656e756d5f6d61746368", + "0x80", + "0xc", + "0x656e61626c655f61705f747261636b696e67", + "0x7f", + "0x7374727563745f636f6e737472756374", + "0x656e756d5f696e6974", + "0x7e", + "0x6a756d70", + "0x64726f70", + "0x7374727563745f6465636f6e737472756374", + "0x61727261795f736e617073686f745f706f705f66726f6e74", + "0x64697361626c655f61705f747261636b696e67", + "0x61727261795f6e6577", + "0x636f6e73745f61735f696d6d656469617465", + "0x7d", + "0x61727261795f617070656e64", + "0x7c", + "0x7b", + "0x81", + "0x7a", + "0x6765745f6275696c74696e5f636f737473", + "0x79", + "0x77697468647261775f6761735f616c6c", + "0x736e617073686f745f74616b65", + "0x78", + "0x75", + "0x74", + "0x73", + "0x72", + "0x647570", + "0x72656e616d65", + "0x753132385f746f5f66656c74323532", + "0x70", + "0x6f", + "0x756e626f78", + "0x6e", + "0x21adb5788e32c84f69a1863d85ef9394b7bf761a0ce1190f826984e5075c371", + "0xf", + "0x6d", + "0x68", + "0x67", + "0x66", + "0x73746f726167655f626173655f616464726573735f636f6e7374", + "0x281a85306374a5ab27f0bbc385296a54bcd314a1948b6cf61c4ea1bc44bb9f8", + "0x73746f726167655f616464726573735f66726f6d5f62617365", + "0x62", + "0x63", + "0x73746f726167655f726561645f73797363616c6c", + "0x6765745f657865637574696f6e5f696e666f5f76325f73797363616c6c", + "0x61", + "0x636f6e74726163745f616464726573735f746f5f66656c74323532", + "0x66656c743235325f737562", + "0x66656c743235325f69735f7a65726f", + "0x54", + "0x55", + "0x53", + "0x52", + "0x51", + "0x4f", + "0x4e", + "0x4a", + "0x73746f726167655f77726974655f73797363616c6c", + "0x49", + "0x48", + "0x63616c6c5f636f6e74726163745f73797363616c6c", + "0x47", + "0x75313238735f66726f6d5f66656c74323532", + "0x626f6f6c5f6e6f745f696d706c", + "0x44", + "0x42", + "0x753132385f6571", + "0x626f6f6c5f6f725f696d706c", + "0x626f6f6c5f616e645f696d706c", + "0x3d", + "0x706564657273656e", + "0xad292db4ff05a993c318438c1b6c8a8303266af2da151aa28ccece6726f1f1", + "0x17", + "0x3c", + "0x7536345f6571", + "0x18", + "0x39", + "0x37", + "0x7536345f6f766572666c6f77696e675f737562", + "0x757063617374", + "0x753235365f69735f7a65726f", + "0x35", + "0x753235365f736166655f6469766d6f64", + "0x753132385f6d756c5f67756172616e7465655f766572696679", + "0x33", + "0x753132385f6f766572666c6f77696e675f737562", + "0x32", + "0x66656c743235325f6d756c", + "0x66656c743235325f616464", + "0x31", + "0x30", + "0x753132385f67756172616e7465655f6d756c", + "0x626f6f6c5f786f725f696d706c", + "0x19", + "0x2f", + "0x1a", + "0x2e", + "0x2b", + "0x616c6c6f635f6c6f63616c", + "0x66696e616c697a655f6c6f63616c73", + "0x73746f72655f6c6f63616c", + "0x1b", + "0x27", + "0x28", + "0x2a", + "0x24", + "0x23", + "0x22", + "0x64", + "0x20", + "0x1f", + "0x1e", + "0x1d", + "0x1c", + "0x646f776e63617374", + "0x753132385f6f766572666c6f77696e675f616464", + "0xa", + "0x4", + "0x1c26", + "0xffffffffffffffff", + "0x9c", + "0x8c", + "0x34", + "0x128", + "0x118", + "0xc6", + "0x109", + "0x101", + "0xf0", + "0xf4", + "0x1e6", + "0x145", + "0x14a", + "0x1d4", + "0x1d0", + "0x1be", + "0x1ab", + "0x16f", + "0x19a", + "0x192", + "0x1d8", + "0x281", + "0x203", + "0x208", + "0x270", + "0x26c", + "0x25c", + "0x24c", + "0x22c", + "0x23f", + "0x274", + "0x399", + "0x29d", + "0x2a2", + "0x387", + "0x383", + "0x372", + "0x360", + "0x2c7", + "0x351", + "0x339", + "0x32e", + "0x322", + "0x316", + "0x30d", + "0x348", + "0x328", + "0x343", + "0x33f", + "0x83", + "0x84", + "0x85", + "0x86", + "0x87", + "0x88", + "0x89", + "0x8a", + "0x8b", + "0x8d", + "0x8e", + "0x8f", + "0x90", + "0x38b", + "0x91", + "0x92", + "0x93", + "0x94", + "0x95", + "0x96", + "0x97", + "0x98", + "0x99", + "0x9a", + "0x9b", + "0x48d", + "0x3b6", + "0x3bb", + "0x47b", + "0x477", + "0x465", + "0x452", + "0x3e1", + "0x3da", + "0x3e6", + "0x43e", + "0x3ff", + "0x42b", + "0x423", + "0x47f", + "0x5f4", + "0x4aa", + "0x4af", + "0x5e2", + "0x5de", + "0x5cd", + "0x4c3", + "0x4c8", + "0x506", + "0x4e2", + "0x4db", + "0x4e7", + "0x4fe", + "0x4f5", + "0x50b", + "0x5bb", + "0x521", + "0x5ab", + "0x592", + "0x586", + "0x57a", + "0x56e", + "0x565", + "0x5a2", + "0x580", + "0x9d", + "0x9e", + "0x9f", + "0xa0", + "0x59d", + "0xa1", + "0xa2", + "0xa3", + "0xa4", + "0xa5", + "0xa6", + "0xa7", + "0x599", + "0xa8", + "0xa9", + "0xaa", + "0xab", + "0xac", + "0xad", + "0xae", + "0xaf", + "0xb0", + "0xb1", + "0xb2", + "0xb3", + "0xb4", + "0xb5", + "0xb6", + "0xb7", + "0xb8", + "0xb9", + "0xba", + "0xbb", + "0xbc", + "0xbd", + "0x5e6", + "0xbe", + "0xbf", + "0xc0", + "0xc1", + "0xc2", + "0xc3", + "0xc4", + "0xc5", + "0xc7", + "0xc8", + "0xc9", + "0x70d", + "0x611", + "0x616", + "0x6fc", + "0x6f8", + "0x6e8", + "0x62b", + "0x630", + "0x66e", + "0x64a", + "0x643", + "0x64f", + "0x666", + "0x65d", + "0x673", + "0x6d8", + "0x68e", + "0x687", + "0x693", + "0x6c8", + "0x6a8", + "0x6bb", + "0x700", + "0x7e2", + "0x729", + "0x72e", + "0x7d1", + "0x7cd", + "0x7bd", + "0x743", + "0x748", + "0x7ad", + "0x763", + "0x75c", + "0x768", + "0x79d", + "0x77d", + "0x790", + "0x7d5", + "0x8e6", + "0x7fe", + "0x803", + "0x8d5", + "0x8d1", + "0x8c1", + "0x818", + "0x81d", + "0x8b1", + "0x838", + "0x831", + "0x83d", + "0x8a1", + "0x857", + "0x850", + "0x85c", + "0x891", + "0x871", + "0x884", + "0x8d9", + "0x992", + "0x902", + "0x907", + "0x981", + "0x97d", + "0x91e", + "0x96f", + "0x961", + "0x95c", + "0x966", + "0x985", + "0x9a9", + "0x9ae", + "0xa5d", + "0xa59", + "0x9be", + "0x9c3", + "0xa4f", + "0xa4a", + "0x9d1", + "0x9d6", + "0xa3f", + "0xa37", + "0x9e7", + "0x9ec", + "0xa2b", + "0xa22", + "0x9ff", + "0xa04", + "0xa16", + "0xa0f", + "0xa1d", + "0xa32", + "0xa45", + "0xa54", + "0xa61", + "0xa6d", + "0xa72", + "0xaaf", + "0xaa9", + "0xa83", + "0xa88", + "0xaa0", + "0xa94", + "0xa99", + "0xab3", + "0xd68", + "0xd5b", + "0xd4d", + "0xd40", + "0xd2f", + "0xd1e", + "0xb1a", + "0xb1e", + "0xb2a", + "0xb2e", + "0xb38", + "0xb3c", + "0xb55", + "0xd16", + "0xb67", + "0xb6b", + "0xb77", + "0xb7b", + "0xb85", + "0xb89", + "0xd06", + "0xca", + "0xcb", + "0xcc", + "0xcd", + "0xce", + "0xcf", + "0xd0", + "0xd1", + "0xcf3", + "0xd2", + "0xd3", + "0xd4", + "0xd5", + "0xd6", + "0xd7", + "0xce6", + "0xd8", + "0xd9", + "0xda", + "0xdb", + "0xdc", + "0xdd", + "0xde", + "0xcae", + "0xdf", + "0xe0", + "0xe1", + "0xe2", + "0xe3", + "0xe4", + "0xca1", + "0xe5", + "0xe6", + "0xe7", + "0xe8", + "0xc6c", + "0xe9", + "0xea", + "0xeb", + "0xec", + "0xed", + "0xee", + "0xef", + "0xf1", + "0xf2", + "0xf3", + "0xf5", + "0xf6", + "0xf7", + "0xf8", + "0xf9", + "0xfa", + "0xfb", + "0xfc", + "0xfd", + "0xfe", + "0xff", + "0x100", + "0x102", + "0x103", + "0x104", + "0xc5d", + "0x105", + "0x106", + "0x107", + "0x108", + "0xc4a", + "0x10a", + "0x10b", + "0x10c", + "0x10d", + "0x10e", + "0xc05", + "0x10f", + "0x110", + "0x111", + "0x112", + "0x113", + "0x114", + "0x115", + "0x116", + "0x117", + "0x119", + "0x11a", + "0x11b", + "0x11c", + "0x11d", + "0x11e", + "0x11f", + "0x120", + "0x121", + "0x122", + "0x123", + "0xc34", + "0x124", + "0x125", + "0x126", + "0xc19", + "0xc26", + "0x127", + "0xc25", + "0x129", + "0xc3d", + "0x12a", + "0x12b", + "0x12c", + "0x12d", + "0x12e", + "0x12f", + "0x130", + "0x131", + "0x132", + "0x133", + "0x134", + "0xc8f", + "0x135", + "0x136", + "0x137", + "0x138", + "0x139", + "0x13a", + "0x13b", + "0x13c", + "0x13d", + "0x13e", + "0x13f", + "0x140", + "0x141", + "0x142", + "0x143", + "0x144", + "0x146", + "0x147", + "0x148", + "0x149", + "0x14b", + "0x14c", + "0x14d", + "0x14e", + "0x14f", + "0x150", + "0x151", + "0x152", + "0x153", + "0x154", + "0x155", + "0x156", + "0x157", + "0x158", + "0x159", + "0x15a", + "0x15b", + "0x15c", + "0x15d", + "0x15f", + "0xc95", + "0x160", + "0x161", + "0x162", + "0x163", + "0x164", + "0x165", + "0x166", + "0x167", + "0xcd1", + "0x168", + "0x169", + "0x16a", + "0x16b", + "0x16c", + "0x16d", + "0x16e", + "0x170", + "0x171", + "0x172", + "0x173", + "0x174", + "0x175", + "0x176", + "0x177", + "0x178", + "0x179", + "0x17a", + "0x17b", + "0x17c", + "0x17d", + "0x17e", + "0x17f", + "0x180", + "0x181", + "0x182", + "0x183", + "0x184", + "0x185", + "0x186", + "0x187", + "0xcda", + "0x188", + "0x189", + "0x18a", + "0x18b", + "0x18c", + "0x18d", + "0x18e", + "0x18f", + "0x190", + "0x191", + "0xd11", + "0x193", + "0x194", + "0x195", + "0x196", + "0x197", + "0x198", + "0x199", + "0xcfd", + "0x19b", + "0x19c", + "0x19d", + "0x19e", + "0x19f", + "0x1a0", + "0x1a1", + "0x1a2", + "0x1a3", + "0x1a4", + "0x1a5", + "0x1a6", + "0x1a7", + "0x1a8", + "0x1a9", + "0x1aa", + "0x1ac", + "0x1ad", + "0x1ae", + "0x1af", + "0x1b0", + "0x1b1", + "0xd70", + "0x1b2", + "0x1b3", + "0x1b4", + "0xe68", + "0xe58", + "0xe4e", + "0xe42", + "0xe30", + "0xe22", + "0xe17", + "0xe06", + "0xdf4", + "0xde2", + "0xde6", + "0xe39", + "0xe5f", + "0xefb", + "0xeee", + "0xee1", + "0xed4", + "0xec7", + "0xebc", + "0xee9", + "0xf07", + "0xf03", + "0xfbc", + "0xf1c", + "0xf21", + "0xfb2", + "0xf2c", + "0xf31", + "0xf39", + "0xf3e", + "0xf73", + "0xf6e", + "0xf4c", + "0xf51", + "0xf64", + "0xf5e", + "0xf7b", + "0xf68", + "0xf76", + "0xfa9", + "0xf83", + "0xf88", + "0xf9e", + "0xf96", + "0xfa4", + "0x11c5", + "0x11ba", + "0x11ac", + "0x1197", + "0x1186", + "0x1174", + "0x10e5", + "0x10d0", + "0x104b", + "0x10b2", + "0x1060", + "0x1075", + "0x1074", + "0x10c3", + "0x109e", + "0x10eb", + "0x1163", + "0x114a", + "0x110b", + "0x110f", + "0x113b", + "0x1130", + "0x11cd", + "0x1396", + "0x1386", + "0x1375", + "0x1364", + "0x1354", + "0x133d", + "0x132d", + "0x1244", + "0x1248", + "0x1254", + "0x1258", + "0x1262", + "0x1266", + "0x1317", + "0x1278", + "0x127c", + "0x1300", + "0x12e8", + "0x12d9", + "0x12ce", + "0x1327", + "0x134a", + "0x1380", + "0x13a5", + "0x13a1", + "0x13be", + "0x13c2", + "0x13d4", + "0x13d8", + "0x13ea", + "0x13ee", + "0x1400", + "0x1404", + "0x1416", + "0x141a", + "0x142c", + "0x1430", + "0x1442", + "0x1446", + "0x1457", + "0x145b", + "0x1508", + "0x14a0", + "0x14a5", + "0x14da", + "0x14d5", + "0x14b3", + "0x14b8", + "0x14cb", + "0x14c5", + "0x14e2", + "0x14cf", + "0x14dd", + "0x14f8", + "0x14f3", + "0x14fc", + "0x1530", + "0x1534", + "0x153d", + "0x1542", + "0x15a4", + "0x1582", + "0x1571", + "0x156a", + "0x157b", + "0x158d", + "0x1591", + "0x159a", + "0x159e", + "0x15b6", + "0x15ba", + "0x15f3", + "0x15d2", + "0x15d8", + "0x15ef", + "0x15e8", + "0x163e", + "0x15fa", + "0x1606", + "0x160c", + "0x1614", + "0x1626", + "0x161e", + "0x16f7", + "0x1638", + "0x1678", + "0x1656", + "0x165c", + "0x1674", + "0x166d", + "0x16c4", + "0x167f", + "0x168b", + "0x1691", + "0x1699", + "0x16ab", + "0x16a3", + "0x16e7", + "0x16be", + "0x16ce", + "0x16dd", + "0x16d8", + "0x1765", + "0x1756", + "0x1751", + "0x1759", + "0x1778", + "0x177b", + "0x17b3", + "0x1789", + "0x178f", + "0x17a6", + "0x179b", + "0x179f", + "0x17cb", + "0x17d1", + "0x17c1", + "0x17c5", + "0x1811", + "0x1806", + "0x1919", + "0x1848", + "0x1837", + "0x185d", + "0x1908", + "0x186e", + "0x1872", + "0x18f3", + "0x187f", + "0x1896", + "0x18df", + "0x18cc", + "0x18a9", + "0x18ad", + "0x18bb", + "0x18d0", + "0x1946", + "0x195e", + "0x196b", + "0x196f", + "0x1979", + "0x1981", + "0x1a87", + "0x1a76", + "0x1996", + "0x199c", + "0x19a3", + "0x19b5", + "0x19ad", + "0x1a66", + "0x19c0", + "0x19c4", + "0x19ce", + "0x19d6", + "0x1a58", + "0x1a49", + "0x19e7", + "0x19ed", + "0x19f5", + "0x1a07", + "0x19ff", + "0x1a3b", + "0x1a2b", + "0x1a16", + "0x1a20", + "0x1a1f", + "0x1a31", + "0x1ad8", + "0x1adc", + "0x1b1d", + "0x1b0e", + "0x1b0a", + "0x1afc", + "0x1b01", + "0x1b11", + "0x1b67", + "0x1b6b", + "0x1bac", + "0x1b9d", + "0x1b99", + "0x1b8b", + "0x1b90", + "0x1ba0", + "0x1c0a", + "0x1bcb", + "0x1c02", + "0x1bd3", + "0x1bd7", + "0x1bfe", + "0x1be7", + "0x1bfb", + "0x1bf3", + "0x1bf9", + "0x1c06", + "0x1c14", + "0x1c1a", + "0x1c21", + "0x1f5", + "0x28f", + "0x3a8", + "0x49c", + "0x603", + "0x71b", + "0x7f0", + "0x8f4", + "0x9a0", + "0xa66", + "0xab8", + "0xd79", + "0xe73", + "0xf10", + "0xfc2", + "0x11d6", + "0x13ae", + "0x145e", + "0x1511", + "0x1549", + "0x15af", + "0x1706", + "0x176e", + "0x17de", + "0x181b", + "0x1930", + "0x1a97", + "0x1b26", + "0x1bb5", + "0xe7dd", + "0x180a00e018028040060240380600a0100180800e0180280400600800800", + "0x800c00a030028130240440800f01c0340380c00a0100180b00e01802804", + "0x281b0060680281900a054090110200600281800a05c0901102c05409014", + "0x380c00a0100181f00e030028040060780380600a0100181d00a07002819", + "0x801a00a030028230240440802200e030028040060840380600a01001820", + "0x800600a0a4140270240500802600a054090250200680282400a05409011", + "0x183000e018028040060bc0282e00a0b40902a02c0b00282b00a0540902a", + "0x281900a06c0183300e018028040060c80380600a0100183100e01802804", + "0x283700a0640281b0060140380c00a0100183600a0d40280400607402834", + "0x183a00e018028040060e40281d00a0640281b0060e00283500a0100181d", + "0x283f00a0540903e0200f4090140200f00380600a0100183b00e01802804", + "0xb04500a10c2100f088090028430840bc0284100a1000902a02c06002824", + "0x902a02c0600284900a0540904802011c090140200600281900a11809011", + "0x380600a0100184d00e018028040061300380600a0100182f00a12c0284a", + "0x2985200e018028040060082885000e0300280400613c0380600a0100184e", + "0x285700a1580902a02c030028150240940805500e0180280400606402854", + "0x285a0240a80b05900a054090250200900282400a114028580240f80802f", + "0x281900a174090110200480380c00a0100185c00e018028040060bc0285b", + "0x28150240440806100a0300280c00a1840286100a1800905f02003c2f024", + "0x28660240f80802f00a194028640240a80b06300a0540902502009002862", + "0x380600a0100181800a1a4028680240440b00600a1503386100a11402845", + "0x181a00a0680281a00a0680281a00a0680281a00a0680286c0241ac0806a", + "0x280600a1c00903e0200900282400a1bc0901102003c3706d00e01802804", + "0x28750240440807400e018028040060600287300a1c80901102c09002871", + "0x380600a0100187800e018028040060600287700a1d80901102c09002824", + "0x28540fa1f0028540ce1ec028540ce018028540a61840287a02409408079", + "0x4208300a20809025020204028540fa200028290501fc0287e0240940802c", + "0x288800a0180280600a0180288700a0300286100a018028860242140800f", + "0x905f0200300284500a0180288a0240f80808700a2240288900a21c0280c", + "0x4781200e22402804006238028540ce0180286100a1840288d00a2300288b", + "0x289400a24c0901102c0300281900a0680282400a2480909102003c4800f", + "0x8098024050080970240500809600e018028040062540380600a01001818", + "0x902a02c0600289d00a054090480200fc0289c00a1240289b00a26809099", + "0x28040060140380600a0100181800a018028a00240440b02f00a27c0289e", + "0x380600a0100182f00a288028a10240a80b02400a0540902502004803806", + "0x902502021c02815024094080a500e018028040062900380600a010018a3", + "0x28ab0240a80b0021540085480f1500bc028a700a2980902a02c01802815", + "0x28af0240440b01800a1c4028ae0240440b0ad00e018028040060bc028ac", + "0x28b60242d4090b40242cc590021620600286200a2c00901102c06002824", + "0x28b90242f05d8b800a2dc5d00500a2e41b0b800a2dc4380500a2d809005", + "0x1200500a308090c1180014028b602401c6000500e2fc3880500a2f85e805", + "0x28c20243140300500a3104380500a30c6000500a2e402807180014038bf", + "0x6400500a31c0300500a3183100500a3083880500a3083480500a3083f805", + "0x2807194014038bf05e014028be056014028be00c014028c900c014028b6", + "0x6780500a2d8090ce194014028b619a014028b6198014028b6196014028b6", + "0x4e80500a2f81f80500a2f84e00500a2f82480500a2f84d80500a2f8090d0", + "0x28b90382e0028b70e2014028b60c4014028b613a014028c213a014028d1", + "0x5600500a2f84380500a2f81600500a3081600500a3445380500a30c69005", + "0x6a00500a31c4380500a3080c00500a3086980500a31c09007194014038bf", + "0x28d7048014028d1144014028c31ac014028b906e2e0028b71aa014028c7", + "0x28d8018014028c20243640600500a3600d00500a3081200500a30c12005", + "0x300500a3706d80500a31c6d00500a31c0d00500a2e41600500a2d80d005", + "0xc00500a2f86e80500a2d83f80500a2d8090071ba014038bf00c014028d8", + "0x28b60c2014028b60c2014028c20243786e80500a2e4028071ba014038bf", + "0x7100500a31c7080500a31c4f80500a3087000500a2e46f8b800a2dc12005", + "0x7380500a31c090e61ca01c028e4128014028c21c6014028b90682e0028b7", + "0x28c311c014028dc1d6014028b60243a8090e91d0014028b6112014028b6", + "0x90ed0c2014028d70243b00300500a3084680500a3084600500a30847005", + "0x1580500a3081780500a30c120b800a2dc7780500a2d87780500a2f8090ee", + "0x28d8198014028d8024014028d81e4014028c71e2014028c71e0014028c2", + "0x38bf1e6014028b602401c7980500e2fc3b80500a2f81600500a36066805", + "0x28b70ee014028b6128014028b60ee014028c21e6014028b900a01c79805", + "0x38bf1ea014028b602401c7a80500e2fc3980500a2f87a00500a31c130b8", + "0xd00500e2fc090f71ec014028c70e6014028c21ea014028b900a01c7a805", + "0x28b61f0014028c21f0014028d11f0014028be02401c0d00500e2fc02807", + "0x90071f6014038bf0fe014028d70243e87c80500a31c170b800a2dc7c005", + "0x38bf0c4014028be0243f07d80500a2e4028071f6014038bf1f6014028b6", + "0x28be0243f40d00500a2d802807174014038bf174014028b602401c5d005", + "0x4600500a2d80280717a014038bf17a014028b602401c5e80500e2fc12005", + "0x28b90f8014028b60562e0028b70c4014028d71de014028d70f8014028dc", + "0x2480500a3084d80500a3084e80500a30c4e80500a35c3880500a30c7f005", + "0x28c30ca014028c30582e0028b71fe014028b61fe014028be138014028c2", + "0x910103a014028c70244002280500a3083e00500a30c0c80500a30831805", + "0x91050244108180500a31c3100500a30c7780500a308178b800a2dc09102", + "0x910808a014028d70b2014028c30b6014028c320e014028b920c2e0028b7", + "0x910c216014028c7018014028d70ae014028c3214014028b92122e0028b7", + "0x38bf21e014028c70244380c80500a2d80c80500a2f80600508a0140390d", + "0x28b6224014028c7032014028c3024444091101a4014028b600a01c69005", + "0x28d8230014028c722e014028c702445809115228014028c702444c06005", + "0x91190f8014028c20ca014028c202401c6900500e2fc5380500a2f865805", + "0x28be00a01c6b00500e2fc8e00500a31c6b00500a2d88d8b800a2dc0911a", + "0x28b923a2e0028b70b2014028b60b2014028be02401c6b00500e2fc51005", + "0x28c21c0014028b602401c7000500e2fc4f80500a2f82580500a30c8f005", + "0x8f80500e2fc8f80500a2d80900723e014038bf00a01c7000500e2fc1f805", + "0x38bf1c6014028b602401c7180500e2fc4a00500a2f88f80500a2e402807", + "0x91210480140292008a014029200b6014028c208a014028b600a01c71805", + "0x28b707e014028d1034014028d1128014028c308a0140292204801402922", + "0x2080500a3082480500a3601f80500a3602080500a30c9200500a2e4918b8", + "0x28d80c4014028d11f0014028c31f0014028d724c014028c224a014028c2", + "0x7f00500e2fc3280500a2f83180500a2f89380500a31c7780500a30c30805", + "0x28c71fe014028c300a01c7f00500e2fc9400500a31c7f00500a2d809007", + "0x9600500a31c1a80500a2d89580500a31c0d00500a35c9500500a2d894805", + "0x9700500a31c9680500a31c8380500a2d80280720e014038bf032014028d7", + "0x28c702401c8380500e2fc2d80500a2f8228050180140393025e014028c7", + "0x38bf214014028b602401c8500500e2fc2b80500a2f88e80500a31c91805", + "0x2580500a2f8978b800a2dc8480500a31c09131236014028c700a01c85005", + "0x28b7254014028c200a01c8f00500e2fc8f00500a2d80900723c014038bf", + "0x28b600a01c9200500e2fc1300500a2d81700500a30c8300500a2e4970b8", + "0x9200500e2fc2080500a2f80300500a35c1300500a30c968b800a2dc92005", + "0x1b00500a31c5d80500a31c1b80500a31c6f80500a31c1a00500a31c09007", + "0x28c7170014028c7266014028c7072014028c7264014028c32582e0028b7", + "0x38bf20c014028b602401c8300500e2fc1700500a2f81300500a2f803805", + "0x9a80502404809134264014028b6264014028be00a014028c700a01c83005", + "0x901226a014090070240600c80726c0301c80726a01c0380500e01409012", + "0x9a8052660e4038390244cc0293500a4cc029330240e40293500a0e4028b8", + "0x901226a01409007024070029371760149a80706c0140601206c4c80d0b8", + "0x9a805264068038190244c80293500a4c8029330240680293500a068028b8", + "0x902600a4ac1200526a01c1a0050340480913500a0480c01206837c1b8b8", + "0x90df00a4d4028df00a4cc0903700a4d40283700a2e00901226a01409007", + "0x910600a46c1780526a01c160050340481602b05c2e09a8051be0dc03819", + "0x8d80526a0148480506c0488480526a0141782400e4c80901226a01409007", + "0x9a8052360145d8122460149a8050560149981223a0149a80505c0145c012", + "0x901226a0141200506e0480913500a048038120240fc0281203804897805", + "0x293500a0ac029330244740293500a0b8028b80244b80293500a418028df", + "0x901226a014090070240481f8050240700912f00a4d40292e00a2ec09123", + "0x293500a37c029330244740293500a0dc028b80244b40293500a098028df", + "0x38122560146692c00a4d40392f00a0d00912f00a4d40292d00a2ec09123", + "0x8392825201c9a807070014130120700149a805246014120120244d402812", + "0x901226a014948050560480913500a048170120244d40281200e04893805", + "0x848120244d4028bb00a4180901226a0149600505e0480913500a4a00282c", + "0x918120820149a8050820148e8120820149a80502446c0903f00a4d402812", + "0x293500a4909280725c0489280526a0140912f0244900293500a1041f807", + "0x291d00a2e00901200a4d40281200a4b00912600a4d40284500a4b409045", + "0x29290242e00293500a2e0028380240300293500a0300292b02447402935", + "0x938050560480913500a0480381224c2e00611d0240e40292600a4d402926", + "0x8e8b807e0488f80526a0148f80524e0488f80526a014091280240489a805", + "0x9a8050240b80901226a014090070244708f00713612c2480726a01c8f80c", + "0x8a00526a0140912502445c0293500a048920122300149a80502410409012", + "0x9c00523e0489c00526a0148911422e460999260244480293500a04822812", + "0x958120920149a8050920145c0120244d40290f00a1240903521e01c9a805", + "0x5c00526a0145c0050700480900526a014090052580482580526a01425805", + "0x904b0920648e0122580149a8052580148f0121760149a80517601425812", + "0x28eb20e0149a8070b60148c0120b6164850572160e49a8052582ec1a8b8", + "0x3180526a0148380522e0480e80526a014091090240489a80502401c09103", + "0x310052240487f86200e4d40286100a4500906100a4d40286303a01c91812", + "0x28350243f80293500a1940290f0241940293500a3fc029380240489a805", + "0x910b00a4d40290b00a2e00910a00a4d40290a00a4b00907c00a4d4028fe", + "0x293500a1f0029290241640293500a1640283802415c0293500a15c0292b", + "0x3480526a0148180525a0480913500a048038120f81642b90b2140e40287c", + "0x9a8050ae014958122160149a8052160145c0122140149a80521401496012", + "0x8590a0720143480526a014348052520482c80526a0142c8050700482b805", + "0x913500a4b00282f0240489a8050240b80901226a014090070241a42c857", + "0x90f900a4d4028122160487d80526a014091090240489a80517601483012", + "0x293500a048978121f00149a8051f23ec039230243e40293500a3e40291d", + "0x90052580483880526a0140300525a0480300526a0147c0f600e4b8090f6", + "0x1c0122380149a8052380149581223c0149a80523c0145c0120240149a805", + "0x90711704708f0120720143880526a014388052520485c00526a0145c005", + "0x918052140480913500a4ac028570240489a8050240b80901226a01409007", + "0x9a8050241640907300a4d4028122120480913500a2ec029060240489a805", + "0x912f0243d00293500a3d4398072460487a80526a0147a80523a0487a805", + "0x90f200a4d4028f300a4b4090f300a4d4028f40ee01c970120ee0149a805", + "0x293500a0300292b0244740293500a474028b80240480293500a0480292c", + "0x611d0240e4028f200a4d4028f200a4a4090b800a4d4028b800a0e00900c", + "0x913500a4c80290a0240489a8050380142b8120244d40281200e048790b8", + "0x7780526a0147780523a0487780526a0140905b0243c40293500a04884812", + "0x28f011a01c9701211a0149a8050244bc090f000a4d4028ef1e201c91812", + "0x28b80240480293500a0480292c0241fc0293500a2300292d02423002935", + "0x90b800a4d4028b800a0e00900c00a4d40280c00a4ac0901a00a4d40281a", + "0x850120244d40281200e0483f8b80180680903900a1fc0293500a1fc02929", + "0x291d0242040293500a0488581210e0149a8050244240901226a01499805", + "0x908800a4d40281225e0484180526a0144088700e48c0908100a4d402881", + "0x9a805024014960120f60149a805112014968121120149a8051062200392e", + "0x5c0050700480c00526a0140c0052560480c80526a0140c80517004809005", + "0x90120241ec5c0180320481c8050f60149a8050f6014948121700149a805", + "0x9a80502401c0901803201c9c80c07201c9a80700e014038050240489a805", + "0x9983900e0e40913300a4d40293300a4cc0903900a4d40283900a2e009012", + "0x9a80502401c0901c00a4e85d80526a01c1b0050180481b1320342e09a805", + "0x902400a4ec1a0df00e4d40383700a0980903700a4d40293200a09009012", + "0x29060240489a805068014160120244d4028df00a0ac0901226a01409007", + "0x1700523a0481700526a0140911b0240980293500a048848120244d4028bb", + "0x970120580149a8050244bc0902b00a4d40282e04c01c9181205c0149a805", + "0x293500a0480292c0244180293500a0bc0292d0240bc0293500a0ac16007", + "0x28b800a0e00900c00a4d40280c00a4ac0901a00a4d40281a00a2e009012", + "0x281200e048830b80180680903900a4180293500a418029290242e002935", + "0x9a805212014938122120149a8050244a00901226a0141200505604809135", + "0x9a80502401c0912f24601c9e11d23601c9a8072120300d0b807e04884805", + "0x9600526a014091250244b40293500a0489201225c0149a80502410409012", + "0x1c00523e0481c00526a0149592c25a4b8999260244ac0293500a04822812", + "0x958122360149a8052360145c0120244d40292900a1240912825201c9a805", + "0x5c00526a0145c0050700480900526a014090052580488e80526a0148e805", + "0x1f9270724d4028bb2502e00911d236030838121760149a80517601425812", + "0x848120244d40281200e0489300527a1140293500e4940290302449492041", + "0x8f04b00e4d40284900a18c0904900a4d40284500a0740911f00a4d402812", + "0x9a805238014310122384780393500a478028610240489a8050960141b812", + "0x8a0051fc0488a00526a0148c0050ca0480913500a45c028ff02445c8c007", + "0x1a90f00e4d40291e00a1880913800a4d40291223e01c918122240149a805", + "0x901226a0140901802442c0293500a0d4028690240489a80521e0143e012", + "0x281200e0488500527c15c0293500e42c028f90244e00293500a4e0028fb", + "0x9a8050b20148e8120b20149a8050243e00901226a0142b8050ae04809135", + "0x901226a014850050ae0480913500a048038120244fc028120380482d805", + "0x918120244d40281205c0482d80526a0148380523a0488380526a014090f6", + "0x9a80503a014890120c60740393500a40c0291402440c0293500a16c9c007", + "0x286200a0d40906200a4d40286100a43c0906100a4d40286300a4e009012", + "0x292b02449c0293500a49c028b80241040293500a1040292c0243fc02935", + "0x28ff00a4d4028ff00a4a40912400a4d40292400a0e00903f00a4d40283f", + "0x960120ca0149a80524c014968120244d40281200e0487f92407e49c20839", + "0x1f80526a0141f8052560489380526a014938051700482080526a01420805", + "0x9203f24e1041c8050ca0149a8050ca014948122480149a8052480141c012", + "0x90fe00a4d4028122120480913500a2ec029060240489a80502401c09065", + "0x293500a1f07f0072460483e00526a0143e00523a0483e00526a0140910b", + "0x28f900a4b4090f900a4d4028691f601c970121f60149a8050244bc09069", + "0x292b02448c0293500a48c028b80240480293500a0480292c0243e002935", + "0x28f800a4d4028f800a4a4090b800a4d4028b800a0e00912f00a4d40292f", + "0x290a0240489a8050380142b8120244d40281200e0487c0b825e48c09039", + "0x300523a0480300526a0140905b0243d80293500a048848120244d402932", + "0x970120e60149a8050244bc0907100a4d4028061ec01c9181200c0149a805", + "0x293500a0480292c0243d00293500a3d40292d0243d40293500a1c439807", + "0x28b800a0e00900c00a4d40280c00a4ac0901a00a4d40281a00a2e009012", + "0x281200e0487a0b80180680903900a3d00293500a3d0029290242e002935", + "0x293500a048858120ee0149a8050244240901226a0149980521404809135", + "0x281225e0487900526a0147987700e48c090f300a4d4028f300a474090f3", + "0x960121e00149a8051de014968121de0149a8051e43c40392e0243c402935", + "0xc00526a0140c0052560480c80526a0140c8051700480900526a01409005", + "0x5c0180320481c8051e00149a8051e0014948121700149a8051700141c012", + "0x901803201ca000c07201c9a80700e014038050240489a805024048090f0", + "0x28b80240489a8050240600901a00a4d40293300a0900901226a01409007", + "0x9a80502401c090bb00a5041b13200e4d40381a00a0980903900a4d402839", + "0x283700a1cc0903700a4d40281c00a1c40901c00a4d40283600a01809012", + "0x901c0240900293500a37c028f40240d00293500a4c8028f502437c02935", + "0x9a80504c0147981204c0149a8050241dc0901226a01409007024048a1005", + "0x120051e40481200526a014170051e80481a00526a0145d8051ea04817005", + "0x1780726a01c1583900e3c40901226a014090070240b0029430560149a807", + "0x178051700488d80526a0141a0052700480913500a04803812212014a2106", + "0x9191d1704d40291b05e01c1c8122360149a8052360149981205e0149a805", + "0x8e8051700480913500a0480381225a014a292e00a4d40392f00a0300912f", + "0x9592c1704d40292323a01c0c8122460149a8052460149981223a0149a805", + "0x958050480480913500a04803812250014a312900a4d40383800a06809038", + "0x913500a04803812248014a384107e01c9a80724e0141301224e0149a805", + "0x1b8120244d40284100a0b00901226a0141f8050560480913500a04817012", + "0x91090240489a80520c014778120244d40292e00a4180901226a01494805", + "0x39230241140293500a1140291d0241140293500a0488d81224a0149a805", + "0x2480526a0149311f00e4b80911f00a4d40281225e0489300526a01422925", + "0x9a8052580145c0120240149a805024014960120960149a80509201496812", + "0x258052520485c00526a0145c0050700480600526a0140600525604896005", + "0x9a8050240b80901226a0140900702412c5c00c2580481c8050960149a805", + "0x293500a478029270244780293500a048940120244d40292400a0ac09012", + "0x913500a0480381222845c039482304700393500e4780612c1700fc0911e", + "0x910f00a4d40281224a0489c00526a014091240244480293500a04820812", + "0x291c00a2e00910b00a4d40283521e4e08913324c0481a80526a01409045", + "0x28380240480293500a0480292c0244600293500a4600292b02447002935", + "0x912e00a4d40292e00a12c0910600a4d40290600a3c0090b800a4d4028b8", + "0x2b83926a0149492e20c42c5c0122304700c08c0244a40293500a4a40288d", + "0x901226a01409007024074029492060149a80720e0143f81220e16c2c90a", + "0x3106100e4d40286300a4500906300a4d4028122120480913500a40c02887", + "0x293500a3fc0290f0243fc0293500a188029380240489a8050c201489012", + "0x285700a2e00905900a4d40285900a4b0090fe00a4d40286500a0d409065", + "0x292902416c0293500a16c028380244280293500a4280292b02415c02935", + "0xe80525a0480913500a048038121fc16c850570b20e4028fe00a4d4028fe", + "0x958120ae0149a8050ae0145c0120b20149a8050b2014960120f80149a805", + "0x3e00526a0143e0052520482d80526a0142d8050700488500526a01485005", + "0x830120244d40292900a0dc0901226a014090070241f02d90a0ae1641c805", + "0x910b0241a40293500a048848120244d40290600a3bc0901226a01497005", + "0x90f900a4d4028fb0d201c918121f60149a8051f60148e8121f60149a805", + "0x293500a3d80292d0243d80293500a3e47c00725c0487c00526a0140912f", + "0x291400a4ac0911700a4d40291700a2e00901200a4d40281200a4b009006", + "0x903900a0180293500a018029290242e00293500a2e00283802445002935", + "0x9a8052500142b8120244d40281205c0480913500a0480381200c2e08a117", + "0x913500a418028ef0240489a80525c014830120244d40292b00a42809012", + "0x3980526a0143980523a0483980526a014090810241c40293500a04884812", + "0x28f51e801c970121e80149a8050244bc090f500a4d4028730e201c91812", + "0x28b80240480293500a0480292c0243cc0293500a1dc0292d0241dc02935", + "0x90b800a4d4028b800a0e00900c00a4d40280c00a4ac0912c00a4d40292c", + "0x170120244d40281200e048798b80184b00903900a3cc0293500a3cc02929", + "0x918052140480913500a418028ef0240489a80525a0142b8120244d402812", + "0x28f100a474090f100a4d4028120b20487900526a014091090240489a805", + "0x392e0243c00293500a048978121de0149a8051e23c8039230243c402935", + "0x900526a014090052580484600526a0144680525a0484680526a014778f0", + "0x9a8051700141c0120180149a8050180149581223a0149a80523a0145c012", + "0x9a80502401c0908c1700308e8120720144600526a014460052520485c005", + "0x914a00a0480e0120fe0149a8052120145c0120244d40283400a0ac09012", + "0x5c0120244d40283400a0ac0901226a014160050ae0480913500a04803812", + "0x905b02421c0293500a048848120244d40281205c0483f80526a0141c805", + "0x908300a4d40288110e01c918121020149a8051020148e8121020149a805", + "0x293500a2240292d0242240293500a20c4400725c0484400526a0140912f", + "0x280c00a4ac0907f00a4d40287f00a2e00901200a4d40281200a4b00907b", + "0x903900a1ec0293500a1ec029290242e00293500a2e00283802403002935", + "0x9a8050244240901226a014998052140480913500a048038120f62e00607f", + "0x4708000e48c0908e00a4d40288e00a4740908e00a4d40281221604840005", + "0x968121d00149a8051d639c0392e02439c0293500a048978121d60149a805", + "0xc80526a0140c8051700480900526a014090052580489500526a01474005", + "0x9a805254014948121700149a8051700141c0120300149a80503001495812", + "0x9a80700a048038050240489a8050240480912a1700600c81207201495005", + "0x901800a4d4028b800a0900901226a01409007024064060072960e499807", + "0x9901a00e4d40381800a0980913300a4d40293300a2e00901226a01409018", + "0x28bb00a1c4090bb00a4d40293200a0180901226a014090070240d80294c", + "0x28f402437c0293500a068028f50240dc0293500a0700287302407002935", + "0x9a8050241dc0901226a01409007024048a68050240700903400a4d402837", + "0x130051e80486f80526a0141b0051ea0481300526a014120051e604812005", + "0x901226a014090070240ac0294e05c0149a807068014790120680149a805", + "0x178051de0480913500a0480381220c014a782f05801c9a80705c4cc038f1", + "0x29330240b00293500a0b0028b80244240293500a37c029380240489a805", + "0x9a807246014060122464748d8b826a0148482c00e0e40910900a4d402909", + "0x8d8051700480913500a4bc029060240489a80502401c0912e00a54097805", + "0x9612d1704d40291d23601c0c81223a0149a80523a014998122360149a805", + "0x1c00506e0480913500a04803812252014a883800a4d40392b00a0680912b", + "0x295207e49c0393500e4a0028260244a00293500a4b0028240240489a805", + "0x160120244d40292700a0ac0901226a0140902e0240489a80502401c09041", + "0x291d0244940293500a0488d8122480149a8050244240901226a0141f805", + "0x912600a4d40281225e0482280526a0149292400e48c0912500a4d402925", + "0x9a80525a0145c0120920149a80523e0149681223e0149a80508a4980392e", + "0x248052520480380526a014038050700481c80526a0141c80525604896805", + "0x913500a048170120244d40281200e048248070724b4998050920149a805", + "0x2580526a0142580524e0482580526a014091280240489a80508201415812", + "0x901226a0140900702445c8c0072a64708f00726a01c2583925a2e01f812", + "0x911200a4d40291200a4740911200a4d4028121060488a00526a01409109", + "0x9a80527043c0392e02443c0293500a048978122700149a80522445003923", + "0x8e0052560488f00526a0148f0051700488580526a0141a80525a0481a805", + "0x998052160149a8052160149481200e0149a80500e0141c0122380149a805", + "0x9a80502442c0905700a4d4028122120480913500a0480381221601c8e11e", + "0x912f0241640293500a4282b8072460488500526a0148500523a04885005", + "0x910300a4d40290700a4b40910700a4d4028590b601c970120b60149a805", + "0x293500a01c0283802445c0293500a45c0292b0244600293500a460028b8", + "0x901226a0140900702440c039172304cc0290300a4d40290300a4a409007", + "0x91090240489a805258014850120244d40292900a15c0901226a0140902e", + "0x392302418c0293500a18c0291d02418c0293500a0484081203a0149a805", + "0x7f80526a0143086200e4b80906200a4d40281225e0483080526a0143181d", + "0x9a8050720149581225a0149a80525a0145c0120ca0149a8051fe01496812", + "0x1c92d2660143280526a014328052520480380526a014038050700481c805", + "0x901226a014970050ae0480913500a048170120244d40281200e04832807", + "0x8e8120f80149a805024164090fe00a4d4028122120480913500a4740290a", + "0x7d80526a0140912f0241a40293500a1f07f0072460483e00526a0143e005", + "0x291b00a2e0090f800a4d4028f900a4b4090f900a4d4028691f601c97012", + "0x292902401c0293500a01c028380240e40293500a0e40292b02446c02935", + "0x28df00a0ac0901226a014090070243e0038392364cc028f800a4d4028f8", + "0x913500a04803812024550028120380487b00526a0148300517004809135", + "0x7b00526a014998051700480913500a37c0282b0240489a8050560142b812", + "0x8e8120e20149a80502416c0900600a4d4028122120480913500a04817012", + "0x7a80526a0140912f0241cc0293500a1c4030072460483880526a01438805", + "0x28f600a2e00907700a4d4028f400a4b4090f400a4d4028731ea01c97012", + "0x292902401c0293500a01c028380240e40293500a0e40292b0243d802935", + "0x28b800a4280901226a014090070241dc038391ec4cc0287700a4d402877", + "0x9a8051e40148e8121e40149a80502442c090f300a4d40281221204809135", + "0x7780725c0487780526a0140912f0243c40293500a3c87980724604879005", + "0x900c00a4d40280c00a2e00908d00a4d4028f000a4b4090f000a4d4028f1", + "0x293500a2340292902401c0293500a01c028380240640293500a0640292b", + "0x1c80726a01c0380500e0140901226a01409012024234038190184cc0288d", + "0x90180240680293500a4cc028240240489a80502401c0901803201caa80c", + "0x295606c4c80393500e068028260240e40293500a0e4028b80240489a805", + "0x293500a070028710240700293500a0d8028060240489a80502401c090bb", + "0x28df00a3d00903400a4d40293200a3d4090df00a4d40283700a1cc09037", + "0x1300526a014090770240489a80502401c090122ae0140901c02409002935", + "0x9a80505c0147a0120680149a8051760147a81205c0149a80504c01479812", + "0x38f10240489a80502401c0902c00a5601580526a01c120051e404812005", + "0x9a80520c014778120244d40281200e048848052b24181780726a01c15839", + "0x291b00a4cc0902f00a4d40282f00a2e00911b00a4d40283400a4e009012", + "0x9700526a01c978050180489792323a2e09a8052360bc0383902446c02935", + "0x292300a4cc0911d00a4d40291d00a2e00901226a014090070244b40295a", + "0x9480526a01c1c0051120481c12b2582e09a8052464740388802448c02935", + "0x9a805256014120120244d40292900a1ec0901226a014090070244a00295b", + "0x170120244d40281200e048920052b81041f80726a01c9380504c04893805", + "0x9700520c0480913500a1040282c0240489a80507e014158120244d402812", + "0x284500a4740904500a4d4028122360489280526a014091090240489a805", + "0x392e02447c0293500a0489781224c0149a80508a4940392302411402935", + "0x900526a014090052580482580526a0142480525a0482480526a0149311f", + "0x9a8051700141c0120180149a805018014958122580149a8052580145c012", + "0x9a80502401c0904b170030960120720142580526a014258052520485c005", + "0x911e00a4d4028122500480913500a4900282b0240489a8050240b809012", + "0x8a11700e5748c11c00e4d40391e0184b05c03f0244780293500a47802927", + "0x913800a4d40291200a2380911200a4d4028121000480913500a04803812", + "0x9c00526a0149c0051d00488780526a014878051ce0488780526a014090eb", + "0xaf0572160d45c13500e4e0878b82304cc950122380149a8052380145c012", + "0x1a8052560482b80526a0142b80523a0480913500a048038120b6164850b8", + "0x8190700e4d40385723801c788122160149a8052160141c01206a0149a805", + "0x293500a41c028b80240489a8050240600901226a014090070240740295f", + "0x9a80502401c090fe0ca3fc5c1600c4184318b826a01c8583500e25009107", + "0x287c00a3840907c00a4d40286200a3880906200a4d40286200a38c09012", + "0x901226a0147d8051380480913500a1a40289b0243d87c0f91f61a41c935", + "0x900600a4d4028f900a27c0901226a0147b00513a0480913500a3e0028ef", + "0x9a80500c0148e8120e60149a8050e20144f8120e240c0393500a40c028e0", + "0x292b0243d40293500a3d40291d0243d40293500a1cc030071ba04803005", + "0x29610244d4038f500a36c0906100a4d40286100a0e00906300a4d402863", + "0x920120ee0149a8050241040901226a0140902e0240489a80502401c090f4", + "0x999260243c40293500a048228121e40149a805024494090f300a4d402812", + "0x9a80520e0145c0121e00149a8052060146d0121de0149a8051e23c879877", + "0x308050700480900526a014090052580483180526a0143180525604883805", + "0x6b01225c0149a80525c014258121e00149a8051e0014510120c20149a805", + "0x9a8071020143f81210221c3f88c11a0e49a80525c3c07786102418c83819", + "0x28122120480913500a20c028870240489a80502401c0908800a58841805", + "0x29380240489a8050f6014890121001ec0393500a2240291402422402935", + "0x90e700a4d4028eb00a0d4090eb00a4d40288e00a43c0908e00a4d402880", + "0x293500a2300292b0242340293500a234028b80241fc0293500a1fc0292c", + "0x4608d0fe0e4028e700a4d4028e700a4a40908700a4d40288700a0e00908c", + "0x28e800a3500912a1d001c9a8051100146a8120244d40281200e04873887", + "0x460052560487180526a014468051700484a00526a0143f80525804809135", + "0xe0121360149a8052540147d8121c20149a80510e0141c0121c40149a805", + "0x292e00a4180901226a0147a0051a60480913500a0480381202458c02812", + "0x293500a048560121380149a8050244240901226a014818051de04809135", + "0x318052560484f80526a0144e89c00e48c0909d00a4d40289d00a4740909d", + "0xe0121b60149a80513e0147d8121ba0149a8050c20141c0121c00149a805", + "0x290300a3bc0901226a0149700520c0480913500a0480381202459002812", + "0x7f0051f60486e80526a014328050700487000526a0147f80525604809135", + "0x700052560486d00526a014838051700480913500a048170121b60149a805", + "0xe0121aa0149a8051b60147d8121ac0149a8051ba0141c0121440149a805", + "0x9a8050244240901226a0149700520c0480913500a0480381202459402812", + "0x698d400e48c090d300a4d4028d300a474090d300a4d40281214e0486a005", + "0x1c0121a40149a80506a0149581214e0149a80503a0145c0121580149a805", + "0x3812024598028120380486680526a014560051f60486780526a01485805", + "0x292b02429c0293500a470028b80240489a80525c014830120244d402812", + "0x90cd00a4d40285b00a3ec090cf00a4d40285900a0e0090d200a4d40290a", + "0x293500a33c028cd0242880293500a348028cf0243680293500a29c028d2", + "0x28da00a2e00909400a4d40281200a4b0090d500a4d4028cd00a32c090d6", + "0x28fb0243840293500a358028380243880293500a2880292b02438c02935", + "0x90ca00a4d40289b19601c970121960149a8050244bc0909b00a4d4028d5", + "0x293500a38c028b80242500293500a2500292c0243200293500a3280292d", + "0x28c800a4a4090e100a4d4028e100a0e0090e200a4d4028e200a4ac090e3", + "0x9a80525c014830120244d40281200e048640e11c438c4a03900a32002935", + "0x293500a2f40291d0242f40293500a048858121800149a80502442409012", + "0x5d0cc00e4b8090cc00a4d40281225e0485d00526a0145e8c000e48c090bd", + "0x5c0120240149a805024014960122ce0149a805000014968120000149a805", + "0x5c00526a0145c0050700488a00526a0148a0052560488b80526a0148b805", + "0x901226a0140900702459c5c11422e0481c8052ce0149a8052ce01494812", + "0x290a0240489a80525c014830120244d40292800a15c0901226a0140902e", + "0xb480523a048b480526a014090810245a00293500a048848120244d40292b", + "0x970122d60149a8050244bc0916a00a4d4029692d001c918122d20149a805", + "0x293500a0480292c0245b40293500a5b00292d0245b00293500a5a8b5807", + "0x28b800a0e00900c00a4d40280c00a4ac0912c00a4d40292c00a2e009012", + "0x281200e048b68b80184b00903900a5b40293500a5b4029290242e002935", + "0x913500a48c0290a0240489a80525a0142b8120244d40281205c04809135", + "0xb780526a014b780523a048b780526a014090590245b80293500a04884812", + "0x29372e001c970122e00149a8050244bc0913700a4d40296f2dc01c91812", + "0x28b80240480293500a0480292c0245c80293500a5c40292d0245c402935", + "0x90b800a4d4028b800a0e00900c00a4d40280c00a4ac0911d00a4d40291d", + "0x158120244d40281200e048b90b80184740903900a5c80293500a5c802929", + "0x9007024048ba0050240700917300a4d40290900a2e00901226a0141a005", + "0x283900a2e00901226a0141a0050560480913500a0b0028570240489a805", + "0x293500a0482d8122ea0149a8050244240901226a0140902e0245cc02935", + "0x281225e048bb80526a014bb17500e48c0917600a4d40297600a47409176", + "0x960122f40149a8052f2014968122f20149a8052ee5e00392e0245e002935", + "0x600526a01406005256048b980526a014b98051700480900526a01409005", + "0x5c00c2e60481c8052f40149a8052f4014948121700149a8051700141c012", + "0x917b00a4d4028122120480913500a4cc0290a0240489a80502401c0917a", + "0x293500a5f0bd807246048be00526a014be00523a048be00526a0140910b", + "0x297f00a4b40917f00a4d40297d2fc01c970122fc0149a8050244bc0917d", + "0x292b0240640293500a064028b80240480293500a0480292c0244d802935", + "0x293600a4d40293600a4a4090b800a4d4028b800a0e00901800a4d402818", + "0x603900e4d40380700a01c028120244d4028120240489b0b803006409039", + "0x28120300480d00526a014998050480480913500a0480381203006403980", + "0x5d8053020d89900726a01c0d00504c0481c80526a0141c80517004809135", + "0x1b80526a0140e0050e20480e00526a0141b00500c0480913500a04803812", + "0x9a8051be0147a0120680149a8052640147a8121be0149a80506e01439812", + "0x902600a4d4028120ee0480913500a048038120246080281203804812005", + "0x293500a0b8028f40240d00293500a2ec028f50240b80293500a098028f3", + "0x1c8071e20480913500a04803812058014c182b00a4d40382400a3c809024", + "0x293500a0d0029380240489a80502401c0910900a6108302f00e4d40382b", + "0x8d82f00e0e40911b00a4d40291b00a4cc0902f00a4d40282f00a2e00911b", + "0x9a80502401c0912d00a6149700526a01c978050180489792323a2e09a805", + "0x9191d00e2200912300a4d40292300a4cc0911d00a4d40291d00a2e009012", + "0x9a80502401c0912800a6189480526a01c1c0051120481c12b2582e09a805", + "0x9592c00e0640912b00a4d40292b00a4cc0912c00a4d40292c00a2e009012", + "0x9a80502401c0912500a61c9200526a01c208050340482083f24e2e09a805", + "0x1f92700e0640903f00a4d40283f00a4cc0912700a4d40292700a2e009012", + "0x9a80502401c0904b00a6202480526a01c8f8050340488f92608a2e09a805", + "0x228051700488e00526a0148f0051900488f00526a0142492400e32809012", + "0xe0122280149a8052380146001222e0149a80524c014998122300149a805", + "0x284b00a2f40901226a0149200506e0480913500a0480381202462402812", + "0x28c002445c0293500a498029330244600293500a114028b802444802935", + "0x292500a2f40901226a01409007024048c48050240700911400a4d402912", + "0x28c002445c0293500a0fc029330244600293500a49c028b80244e002935", + "0x913500a0480381206a014c510f00a4d40391400a2e80911400a4d402938", + "0x38120b2014c590a0ae01c9a807216014130122160149a80522e01412012", + "0x290a00a0b00901226a0142b8050560480913500a048170120244d402812", + "0x9a80525c014830120244d40292900a1ec0901226a0148780519804809135", + "0x8380526a0140911b02416c0293500a048848120244d40290600a3bc09012", + "0x9a8050244bc0910300a4d4029070b601c9181220e0149a80520e0148e812", + "0x292c0241840293500a18c0292d02418c0293500a40c0e80725c0480e805", + "0x900c00a4d40280c00a4ac0911800a4d40291800a2e00901200a4d402812", + "0x308b80184600903900a1840293500a184029290242e00293500a2e002838", + "0x938120c40149a8050244a00901226a0142c8050560480913500a04803812", + "0x907c1fc01cc60651fe01c9a8070c40308c0b807e0483100526a01431005", + "0x28122480483480526a014090410240489a8050240b80901226a01409007", + "0x7d869266498090f800a4d40281208a0487c80526a014091250243ec02935", + "0x3280526a014328052560487f80526a0147f8051700487b00526a0147c0f9", + "0x9a80520c014780121700149a8051700141c0120240149a80502401496012", + "0x878052ce0489480526a014948050000489700526a0149700509604883005", + "0x3987100c0e49a80521e4a4971061ec2e0090651fe068b401221e0149a805", + "0x28870240489a80502401c090f300a6343b80526a01c7a0050fe0487a0f5", + "0x890121de3c40393500a3c8029140243c80293500a048848120244d402877", + "0x908d00a4d4028f000a43c090f000a4d4028ef00a4e00901226a01478805", + "0x293500a018028b80241cc0293500a1cc0292c0242300293500a23402835", + "0x288c00a4a4090f500a4d4028f500a0e00907100a4d40287100a4ac09006", + "0x9a8051e6014968120244d40281200e048460f50e20183983900a23002935", + "0x388052560480300526a014030051700483980526a014398052580483f805", + "0x1c8050fe0149a8050fe014948121ea0149a8051ea0141c0120e20149a805", + "0x290f00a3300901226a0140902e0240489a80502401c0907f1ea1c403073", + "0x9a80520c014778120244d40292e00a4180901226a014948050f604809135", + "0x293500a2040291d0242040293500a0488581210e0149a80502442409012", + "0x4188800e4b80908800a4d40281225e0484180526a0144088700e48c09081", + "0x5c0120240149a805024014960120f60149a805112014968121120149a805", + "0x5c00526a0145c0050700483e00526a0143e0052560487f00526a0147f005", + "0x901226a014090070241ec5c07c1fc0481c8050f60149a8050f601494812", + "0x287b0240489a80522e014850120244d40283500a15c0901226a0140902e", + "0x28122120480913500a418028ef0240489a80525c014830120244d402929", + "0x400072460484700526a0144700523a0484700526a0140916902420002935", + "0x90e800a4d4028eb1ce01c970121ce0149a8050244bc090eb00a4d40288e", + "0x293500a460028b80240480293500a0480292c0244a80293500a3a00292d", + "0x292a00a4a4090b800a4d4028b800a0e00900c00a4d40280c00a4ac09118", + "0x913500a048170120244d40281200e048950b80184600903900a4a802935", + "0x901226a014830051de0480913500a4b8029060240489a8052500142b812", + "0x8e8121c60149a8050242040909400a4d4028122120480913500a4ac0290a", + "0x7080526a0140912f0243880293500a38c4a0072460487180526a01471805", + "0x281200a4b00909c00a4d40289b00a4b40909b00a4d4028e21c201c97012", + "0x28380240300293500a0300292b0244b00293500a4b0028b802404802935", + "0x38121382e00612c0240e40289c00a4d40289c00a4a4090b800a4d4028b8", + "0x290600a3bc0901226a014968050ae0480913500a048170120244d402812", + "0x293500a0482c81213a0149a8050244240901226a0149180521404809135", + "0x281225e0487000526a0144f89d00e48c0909f00a4d40289f00a4740909f", + "0x960121b40149a8051b6014968121b60149a8051c03740392e02437402935", + "0x600526a014060052560488e80526a0148e8051700480900526a01409005", + "0x5c00c23a0481c8051b40149a8051b4014948121700149a8051700141c012", + "0x5100526a014848051700480913500a0d00282b0240489a80502401c090da", + "0x282b0240489a8050580142b8120244d40281200e0480918e00a0480e012", + "0x28122120480913500a048170121440149a8050720145c0120244d402834", + "0x6b0072460486a80526a0146a80523a0486a80526a0140905b02435802935", + "0x90ac00a4d4028d41a601c970121a60149a8050244bc090d400a4d4028d5", + "0x293500a288028b80240480293500a0480292c02429c0293500a2b00292d", + "0x28a700a4a4090b800a4d4028b800a0e00900c00a4d40280c00a4ac090a2", + "0x9a805266014850120244d40281200e048538b80182880903900a29c02935", + "0x293500a33c0291d02433c0293500a048858121a40149a80502442409012", + "0x668cb00e4b8090cb00a4d40281225e0486680526a014678d200e48c090cf", + "0x5c0120240149a805024014960121900149a805194014968121940149a805", + "0x5c00526a0145c0050700480c00526a0140c0052560480c80526a0140c805", + "0x901226a014090120243205c0180320481c8051900149a80519001494812", + "0x28240240489a80502401c0901803201cc780c07201c9a80700e01403805", + "0x28260240e40293500a0e4028b80240489a8050240600901a00a4d402933", + "0x293500a0d8028060240489a80502401c090bb00a6401b13200e4d40381a", + "0x293200a3d4090df00a4d40283700a1cc0903700a4d40281c00a1c40901c", + "0x9a80502401c090123220140901c0240900293500a37c028f40240d002935", + "0x9a8051760147a81205c0149a80504c0147981204c0149a8050241dc09012", + "0x902c00a6481580526a01c120051e40481200526a014170051e80481a005", + "0x281200e048848053264181780726a01c1583900e3c40901226a01409007", + "0x282f00a2e00911b00a4d40283400a4e00901226a014830051de04809135", + "0x9792323a2e09a8052360bc0383902446c0293500a46c029330240bc02935", + "0x292300a0900901226a014090070244b40299425c0149a80725e01406012", + "0x901226a014090070244a4029950704ac0393500e4b0028260244b002935", + "0x293500a49c0287302449c0293500a4a0028710244a00293500a0e002806", + "0xcb0050240700912400a4d40283f00a3d00904100a4d40292b00a3d40903f", + "0x2280526a014928051e60489280526a014090770240489a80502401c09012", + "0x9a807248014790122480149a80508a0147a0120820149a8052520147a812", + "0x28b80241240293500a104029380240489a80502401c0911f00a65c93005", + "0x258b826a0142491d00e0640904900a4d40284900a4cc0911d00a4d40291d", + "0x28b80240489a80502401c0911700a6608c00526a01c8e0050340488e11e", + "0x8a0b826a0148f04b00e0640911e00a4d40291e00a4cc0904b00a4d40284b", + "0x39320240489a80502401c0903500a6648780526a01c9c0050340489c112", + "0x8500526a0148a0051700482b80526a0148580506c0488580526a01487918", + "0x919a00a0480e0120b60149a8050ae0145d8120b20149a80522401499812", + "0x910700a4d40283500a37c0901226a0148c00506e0480913500a04803812", + "0x293500a41c028bb0241640293500a448029330244280293500a450028b8", + "0x910300a4d40291700a37c0901226a01409007024048cd0050240700905b", + "0x293500a40c028bb0241640293500a478029330244280293500a12c028b8", + "0x850051700480913500a048038120c6014cd81d00a4d40385b00a0d00905b", + "0x310611704d40285921401c0c8120b20149a8050b2014998122140149a805", + "0x930b82d40480913500a048038121fc014ce06500a4d4038ff00a068090ff", + "0x7d80526a014310050480483480526a0143e0052d60483e00526a0143281d", + "0x9a8050d2014b60121f00149a8051f60147a8121f20149a8050c20145c012", + "0x901226a0149300513a0480913500a04803812024674028120380487b005", + "0x3880526a014310050480480300526a0147f0052da0480913500a0740282f", + "0x9a80500c014b60121f00149a8050e20147a8121f20149a8050c20145c012", + "0x901226a0149300513a0480913500a04803812024674028120380487b005", + "0x293500a428028b80243d40293500a164028240241cc0293500a18c0296d", + "0xce805024070090f600a4d40287300a5b0090f800a4d4028f500a3d4090f9", + "0x293500a474028b80243d00293500a47c0296d0240489a80502401c09012", + "0x38f600a5b8090f600a4d4028f400a5b0090f800a4d40284100a3d4090f9", + "0x28260240489a8050ee014b78120244d40281200e0487980533c1dc02935", + "0x901226a0140902e0240489a80502401c090ef00a67c788f200e4d4038f8", + "0x848120244d40292e00a4180901226a014788050580480913500a3c80282b", + "0x9181211a0149a80511a0148e81211a0149a80502446c090f000a4d402812", + "0x293500a2303f80725c0483f80526a0140912f0242300293500a23478007", + "0x28f900a2e00901200a4d40281200a4b00908100a4d40288700a4b409087", + "0x29290242e00293500a2e0028380240300293500a0300292b0243e402935", + "0x778050560480913500a048038121022e0060f90240e40288100a4d402881", + "0x7c8b807e0484180526a0144180524e0484180526a014091280240489a805", + "0x9a8050242000901226a014090070242003d8073402244400726a01c4180c", + "0x28e700a39c090e700a4d4028121d60487580526a0144700511c04847005", + "0x9992a0242200293500a220028b80243ac0293500a3ac028e802439c02935", + "0x901226a01409007024384710e31706844a12a1d02e09a8071d639c5c089", + "0x293500a4a8028380243a00293500a3a00292b0242500293500a2500291d", + "0x5c0120244d40281200e0484e8053442704d80726a01c4a08800e3c40912a", + "0x510da1b62e0d18dd1c027c5c13500e4a8740071280484d80526a0144d805", + "0x6b00526a0146e8051c40486e80526a0146e8051c60480913500a04803812", + "0x289c0240489a8051aa0144d81214e2b0698d41aa0e49a8051ac01470812", + "0x6980513e0480913500a29c0289d0240489a805158014778120244d4028d4", + "0x90cd00a4d4028cf00a27c090cf13801c9a805138014700121a40149a805", + "0x9a8051960148e8121960149a80519a348038dd0243480293500a3480291d", + "0x658051b60487000526a014700050700484f80526a0144f80525604865805", + "0x28120820480913500a048170120244d40281200e048650053480489a807", + "0x9a805024114090bd00a4d40281224a0486000526a0140912402432002935", + "0x900000a4d40289c00a368090cc00a4d4028ba17a3006413324c0485d005", + "0x293500a0480292c02427c0293500a27c0292b02426c0293500a26c028b8", + "0x292e00a12c0900000a4d40280000a288090e000a4d4028e000a0e009012", + "0x916b2d45a4b41670724d40292e0003307001213e26c0c8d60244b802935", + "0x9a8052d8014438120244d40281200e048b680534a5b00293500e5ac0287f", + "0x296f00a448091372de01c9a8052dc0148a0122dc0149a80502442409012", + "0xb880506a048b880526a014b800521e048b800526a0149b80527004809135", + "0x958122ce0149a8052ce0145c0122d20149a8052d2014960122e40149a805", + "0xb900526a014b9005252048b500526a014b5005070048b400526a014b4005", + "0xba97300e4d40296d00a3540901226a014090070245c8b51682ce5a41c805", + "0x293500a59c028b80245d80293500a5a40292c0240489a8052e60146a012", + "0x297500a3ec0917900a4d40296a00a0e00917800a4d40296800a4ac09177", + "0x913500a328028d30240489a80502401c0901234c0140901c0245e802935", + "0x917b00a4d4028122120480913500a270028ef0240489a80525c01483012", + "0x293500a5f0bd807246048be00526a014be00523a048be00526a014090ac", + "0x297d00a3ec0917f00a4d4028e000a0e00917e00a4d40289f00a4ac0917d", + "0x913500a4b8029060240489a80502401c0901234e0140901c0244d802935", + "0x293500a368028380245f80293500a36c0292b0240489a80513801477812", + "0x293500a26c028b80240489a8050240b80913600a4d4028a200a3ec0917f", + "0x293600a3ec091aa00a4d40297f00a0e0091a900a4d40297e00a4ac091a8", + "0x901226a0140902e0240489a80502401c090123580140901c0246ac02935", + "0x8e81235c0149a80502429c091ad00a4d4028122120480913500a4b802906", + "0x293500a274028b80246bc0293500a6b8d6807246048d700526a014d7005", + "0x29af00a3ec091b200a4d40292a00a0e0091b100a4d4028e800a4ac091b0", + "0x901226a0140902e0240489a80502401c090123680140901c0246cc02935", + "0xd880526a01471805256048d800526a014440051700480913500a4b802906", + "0x9a805360014690123660149a8051c20147d8123640149a8051c40141c012", + "0xd9805196048d500526a014d900519a048d480526a014d880519e048d4005", + "0x958122ee0149a8053500145c0122ec0149a805024014960123560149a805", + "0xbd00526a014d58051f6048bc80526a014d5005070048bc00526a014d4805", + "0x9a80536c0149681236c0149a8052f46d40392e0246d40293500a04897812", + "0xbc005256048bb80526a014bb805170048bb00526a014bb005258048db805", + "0x1c80536e0149a80536e014948122f20149a8052f20141c0122f00149a805", + "0x292e00a4180901226a0140902e0240489a80502401c091b72f25e0bb976", + "0x9a8053720148e8123720149a80502442c091b800a4d40281221204809135", + "0xdd80725c048dd80526a0140912f0246e80293500a6e4dc007246048dc805", + "0x901200a4d40281200a4b0091bd00a4d4029bc00a4b4091bc00a4d4029ba", + "0x293500a2e0028380242000293500a2000292b0241ec0293500a1ec028b8", + "0x913500a0480381237a2e04007b0240e4029bd00a4d4029bd00a4a4090b8", + "0x158120244d40292e00a4180901226a014798050ae0480913500a04817012", + "0x291d0246fc0293500a0484081237c0149a8050244240901226a0147c005", + "0x91c100a4d40281225e048e000526a014df9be00e48c091bf00a4d4029bf", + "0x9a805024014960123860149a805384014968123840149a8053807040392e", + "0x5c0050700480600526a014060052560487c80526a0147c80517004809005", + "0x900702470c5c00c1f20481c8053860149a805386014948121700149a805", + "0x9a805246014850120244d40292d00a15c0901226a0140902e0240489a805", + "0x293500a7140291d0247140293500a0482c8123880149a80502442409012", + "0xe31c700e4b8091c700a4d40281225e048e300526a014e29c400e48c091c5", + "0x5c0120240149a805024014960123920149a805390014968123900149a805", + "0x5c00526a0145c0050700480600526a014060052560488e80526a0148e805", + "0x901226a014090070247245c00c23a0481c8053920149a80539201494812", + "0x381202472c02812038048e500526a014848051700480913500a0d00282b", + "0x1c8051700480913500a0d00282b0240489a8050580142b8120244d402812", + "0x9a80502416c091cc00a4d4028122120480913500a048170123940149a805", + "0x912f0247380293500a734e6007246048e680526a014e680523a048e6805", + "0x91d100a4d4029d000a4b4091d000a4d4029ce39e01c9701239e0149a805", + "0x293500a0300292b0247280293500a728028b80240480293500a0480292c", + "0x61ca0240e4029d100a4d4029d100a4a4090b800a4d4028b800a0e00900c", + "0xe900526a014091090240489a805266014850120244d40281200e048e88b8", + "0x9a8053a67480392302474c0293500a74c0291d02474c0293500a04885812", + "0xea80525a048ea80526a0149d9d400e4b8091d400a4d40281225e0489d805", + "0x958120320149a8050320145c0120240149a805024014960123ac0149a805", + "0xeb00526a014eb0052520485c00526a0145c0050700480c00526a0140c005", + "0x9980726a01c0281200e0140901226a014090120247585c0180320481c805", + "0x90180240600293500a2e0028240240489a80502401c0901901801ceb839", + "0x29d82640680393500e060028260244cc0293500a4cc028b80240489a805", + "0x293500a2ec028710242ec0293500a4c8028060240489a80502401c09036", + "0x283700a3d0090df00a4d40281a00a3d40903700a4d40281c00a1cc0901c", + "0x1200526a014090770240489a80502401c090123b20140901c0240d002935", + "0x9a80504c0147a0121be0149a80506c0147a81204c0149a80504801479812", + "0x38f10240489a80502401c0902b00a7681700526a01c1a0051e40481a005", + "0x9a80505e014778120244d40281200e048830053b60bc1600726a01c17133", + "0x290900a4cc0902c00a4d40282c00a2e00910900a4d4028df00a4e009012", + "0x9780526a01c918050180489191d2362e09a8052120b00383902442402935", + "0x9a80523a014120120244d40292f00a4180901226a014090070244b8029dc", + "0x30120244d40281200e0481c0053ba4ac9600726a01c9680504c04896805", + "0x9380526a014940050e60489400526a014948050e20489480526a01495805", + "0x91de00a0480e0120820149a80524e0147a01207e0149a8052580147a812", + "0x912500a4d40292400a3cc0912400a4d4028120ee0480913500a04803812", + "0x293500e104028f20241040293500a494028f40240fc0293500a0e0028f5", + "0x8d8051700488f80526a0141f8052700480913500a0480381224c014ef845", + "0x258491704d40291f23601c0c81223e0149a80523e014998122360149a805", + "0x248051700480913500a04803812230014f011c00a4d40391e00a0680911e", + "0x8a1171704d40284b09201c0c8120960149a805096014998120920149a805", + "0x8e0072640480913500a0480381221e014f093800a4d40391200a06809112", + "0x905700a4d40291700a2e00910b00a4d40283500a0d80903500a4d402938", + "0x90123c40140901c0241640293500a42c028bb0244280293500a45002933", + "0x5c0120b60149a80521e0146f8120244d40291c00a0dc0901226a01409007", + "0x2c80526a0142d8051760488500526a0148a0052660482b80526a0148b805", + "0x5c01220e0149a8052300146f8120244d40281200e048091e200a0480e012", + "0x2c80526a014838051760488500526a014258052660482b80526a01424805", + "0x285700a2e00901226a01409007024074029e32060149a8070b20141a012", + "0x310610c62e09a80521415c038190244280293500a4280293302415c02935", + "0x818451705a80901226a01409007024194029e41fe0149a8070c40140d012", + "0x906900a4d40286100a0900907c00a4d4028fe00a5ac090fe00a4d4028ff", + "0x293500a1f00296c0243e40293500a1a4028f50243ec0293500a18c028b8", + "0x178120244d40284500a2740901226a01409007024048f2805024070090f8", + "0x900600a4d40286100a090090f600a4d40286500a5b40901226a01481805", + "0x293500a3d80296c0243e40293500a018028f50243ec0293500a18c028b8", + "0xb68120244d40284500a2740901226a01409007024048f2805024070090f8", + "0x7d80526a0142b8051700483980526a014850050480483880526a0140e805", + "0x91e500a0480e0121f00149a8050e2014b60121f20149a8050e60147a812", + "0x7d80526a0148d8051700487a80526a014930052da0480913500a04803812", + "0x9a8071f0014b70121f00149a8051ea014b60121f20149a80507e0147a812", + "0x7c8052700480913500a3d00296f0240489a80502401c0907700a7987a005", + "0xc8121e60149a8051e6014998121f60149a8051f60145c0121e60149a805", + "0x381211a014f38f000a4d4038ef00a068090ef1e23c85c13500a3cc7d807", + "0xc8121e20149a8051e2014998121e40149a8051e40145c0120244d402812", + "0x3812106014f408100a4d40388700a068090870fe2305c13500a3c479007", + "0x908900a4d40288800a3200908800a4d4028811e001c650120244d402812", + "0x293500a224028c00242000293500a1fc029330241ec0293500a230028b8", + "0x5e8120244d4028f000a0dc0901226a01409007024048f48050240700908e", + "0x4000526a0143f8052660483d80526a014460051700487580526a01441805", + "0x5e8120244d40281200e048091e900a0480e01211c0149a8051d601460012", + "0x4000526a014788052660483d80526a014790051700487380526a01446805", + "0x90070244a8029ea1d00149a80711c0145d01211c0149a8051ce01460012", + "0x4a00504c0484a00526a014400050480480913500a3a0028cc0240489a805", + "0x158120244d40281205c0480913500a048038121c2014f58e21c601c9a807", + "0x911b02426c0293500a048848120244d4028e200a0b00901226a01471805", + "0x909d00a4d40289c13601c918121380149a8051380148e8121380149a805", + "0x293500a3800292d0243800293500a2744f80725c0484f80526a0140912f", + "0x280700a0e00903900a4d40283900a4ac0907b00a4d40287b00a2e0090dd", + "0x9a80502401c090dd00e0e43d93300a3740293500a3740292902401c02935", + "0x90db00a4d4028122500480913500a3840282b0240489a8050240b809012", + "0x6a8d600e7b0510da00e4d4038db0721ec5c03f02436c0293500a36c02927", + "0x8e8121a60149a80502420c090d400a4d4028122120480913500a04803812", + "0x5380526a0140912f0242b00293500a34c6a0072460486980526a01469805", + "0x28da00a2e0090cf00a4d4028d200a4b4090d200a4d4028ac14e01c97012", + "0x292902401c0293500a01c028380242880293500a2880292b02436802935", + "0x9a8050244240901226a0140900702433c038a21b44cc028cf00a4d4028cf", + "0x658cd00e48c090cb00a4d4028cb00a474090cb00a4d40281221604866805", + "0x968121800149a8051943200392e0243200293500a048978121940149a805", + "0x6a80526a0146a8052560486b00526a0146b0051700485e80526a01460005", + "0x5e8071aa3589980517a0149a80517a0149481200e0149a80500e0141c012", + "0x290a0240489a8052540142b8120244d40281205c0480913500a04803812", + "0x6600523a0486600526a014091690242e80293500a048848120244d402880", + "0x970122ce0149a8050244bc0900000a4d4028cc17401c918121980149a805", + "0x293500a1ec028b80245a40293500a5a00292d0245a00293500a000b3807", + "0x296900a4a40900700a4d40280700a0e00903900a4d40283900a4ac0907b", + "0x901226a0140902e0240489a80502401c0916900e0e43d93300a5a402935", + "0x408122d40149a8050244240901226a0147c8050560480913500a1dc02857", + "0xb600526a014b596a00e48c0916b00a4d40296b00a4740916b00a4d402812", + "0x9a8052dc014968122dc0149a8052d85b40392e0245b40293500a04897812", + "0x38050700481c80526a0141c8052560487d80526a0147d805170048b7805", + "0x281200e048b78070723ec998052de0149a8052de0149481200e0149a805", + "0x913500a4740290a0240489a80525c0142b8120244d40281205c04809135", + "0xb800526a014b800523a048b800526a014090590244dc0293500a04884812", + "0x29712e401c970122e40149a8050244bc0917100a4d40297026e01c91812", + "0x292b02446c0293500a46c028b80245d40293500a5cc0292d0245cc02935", + "0x297500a4d40297500a4a40900700a4d40280700a0e00903900a4d402839", + "0x830051700480913500a37c0282b0240489a80502401c0917500e0e48d933", + "0x9a8050560142b8120244d40281200e048091ed00a0480e0122ec0149a805", + "0x913500a048170122ec0149a8052660145c0120244d4028df00a0ac09012", + "0xbc00526a014bc00523a048bc00526a0140905b0245dc0293500a04884812", + "0x29792f401c970122f40149a8050244bc0917900a4d4029782ee01c91812", + "0x292b0245d80293500a5d8028b80245f00293500a5ec0292d0245ec02935", + "0x297c00a4d40297c00a4a40900700a4d40280700a0e00903900a4d402839", + "0x28122120480913500a2e00290a0240489a80502401c0917c00e0e4bb133", + "0xbe807246048bf00526a014bf00523a048bf00526a0140910b0245f402935", + "0x91a800a4d40297f26c01c9701226c0149a8050244bc0917f00a4d40297e", + "0x293500a0640292b0240300293500a030028b80246a40293500a6a00292d", + "0x38190184cc029a900a4d4029a900a4a40900700a4d40280700a0e009019", + "0x901901801cf703926601c9a80700a048038050240489a805024048091a9", + "0x28b80240489a8050240600901800a4d4028b800a0900901226a01409007", + "0x9a80502401c0903600a7bc9901a00e4d40381800a0980913300a4d402933", + "0x281c00a1cc0901c00a4d4028bb00a1c4090bb00a4d40293200a01809012", + "0x901c0240d00293500a0dc028f402437c0293500a068028f50240dc02935", + "0x9a805048014798120480149a8050241dc0901226a01409007024048f8005", + "0x1a0051e40481a00526a014130051e80486f80526a0141b0051ea04813005", + "0x1600726a01c1713300e3c40901226a014090070240ac029f105c0149a807", + "0x28df00a4e00901226a014178051de0480913500a0480381220c014f902f", + "0x38390244240293500a424029330240b00293500a0b0028b802442402935", + "0x90070244b8029f325e0149a807246014060122464748d8b826a0148482c", + "0x9680504c0489680526a0148e8050480480913500a4bc029060240489a805", + "0x9480526a0149580500c0480913500a04803812070014fa12b25801c9a807", + "0x9a8052580147a81224e0149a805250014398122500149a80525201438812", + "0x913500a048038120247d4028120380482080526a014938051e80481f805", + "0x293500a0e0028f50244940293500a490028f30244900293500a0483b812", + "0x381224c014fb04500a4d40384100a3c80904100a4d40292500a3d00903f", + "0x28b802447c0293500a0fc029380240489a80508a0144e8120244d402812", + "0x248b826a0148f91b00e0640911f00a4d40291f00a4cc0911b00a4d40291b", + "0x28b80240489a80502401c0911800a7dc8e00526a01c8f0050340488f04b", + "0x8b8b826a0142584900e0640904b00a4d40284b00a4cc0904900a4d402849", + "0x39320240489a80502401c0910f00a7e09c00526a01c8900503404889114", + "0x2b80526a0148b8051700488580526a0141a80506c0481a80526a0149c11c", + "0x91f900a0480e0120b20149a8052160145d8122140149a80522801499812", + "0x905b00a4d40290f00a37c0901226a0148e00506e0480913500a04803812", + "0x293500a16c028bb0244280293500a4500293302415c0293500a45c028b8", + "0x910700a4d40291800a37c0901226a01409007024048fc80502407009059", + "0x293500a41c028bb0244280293500a12c0293302415c0293500a124028b8", + "0x8180505e0480913500a0480381203a014fd10300a4d40385900a0d009059", + "0x29fb0c41840393500e18c0282602418c0293500a428028240240489a805", + "0x160120244d40286100a0ac0901226a0140902e0240489a80502401c090ff", + "0x291d0243f80293500a0488d8120ca0149a8050244240901226a01431005", + "0x906900a4d40281225e0483e00526a0147f06500e48c090fe00a4d4028fe", + "0x9a8050ae0145c0121f20149a8051f6014968121f60149a8050f81a40392e", + "0x7c8052520480380526a014038050700481c80526a0141c8052560482b805", + "0x913500a048170120244d40281200e0487c80707215c998051f20149a805", + "0x7c00526a0147c00524e0487c00526a014091280240489a8051fe01415812", + "0x901226a014090070241cc388073f80187b00726a01c7c0390ae2e01f812", + "0x90f400a4d4028f400a474090f400a4d4028121060487a80526a01409109", + "0x9a8050ee3cc0392e0243cc0293500a048978120ee0149a8051e83d403923", + "0x30052560487b00526a0147b0051700487880526a0147900525a04879005", + "0x998051e20149a8051e20149481200e0149a80500e0141c01200c0149a805", + "0x9a80502442c090ef00a4d4028122120480913500a048038121e201c030f6", + "0x912f0242340293500a3c0778072460487800526a0147800523a04878005", + "0x908700a4d40287f00a4b40907f00a4d40288d11801c970121180149a805", + "0x293500a01c028380241cc0293500a1cc0292b0241c40293500a1c4028b8", + "0x901226a0140900702421c038730e24cc0288700a4d40288700a4a409007", + "0x91090240489a805214014850120244d40281d00a15c0901226a0140902e", + "0x392302420c0293500a20c0291d02420c0293500a048b48121020149a805", + "0x3d80526a0144408900e4b80908900a4d40281225e0484400526a01441881", + "0x9a805072014958120ae0149a8050ae0145c0121000149a8050f601496812", + "0x1c8572660144000526a014400052520480380526a014038050700481c805", + "0x901226a014930050ae0480913500a048170120244d40281200e04840007", + "0x8e8121d60149a8050242040908e00a4d4028122120480913500a0fc0282b", + "0x7400526a0140912f02439c0293500a3ac470072460487580526a01475805", + "0x291b00a2e00909400a4d40292a00a4b40912a00a4d4028e71d001c97012", + "0x292902401c0293500a01c028380240e40293500a0e40292b02446c02935", + "0x9a8050240b80901226a01409007024250038392364cc0289400a4d402894", + "0x7180526a014091090240489a80523a014850120244d40292e00a15c09012", + "0x9a8051c438c039230243880293500a3880291d0243880293500a0482c812", + "0x4e00525a0484e00526a0147089b00e4b80909b00a4d40281225e04870805", + "0x1c0120720149a805072014958122360149a8052360145c01213a0149a805", + "0x381213a01c1c91b2660144e80526a0144e8052520480380526a01403805", + "0x901c02427c0293500a418028b80240489a8051be014158120244d402812", + "0x9a8051be014158120244d40282b00a15c0901226a01409007024048fe805", + "0x7000526a014091090240489a8050240b80909f00a4d40293300a2e009012", + "0x9a8051ba380039230243740293500a3740291d0243740293500a0482d812", + "0x5100525a0485100526a0146d8da00e4b8090da00a4d40281225e0486d805", + "0x1c0120720149a8050720149581213e0149a80513e0145c0121ac0149a805", + "0x38121ac01c1c89f2660146b00526a0146b0052520480380526a01403805", + "0x28122160486a80526a014091090240489a805170014850120244d402812", + "0x978121a60149a8051a8354039230243500293500a3500291d02435002935", + "0x6900526a0145380525a0485380526a014698ac00e4b8090ac00a4d402812", + "0x9a80500e0141c0120320149a805032014958120180149a8050180145c012", + "0x913500a048090121a401c0c80c2660146900526a0146900525204803805", + "0x120120244d40281200e0480c80c00e7f81c93300e4d40380502401c02812", + "0x130122660149a8052660145c0120244d4028120300480c00526a0145c005", + "0x9a805264014030120244d40281200e0481b0053fe4c80d00726a01c0c005", + "0xd0051ea0481b80526a0140e0050e60480e00526a0145d8050e20485d805", + "0x281200e0480920000a0480e0120680149a80506e0147a0121be0149a805", + "0x283600a3d40902600a4d40282400a3cc0902400a4d4028120ee04809135", + "0x158054020b80293500e0d0028f20240d00293500a098028f402437c02935", + "0x900702441802a0205e0b00393500e0b8998071e20480913500a04803812", + "0x160051700488480526a0146f8052700480913500a0bc028ef0240489a805", + "0x8e91b1704d40290905801c1c8122120149a805212014998120580149a805", + "0x9780520c0480913500a0480381225c0150192f00a4d40392300a03009123", + "0x2a042564b00393500e4b4028260244b40293500a474028240240489a805", + "0x293500a4a4028710244a40293500a4ac028060240489a80502401c09038", + "0x292700a3d00903f00a4d40292c00a3d40912700a4d40292800a1cc09128", + "0x9200526a014090770240489a80502401c0901240a0140901c02410402935", + "0x9a80524a0147a01207e0149a8050700147a81224a0149a80524801479812", + "0x289d0240489a80502401c0912600a8182280526a01c208051e404820805", + "0x998122360149a8052360145c01223e0149a80507e0149c0120244d402845", + "0x391e00a0680911e0961245c13500a47c8d8070320488f80526a0148f805", + "0x998120920149a8050920145c0120244d40281200e0488c00540e47002935", + "0x391200a0680911222845c5c13500a12c248070320482580526a01425805", + "0x903500a4d40293823801c990120244d40281200e048878054104e002935", + "0x293500a4500293302415c0293500a45c028b802442c0293500a0d402836", + "0x901226a01409007024049048050240700905900a4d40290b00a2ec0910a", + "0x2b80526a0148b8051700482d80526a014878051be0480913500a47002837", + "0x920900a0480e0120b20149a8050b60145d8122140149a80522801499812", + "0x2b80526a014248051700488380526a0148c0051be0480913500a04803812", + "0x9a8070b20141a0120b20149a80520e0145d8122140149a80509601499812", + "0x2b8051700480913500a40c0282f0240489a80502401c0901d00a82881805", + "0x308631704d40290a0ae01c0c8122140149a805214014998120ae0149a805", + "0x318051700480913500a048038120ca015058ff00a4d40386200a06809062", + "0x3e0fe1704d4028610c601c0c8120c20149a8050c2014998120c60149a805", + "0x7f8071940480913500a048038121f2015060fb00a4d40386900a06809069", + "0x900600a4d4028fe00a2e0090f600a4d4028f800a320090f800a4d4028fb", + "0x901241a0140901c0241cc0293500a3d8028c00241c40293500a1f002933", + "0x5c0121ea0149a8051f20145e8120244d4028ff00a0dc0901226a01409007", + "0x3980526a0147a8051800483880526a0143e0052660480300526a0147f005", + "0x5c0121e80149a8050ca0145e8120244d40281200e0480920d00a0480e012", + "0x3980526a0147a0051800483880526a014308052660480300526a01431805", + "0x287700a3300901226a014090070243cc02a0e0ee0149a8070e60145d012", + "0x7800541e3bc7880726a01c7900504c0487900526a0143880504804809135", + "0x282c0240489a8051e2014158120244d40281205c0480913500a04803812", + "0x4600523a0484600526a0140911b0242340293500a048848120244d4028ef", + "0x9701210e0149a8050244bc0907f00a4d40288c11a01c918121180149a805", + "0x293500a018028b802420c0293500a2040292d0242040293500a1fc43807", + "0x288300a4a40900700a4d40280700a0e00903900a4d40283900a4ac09006", + "0x901226a0140902e0240489a80502401c0908300e0e40313300a20c02935", + "0x908800a4d40288800a49c0908800a4d4028122500480913500a3c00282b", + "0x848120244d40281200e0484708000e8403d88900e4d4038880720185c03f", + "0x918121ce0149a8051ce0148e8121ce0149a80502420c090eb00a4d402812", + "0x293500a3a09500725c0489500526a0140912f0243a00293500a39c75807", + "0x287b00a4ac0908900a4d40288900a2e0090e300a4d40289400a4b409094", + "0x4493300a38c0293500a38c0292902401c0293500a01c028380241ec02935", + "0x293500a048858121c40149a8050244240901226a0140900702438c0387b", + "0x281225e0484d80526a014708e200e48c090e100a4d4028e100a474090e1", + "0x5c01213e0149a80513a0149681213a0149a8051362700392e02427002935", + "0x380526a014038050700484700526a014470052560484000526a01440005", + "0x170120244d40281200e0484f80711c2009980513e0149a80513e01494812", + "0x28122120480913500a1c40290a0240489a8051e60142b8120244d402812", + "0x700072460486e80526a0146e80523a0486e80526a0140913702438002935", + "0x90a200a4d4028db1b401c970121b40149a8050244bc090db00a4d4028dd", + "0x293500a0e40292b0240180293500a018028b80243580293500a2880292d", + "0x383900c4cc028d600a4d4028d600a4a40900700a4d40280700a0e009039", + "0x850120244d40281d00a15c0901226a0140902e0240489a80502401c090d6", + "0x291d0243500293500a048b48121aa0149a8050244240901226a01485005", + "0x90ac00a4d40281225e0486980526a0146a0d500e48c090d400a4d4028d4", + "0x9a8050ae0145c0121a40149a80514e0149681214e0149a8051a62b00392e", + "0x690052520480380526a014038050700481c80526a0141c8052560482b805", + "0x913500a048170120244d40281200e0486900707215c998051a40149a805", + "0x90cf00a4d4028122120480913500a0fc0282b0240489a80524c0142b812", + "0x293500a334678072460486680526a0146680523a0486680526a01409081", + "0x28c800a4b4090c800a4d4028cb19401c970121940149a8050244bc090cb", + "0x28380240e40293500a0e40292b02446c0293500a46c028b802430002935", + "0x9007024300038392364cc028c000a4d4028c000a4a40900700a4d402807", + "0x9a80523a014850120244d40292e00a15c0901226a0140902e0240489a805", + "0x293500a2e80291d0242e80293500a0482c81217a0149a80502442409012", + "0x6600000e4b80900000a4d40281225e0486600526a0145d0bd00e48c090ba", + "0x958122360149a8052360145c0122d00149a8052ce014968122ce0149a805", + "0xb400526a014b40052520480380526a014038050700481c80526a0141c805", + "0x28b80240489a8051be014158120244d40281200e048b400707246c99805", + "0x282b00a15c0901226a01409007024049088050240700916900a4d402906", + "0x9a8050240b80916900a4d40293300a2e00901226a0146f80505604809135", + "0x293500a5ac0291d0245ac0293500a0482d8122d40149a80502442409012", + "0xb616d00e4b80916d00a4d40281225e048b600526a014b596a00e48c0916b", + "0x958122d20149a8052d20145c0122de0149a8052dc014968122dc0149a805", + "0xb780526a014b78052520480380526a014038050700481c80526a0141c805", + "0x91090240489a805170014850120244d40281200e048b78070725a499805", + "0x39230245c00293500a5c00291d0245c00293500a0488581226e0149a805", + "0xb980526a014b897200e4b80917200a4d40281225e048b880526a014b8137", + "0x9a805032014958120180149a8050180145c0122ea0149a8052e601496812", + "0xc80c266014ba80526a014ba8052520480380526a014038050700480c805", + "0xc80c00e8481c93300e4d40380502401c028120244d402812024048ba807", + "0x5c0120244d4028120300480c00526a0145c0050480480913500a04803812", + "0x281200e0481b0054264c80d00726a01c0c00504c0489980526a01499805", + "0xe0050e60480e00526a0145d8050e20485d80526a0149900500c04809135", + "0xe0120680149a80506e0147a0121be0149a8050340147a81206e0149a805", + "0x282400a3cc0902400a4d4028120ee0480913500a0480381202485002812", + "0x28f20240d00293500a098028f402437c0293500a0d8028f502409802935", + "0x393500e0b8998071e20480913500a048038120560150a82e00a4d403834", + "0x28260240b00293500a0b0028b80240489a80502401c0910600a8581782c", + "0x901226a0140902e0240489a80502401c0911d00a85c8d90900e4d4038df", + "0x848120244d40282f00a3bc0901226a0148d8050580480913500a4240282b", + "0x9181225e0149a80525e0148e81225e0149a80502446c0912300a4d402812", + "0x293500a4b89680725c0489680526a0140912f0244b80293500a4bc91807", + "0x283900a4ac0902c00a4d40282c00a2e00912b00a4d40292c00a4b40912c", + "0x1613300a4ac0293500a4ac0292902401c0293500a01c028380240e402935", + "0x913500a4740282b0240489a8050240b80901226a014090070244ac03839", + "0x38380720b05c03f0240e00293500a0e0029270240e00293500a04894012", + "0x904100a4d4028121000480913500a0480381207e49c03a182504a403935", + "0x9a8050820144701224a0149a8052480144f8122480bc0393500a0bc028e0", + "0x293500a498028e70240489a8050240600912600a4d4028121d604822805", + "0x39280725c00912900a4d40292900a2e00904500a4d40284500a3a009126", + "0x91090240489a80502401c0911c23c12c5c21909247c0393500e49422926", + "0x90770244500293500a45c0297102445c0293500a0483b8122300149a805", + "0x297102443c0293500a0483b8122700149a805224014b90122240149a805", + "0x3b8120ae0149a805216014b88122160149a8050241dc0903500a4d40290f", + "0xb90120b60149a8050241dc0905900a4d40290a00a5c40910a00a4d402812", + "0x901d00a4d40290300a5c80910300a4d4028120ee0488380526a0142d805", + "0x2c85706a4e08a0182e60483080526a014318052e40483180526a01409077", + "0x9a8051fe014bb0120ca3fc0393500a188029750241880293500a1840e907", + "0x8c06500e5e00911800a4d40291800a3ec0906500a4d40286500a5dc09012", + "0x890121f61a40393500a3f8029140241f00293500a048bc8121fc0149a805", + "0x911f00a4d40291f00a4ac090f900a4d4028fb00a4e00901226a01434805", + "0x10d0061ec3e05c13500e3e43e02f09247c1c97a0241f00293500a1f00291d", + "0x9a80500c014850120244d40281205c0480913500a048038121ea1cc388b8", + "0x287700a448090f30ee01c9a8051e80148a0121e80149a80502442409012", + "0x7880506a0487880526a0147900521e0487900526a0147980527004809135", + "0x1c0121f00149a8051f0014958122520149a8052520145c0121de0149a805", + "0x38121de3d87c1292660147780526a014778052520487b00526a0147b005", + "0x7d81211a0149a8050e60141c0121e00149a8050e2014958120244d402812", + "0x178051de0480913500a0480381202486c028120380484600526a0147a805", + "0x28fb0242340293500a478028380243c00293500a12c0292b0240489a805", + "0x3f80725c0483f80526a0140912f0240489a8050240b80908c00a4d40291c", + "0x912900a4d40292900a2e00908100a4d40288700a4b40908700a4d40288c", + "0x293500a204029290242340293500a234028380243c00293500a3c00292b", + "0x848120244d40282f00a3bc0901226a01409007024204468f02524cc02881", + "0x918121100149a8051100148e8121100149a80502442c0908300a4d402812", + "0x293500a2243d80725c0483d80526a0140912f0242240293500a22041807", + "0x283f00a4ac0912700a4d40292700a2e00908e00a4d40288000a4b409080", + "0x9393300a2380293500a2380292902401c0293500a01c028380240fc02935", + "0x9a80520c0145c0120244d4028df00a0ac0901226a014090070242380383f", + "0x901226a014158050ae0480913500a048038120248700281203804875805", + "0x848120244d40281205c0487580526a014998051700480913500a37c0282b", + "0x918121d00149a8051d00148e8121d00149a80502416c090e700a4d402812", + "0x293500a4a84a00725c0484a00526a0140912f0244a80293500a3a073807", + "0x283900a4ac090eb00a4d4028eb00a2e0090e200a4d4028e300a4b4090e3", + "0x7593300a3880293500a3880292902401c0293500a01c028380240e402935", + "0x293500a048848120244d4028b800a4280901226a0140900702438803839", + "0x289b1c201c918121360149a8051360148e8121360149a80502442c090e1", + "0x292d02427c0293500a2704e80725c0484e80526a0140912f02427002935", + "0x901900a4d40281900a4ac0900c00a4d40280c00a2e0090e000a4d40289f", + "0x90e000e0640613300a3800293500a3800292902401c0293500a01c02838", + "0x90070240e402a1d2662e00393500e01c0282602401c0293500a01402824", + "0x28730240640293500a030028710240300293500a4cc028060240489a805", + "0x913200a4d40281800a3d00901a00a4d4028b800a3d40901800a4d402819", + "0x1b0051e60481b00526a014090770240489a80502401c0901243c0140901c", + "0xbd8122640149a8051760147a0120340149a8050720147a8121760149a805", + "0x293500e4c8028f20240dc0293500a070029380240700d00726a0140d005", + "0x2a2004c0900393500e37c090071e20480913500a048038120680150f8df", + "0x1200526a014120051700480913500a0dc0290a0240489a80502401c0902e", + "0x1600500c0480913500a0480381205e0151082c05601c9a80703401413012", + "0x7a8122360149a805212014398122120149a80520c0143881220c0149a805", + "0x3812024888028120380489180526a0148d8051e80488e80526a01415805", + "0x28f50244b80293500a4bc028f30244bc0293500a0483b8120244d402812", + "0x9691d00e4d40291d00a5ec0912300a4d40292e00a3d00911d00a4d40282f", + "0x90070240e002a232560149a807246014790122580149a80525a0149c012", + "0x913500a0480381224e0151212825201c9a807256090038f10240489a805", + "0x393500e474028260244a40293500a4a4028b80240489a80525801485012", + "0x28f50244940293500a1040297c0240489a80502401c0912400a8942083f", + "0x9007024049130050240700912600a4d40292500a5f40904500a4d40283f", + "0x920051ea0482480526a0148f8052fc0488f80526a014090770240489a805", + "0x904b08a01c9a80508a014bd81224c0149a805092014be81208a0149a805", + "0x281200e0488c00544e4700293500e4980297f0244780293500a12c02938", + "0x8a00523a0488a00526a0148b8050e20488b80526a0148e00500c04809135", + "0x900702442c1a90f1708a09c11200e4d40391425201c9b0122280149a805", + "0x2280504c0488900526a014890051700480913500a4780290a0240489a805", + "0x2d80526a014850052f80480913500a048038120b20151490a0ae01c9a807", + "0x922a00a0480e0122060149a8050b6014be81220e0149a8050ae0147a812", + "0x906300a4d40281d00a5f80901d00a4d4028120ee0480913500a04803812", + "0x393500a41c0297b02440c0293500a18c0297d02441c0293500a164028f5", + "0x906500a8ac7f80526a01c818052fe0483100526a0143080527004830907", + "0x907c00a4d4028fe00a1c4090fe00a4d4028ff00a0180901226a01409007", + "0x7b0f81f22e1160fb0d201c9a8070f8448039360241f00293500a1f00291d", + "0x906900a4d40286900a2e00901226a014310052140480913500a04803812", + "0x287100a0180901226a014090070241cc02a2d0e20180393500e41c02826", + "0x28f50241dc0293500a3d0028730243d00293500a3d4028710243d402935", + "0x900702404917005024070090f200a4d40287700a3d0090f300a4d402806", + "0x398051ea0487780526a014788051e60487880526a014090770240489a805", + "0x790121e00149a8051e60149c0121e40149a8051de0147a0121e60149a805", + "0x9a80711a1a4038f10240489a80502401c0908c00a8bc4680526a01c79005", + "0x9a80510e3ec9c12804c0e4d40120244d40281200e0484080546021c3f807", + "0x780052660483f80526a0143f8051700484400526a0144180535204841805", + "0x9a80502401c090881e01fc5c0051100149a805110014d50121e00149a805", + "0x913500a3ec0287c0240489a805250014778120244d40282600a3bc09012", + "0x90124620140901c0242240293500a204028b80240489a8052700143e012", + "0x28ef0240489a80504c014778120244d40288c00a15c0901226a01409007", + "0x348051700480913500a4e00287c0240489a8051f60143e0120244d402928", + "0x29330242000293500a1ec029ab0241ec0293500a0483b8121120149a805", + "0x281200e048400f01122e00288000a4d40288000a6a8090f000a4d4028f0", + "0x9a80504c014778120244d4028f600a1f00901226a0147c0050f804809135", + "0x913500a4e00287c0240489a805250014778120244d40290700a0ac09012", + "0x2b8120244d40281200e0480923200a0480e01211c0149a8051f20145c012", + "0x28ef0240489a80520e014158120244d40282600a3bc0901226a01432805", + "0x90770242380293500a448028b80240489a8052700143e0120244d402928", + "0xd50120c40149a8050c4014998121ce0149a8051d6014d58121d60149a805", + "0x283500a1f00901226a0140900702439c3108e1700147380526a01473805", + "0x9a80508a014158120244d40282600a3bc0901226a014858050f804809135", + "0x923300a0480e0121d00149a80521e0145c0120244d40292800a3bc09012", + "0x158120244d40282600a3bc0901226a0148c0050ae0480913500a04803812", + "0x3b8121d00149a8052520145c0120244d40292800a3bc0901226a01422805", + "0x911e00a4d40291e00a4cc0909400a4d40292a00a6ac0912a00a4d402812", + "0x130051de0480913500a04803812128478740b800a2500293500a250029aa", + "0x28120380487180526a014938051700480913500a4740282b0240489a805", + "0x913500a098028ef0240489a8050700142b8120244d40281200e04809234", + "0x7100526a0140907702438c0293500a090028b80240489a80523a01415812", + "0x9a8051c2014d50122580149a805258014998121c20149a8051c4014d5812", + "0x5c0120244d40281a00a0ac0901226a01409007024384960e317001470805", + "0x1a0050ae0480913500a048038120248d4028120380484d80526a01417005", + "0x28120ee0484d80526a014090051700480913500a0680282b0240489a805", + "0x29aa0240dc0293500a0dc029330242740293500a270029ab02427002935", + "0x380504c0480380526a014028050480484e8371362e00289d00a4d40289d", + "0x600526a014998052f80480913500a048038120720151b13317001c9a807", + "0x923700a0480e0120300149a805018014be8120320149a8051700147a812", + "0x913200a4d40281a00a5f80901a00a4d4028120ee0480913500a04803812", + "0x393500a0640297b0240600293500a4c80297d0240640293500a0e4028f5", + "0x903700a8e00e00526a01c0c0052fe0485d80526a0141b0052700481b019", + "0x903400a4d4028df00a1c4090df00a4d40281c00a0180901226a01409007", + "0x1602b05c2e11c82604801c9a807068048039360240d00293500a0d00291d", + "0x902400a4d40282400a2e00901226a0145d8052140480913500a04803812", + "0x290600a5f00901226a0140900702442402a3a20c0bc0393500e06402826", + "0x901c02448c0293500a46c0297d0244740293500a0bc028f502446c02935", + "0x9a80525e014bf01225e0149a8050241dc0901226a014090070240491d805", + "0x8e8052700489180526a014970052fa0488e80526a014848051ea04897005", + "0x901226a014090070244ac02a3c2580149a807246014bf81225a0149a805", + "0x293500a4a40291d0244a40293500a0e0028710240e00293500a4b002806", + "0x9a8050241dc0901226a014090070244a002a3d0244d40392900a36c09129", + "0x28120380482080526a0141f80535a0481f80526a014938052e204893805", + "0x9200526a014090770240489a805250014698120244d40281200e0480923e", + "0x9a805082014d70120820149a80524a014d681224a0149a805248014b9012", + "0x28b802447c0293500a498029b00244980293500a1141300735e04822805", + "0x291f00a4d40291f00a6c40912d00a4d40292d00a4cc0902400a4d402824", + "0x282600a1f00901226a014958050ae0480913500a0480381223e4b4120b8", + "0x282400a2e00904b00a4d40284900a6c80904900a4d4028120ee04809135", + "0x120b800a12c0293500a12c029b10244b40293500a4b40293302409002935", + "0x913500a0b00287c0240489a8050560143e0120244d40281200e0482592d", + "0x901247e0140901c0244780293500a0b8028b80240489a80503201415812", + "0x28b80240489a805032014158120244d40283700a15c0901226a01409007", + "0x998122300149a805238014d90122380149a8050241dc0911e00a4d402812", + "0x90800244605d91e1700148c00526a0148c0053620485d80526a0145d805", + "0x28e70240680293500a048758120300149a805032014470120320149a805", + "0x9a8070300685c0052664a80901800a4d40281800a3a00901a00a4d40281a", + "0x293500a2ec0291d0240489a80502401c090df06e0705c2401760d8990b8", + "0x5d81200e3c40903600a4d40283600a0e00913200a4d40293200a4ac090bb", + "0x1a00526a0141a0051700480913500a0480381204c0152082406801c9a807", + "0x913500a04803812212418178b84840b01582e1704d40383626401c4a012", + "0x9a805236014708122360149a805058014710120580149a80505801471812", + "0x778120244d40292f00a3bc0901226a014918051380489692e25e48c8e839", + "0xda81223a0149a80523a014d98120244d40292d00a2740901226a01497005", + "0x1a00526a0141a0051700489580526a014120051b40489600526a0148e805", + "0x9a805256014db0120560149a8050560141c01205c0149a80505c01495812", + "0x258122520e40393500a0e4029b70240e00293500a0e0028a20240e095807", + "0x904107e49c9413326a014948380560b81a0393700489480526a01494805", + "0x281200e048928054864900293500e104029ba0244b00293500a4b0029b9", + "0xde81223e4cc0393500a4cc029bc0244982280726a0140600537604809135", + "0x9a805096014df8120244d40284900a6f80911c23c12c2493326a0148f805", + "0x284500a1840911807201c9a805072014db8120244d40291e00a70009012", + "0x912800a4d40292800a2e00911400a4d40291723001ce081222e11403935", + "0x8a11c00e4a0999c30244500293500a450029c202401c0293500a01c0292c", + "0x910b00a4d4028121d60481a80526a0148780511c048879382242e09a805", + "0x5c2440b24282b8b826a01c1a90b07e49c9992a02442c0293500a42c028e7", + "0xdf0120c41843181d2664d40293300a6f40901226a0140900702440c8385b", + "0x29b70240489a8050c2014e00120244d40286300a6fc0901226a0140e805", + "0x9a8050ca3fc039c10241949300726a014930050c20487f83900e4d402839", + "0x7f0053840489c00526a0149c0052580488900526a014890051700487f005", + "0x28fb00a238090fb0d21f05c13500a3f8311382244cce18121fc0149a805", + "0x7c0051ce0482b80526a0142b8052560487c00526a014090eb0243e402935", + "0x5c13500e3e47c10a0ae4cc950120b20149a8050b20148e8121f00149a805", + "0x3b80526a014920053880480913500a048038121e83d4398b848a1c4030f6", + "0x9a8051e4014308120244d4028f300a718090f21e601c9a8050ee014e2812", + "0x908c11a01c9a80508a014318121e03bc0393500a3c4028630243c479007", + "0x9a805102014778120244d40287f00a7200908110e1fc5c13500a4b0029c7", + "0x28ff0242244400726a014418050c4048418f000e4d4028f000a18409012", + "0x4708000e4d40287b00a1880907b11801c9a805118014308120244d402889", + "0x293500a200028650243ac0293500a220028650240489a80511c0147f812", + "0x287100a4740900600a4d40280600a0e0090f600a4d4028f600a4ac090e7", + "0x90770240489a80502401c0901248c0489a8071ce3ac039c90241c402935", + "0xe0121280149a805254014d68122540149a8051d0014b90121d00149a805", + "0x28e300a5c4090e300a4d4028120ee0480913500a0480381202491c02812", + "0x310121c23c00393500a3c0028610242500293500a388029ad02438802935", + "0x4e80726a014460050c40480913500a26c0287c0242704d80726a01470805", + "0x900702437402a481c00149a8071380147c8120244d40289d00a1f00909f", + "0x6d80535c0486d80526a0144f8050d20480913500a380028570240489a805", + "0x281200e0480924900a0480e0121440149a8051b4014d68121b40149a805", + "0x28d600a6b4090d600a4d40289f00a1a40901226a0146e8050ae04809135", + "0x28650240489a8051a80147f8121a83540393500a3c00286202428802935", + "0x924a0244d4038ac1a601ce48121580149a805024728090d300a4d4028d5", + "0x90d200a4d4028a700a5c8090a700a4d4028120ee0480913500a04803812", + "0x90770240489a80502401c090124960140901c02433c0293500a348029ad", + "0xe601219e0149a805196014d68121960149a80519a014b881219a0149a805", + "0x9a805194250039cd0243280293500a328029ad0243280293500a33c51007", + "0x4680511a0487780526a0147780511a0483e00526a0143e00517004864005", + "0x293500a320029ad0242f46000726a014468ef0f82e0e701211a0149a805", + "0x5d0051f20485d00526a0145d00535a0485d00526a0145e8c800e730090c8", + "0x830120244d4028cc00a15c0901226a0140900702400002a4c1980149a807", + "0x28370240489a805256014e78120244d40288700a7200901226a0141c805", + "0x5c0122ce0149a8050b21c4038dd0240489a8051e40141b8120244d402926", + "0xb500526a01434805258048b480526a0147b005256048b400526a01460005", + "0x924d00a0480e0122d80149a8052ce0148e8122d60149a80500c0141c012", + "0xb716d00e4d4028f200a18c0901226a014000050ae0480913500a04803812", + "0xb80050c4048b816e00e4d40296e00a184091372de01c9a80524c01431812", + "0x917326e01c9a80526e014308120244d40297200a3fc091722e201c9a805", + "0x293500a5c4028650240489a8052ec0147f8122ec5d40393500a5cc02862", + "0x90070240492701226a01cbc17700e7240917800a4d40297500a19409177", + "0xbd00535a048bd00526a014bc8052e4048bc80526a014090770240489a805", + "0x293500a0483b8120244d40281200e0480924f00a0480e0122f60149a805", + "0x296e00a1840917b00a4d40297d00a6b40917d00a4d40297c00a5c40917c", + "0x310120244d40297f00a1f0091362fe01c9a8052fc014310122fc5b803935", + "0xd500526a01c9b0051f20480913500a6a00287c0246a4d400726a0149b805", + "0x9a805352014348120244d4029aa00a15c0901226a014090070246ac02a50", + "0x2812038048d780526a014d700535a048d700526a014d680535c048d6805", + "0x293500a6a4028690240489a8053560142b8120244d40281200e04809251", + "0xd90051fe048d91b100e4d40296e00a188091af00a4d4029b000a6b4091b0", + "0xd9807392048da80526a014091ca0246cc0293500a6c4028650240489a805", + "0x29720246d80293500a0483b8120244d40281200e048092520244d4039b5", + "0x900702404929805024070091b800a4d4029b700a6b4091b700a4d4029b6", + "0xdd00535a048dd00526a014dc8052e2048dc80526a014090770240489a805", + "0x91bb00a4d4029bb00a6b4091bb00a4d4029b835e01ce60123700149a805", + "0x9a8052da014468121800149a8051800145c0123780149a8053765ec039cd", + "0x91be37a01c9a8052de5b4600b839c048b780526a014b780511a048b6805", + "0x9a80537e014d681237e0149a80537c6f0039cc0246f00293500a6f0029ad", + "0x28570240489a80502401c091c100a950e000526a01cdf8051f2048df805", + "0xe21c30724d4029c200a740091c207201c9a805072014db8120244d4029c0", + "0xe480523a048e480526a014091d10247200293500a70c0289f02471ce31c5", + "0x293500a7100289f024730e500726a014e41c90d22e0e90123920149a805", + "0x7f01239e7380393500a734e61ca170748091cc00a4d4029cc00a474091cd", + "0x9a8053a073ce70b83a4048e780526a014e780523a048e800526a014e2805", + "0x5c1d20247480293500a7480291d02474c0293500a718028fe024748e8807", + "0x9a8053a80148e8123aa0149a80538e0144f8123a84ec0393500a74ce91d1", + "0x925500a4d402a5500a474092553ac01c9a8053aa7509d8b83a4048ea005", + "0x9a8050243ac0925800a4d402a5700a238092574ac01c9a8054aa6f4039d3", + "0x12b005170048eb00526a014eb0052580492c80526a0152c8051ce0492c805", + "0x13025f4bc2e12ea5c4b69685c13500e9612c8061ec4cc950124ac0149a805", + "0x12e00526a0152e00523a0492b00526a0152b0051700480913500a04803812", + "0x12d8050700492d00526a0152d0052560493126100e4d402a5c4ac01c9d812", + "0x901226a0140900702499402a644c60149a8074c4014ea0124b60149a805", + "0x2a6800a0dc092694d099c5c13500a998029d60249980293500a98c029d5", + "0x1338054aa0493508700e4d40288700a9540901226a0153480506e04809135", + "0x901226a014090070240493601226a01d35a6a00e9580926b4ce01c9a805", + "0x293500a96c028380249680293500a9680292b0249840293500a984028b8", + "0x1368050960493683900e4d40283900a6dc0912b00a4d40292b00a2880925b", + "0x2a580249c53826f4dc4cc9a8054da4ad2da5a4c20e52b8124da0149a805", + "0x13a80526a015390054b20480913500a048038124e801539a7200a4d403a71", + "0x3a764ee01ce48124ee9d40393500a9d402a5a0249d80293500a048e5012", + "0x13ea7c4f69e93c83926a0141c8053a00480913500a048038120249e009135", + "0x293500a9fc0291d0249fc0293500a0492d8124fc0149a8054f20144f812", + "0x8e8125020149a8054f40144f8125004f80393500a9f93f9d61707480927f", + "0x2a7b00a3f80913f50401c9a805502a009f0b83a40494000526a01540005", + "0x142a8400e4d402a8327ea085c1d20244fc0293500a4fc0291d024a0c02935", + "0x1432855082e0e901250a0149a80550a0148e81250c0149a8054f80147f012", + "0x928800a4d402a8800a4740928900a4d402a7d00a27c0928850e01c9a805", + "0x1370073a60494580526a0154580523a04945a8a00e4d402a89510a1c5c1d2", + "0x913d00a4d4028121d60494700526a0154680511c04946a8c00e4d402a8b", + "0x293500aa30028b8024a280293500aa280292c0244f40293500a4f4028e7", + "0x9007024a554a293170a4948a9051e2e09a80751c4f53826f2664a80928c", + "0x291d024a400293500aa4002838024a3c0293500aa3c0292b0240489a805", + "0x3812532a6003a97278a580393500e99c43a8c1709700929100a4d402a91", + "0x3a5f024a6c0293500a048e50125340149a8052780152f0120244d402812", + "0x14b00526a0154b0051700494e00526a0154e0054c00494e00526a0154da75", + "0x9a8055220144e8120244d40281200e0494f00553a0489a80753801530812", + "0x913500aa680287c0240489a8050b20144e8120244d40287100a27409012", + "0x15000526a0155000523a0495000526a01409262024a7c0293500a04884812", + "0x2aa154401c970125440149a8050244bc092a100a4d402aa053e01c91812", + "0x292b024a580293500aa58028b8024a900293500aa8c02a63024a8c02935", + "0x929000a4d402a9000a0e00928a00a4d402a8a00a4b00928f00a4d402a8f", + "0xe50120244d40281200e04952290514a3d4b03900aa900293500aa9002a65", + "0x15300526a015530054c00495300526a0154d2a500e97c092a500a4d402812", + "0x1338120244d402aa800a718092a9550a9c9d13326a0154f2a652c2e133012", + "0x293500a04934812558aac0393500aa9c02a68024aa80293500aaa49d007", + "0x2a6a024abd5600726a015560054b4049572ad00e4d402aad00a968092ad", + "0x3812568acc03ab2562ac00393500eabd572aa1709ac092ae00a4d402aae", + "0x5c01256aab00393500aab002a5a0240489a8055620143e0120244d402812", + "0x913500a04803812024ad80913500eab55a8073920495800526a01558005", + "0x2a5a024ae00293500a048e50120244d40281200e048092b700a0480e012", + "0x913500a04803812024ae40913500eae09c8073920489caab00e4d402aab", + "0x901226a0154880513a0480913500a1640289d0240489a8050e20144e812", + "0x92ba00a4d402ab000a2e00901226a015560050f80480913500aaac0287c", + "0x28fe024af00293500aab0028fe0240489a80502401c090125760140901c", + "0x92bf00a4d402abe57801d3701257c0149a8050249b4092bd00a4d402aab", + "0x9a8055800148e8125800149a80557aafc03a6f024afc0293500aafc0291d", + "0x292b024b080293500aac0028b8024b040293500ab01488074de04960005", + "0x92c500a4d402a9000a0e0092c400a4d402a8a00a4b0092c300a4d402a8f", + "0x287c0240489a80502401c0901258e0140901c024b180293500ab040291d", + "0x2c80513a0480913500a1c40289d0240489a80555a0143e0120244d402ab4", + "0x2aac00a1f00901226a015558050f80480913500aa440289d0240489a805", + "0x9a8050249c0092c800a4d4028122120495d00526a0155980517004809135", + "0x912f024b280293500ab25640072460496480526a0156480523a04964805", + "0x92cd00a4d402acc00a98c092cc00a4d402aca59601c970125960149a805", + "0x293500aa280292c024a3c0293500aa3c0292b024ae80293500aae8028b8", + "0x14528f5740e402acd00a4d402acd00a9940929000a4d402a9000a0e00928a", + "0x913500a9d40287c0240489a805532014e40120244d40281200e04966a90", + "0x901226a0142c80513a0480913500a1c40289d0240489a8055220144e812", + "0x92cf00a4d402acf00a474092cf00a4d4028124e20496700526a01409109", + "0x9a8055a0b440392e024b440293500a048978125a00149a80559eb3803923", + "0x1478052560494c00526a0154c0051700496980526a015690054c604969005", + "0x1328125200149a8055200141c0125140149a8055140149601251e0149a805", + "0x287c0240489a80502401c092d3520a2947a980720156980526a01569805", + "0x3880513a0480913500a99c029c80240489a80510e014e40120244d402a75", + "0x14aad400e4b8092d400a4d40281225e0480913500a1640289d0240489a805", + "0x958125180149a8055180145c0125ac0149a8055aa015318125aa0149a805", + "0x14a00526a0154a0050700494500526a015450052580494980526a01549805", + "0x901226a01409007024b594a28a526a301c8055ac0149a8055ac01532812", + "0xe80120244d402a6700a7200901226a014438053900480913500a9d40287c", + "0x28124b60496d80526a0156b80513e0496d2d95b05056b83926a0141c805", + "0x16eadc00e4d402adb2847585c1d20245080293500a5080291d02450802935", + "0x16f2dd5b82e0e90125ba0149a8055ba0148e8125bc0149a8052820144f812", + "0x92e000a4d402ae000a474092e100a4d402ad800a3f8092e05be01c9a805", + "0x17180523a0497200526a0156c8051fc04971ae200e4d402ae15c0b7c5c1d2", + "0x293500ab680289f024b997280726a015722e35c42e0e90125c60149a805", + "0x8e8125d2ba00393500ab9d732e5170748092e600a4d402ae600a474092e7", + "0x9a8055d6014470125d6ba80393500aba5370073a60497480526a01574805", + "0x2ae800a4b0092ed00a4d402aed00a39c092ed00a4d4028121d604976005", + "0x1770b826a01d762ed4e09bc9992a024ba80293500aba8028b8024ba002935", + "0x92c200a4d402aea00a2e00901226a01409007024bcd792f1170bc1778b2", + "0x293500a2c802838024b100293500aba00292c024b0c0293500abb80292b", + "0x2ac300a33c092f400a4d402ac200a348092c600a4d402aef00a474092c5", + "0x2871024bdc0293500ab14028cd024bd80293500ab1002a72024bd402935", + "0x287100a2740901226a014090070240497c805024070092f800a4d402ac6", + "0x2af35f401c970125f40149a8050244bc0901226a0142c80513a04809135", + "0x292b024ba80293500aba8028b8024bf00293500abec02a63024bec02935", + "0x92f200a4d402af200a0e0092e800a4d402ae800a4b0092f100a4d402af1", + "0x830120244d40281200e0497e2f25d0bc57503900abf00293500abf002a65", + "0x289d0240489a8054ce014e40120244d40288700a7200901226a0141c805", + "0x28b8024bf40293500a9d002a630240489a8050b20144e8120244d402871", + "0x91d600a4d4029d600a4b00926f00a4d402a6f00a4ac0926e00a4d402a6e", + "0x17ea703ac9bd3703900abf40293500abf402a650249c00293500a9c002838", + "0xe78120244d402a6700a7200901226a014438053900480913500a04803812", + "0x2afe00a27c0930128ec017fafe0724d40283900a7400901226a01495805", + "0xeb0b83a40498180526a0158180523a0498180526a0140925b024c0802935", + "0x293500ac140291d024c180293500abfc0289f024c158200726a01581303", + "0x8e8126120149a8056000147f012610c1c0393500ac1982b0417074809305", + "0x294700a3f80930b61401c9a805612c21838b83a40498400526a01584005", + "0x18730d00e4d402b0c616c285c1d2024c2c0293500ac2c0291d024c3002935", + "0x187b0e61a2e0e901261c0149a80561c0148e81261e0149a8056020144f812", + "0x18900726a01588a6100e74c0931100a4d402b1100a4740931162001c9a805", + "0x9a80562a0147381262a0149a8050243ac0931400a4d402b1300a23809313", + "0x12d1332540498900526a015890051700498800526a015880052580498a805", + "0x5c0120244d40281200e0498e31b6342e18cb1862ec585c13500ec518aa5b", + "0x17b00526a015880052580497a80526a0158b0052560497a00526a01589005", + "0x28595f001c6e8125f00149a8056300148e8125ee0149a80562e0141c012", + "0x5c01263c0149a8050e2c74038dd024c740293500ac740291d024c7402935", + "0x19080526a0157b0052580499000526a0157a8052560498f80526a0157a005", + "0x932400a0480e0126460149a80563c0148e8126440149a8055ee0141c012", + "0x978120244d40287100a2740901226a0142c80513a0480913500a04803812", + "0x19300526a015928054c60499280526a0158e14900e4b80914900a4d402812", + "0x9a805620014960126340149a805634014958126240149a8056240145c012", + "0x18d3120720159300526a015930054ca0498d80526a0158d80507004988005", + "0x9a80510e014e40120244d40283900a4180901226a01409007024c998db10", + "0x913500a4ac029cf0240489a8050e20144e8120244d40285900a27409012", + "0x9a8054c20145c0120244d402b2700a3500932864e01c9a8054ca0146a812", + "0x1940051f60499580526a0152d8050700499500526a0152d00525604994805", + "0x9a805072014830120244d40281200e0480932c00a0480e0122900149a805", + "0x913500a1c40289d0240489a8050b20144e8120244d40288700a72009012", + "0x293500a9780292b024ca40293500a958028b80240489a805256014e7812", + "0x9a8050244bc0914800a4d402a6000a3ec0932b00a4d402a5f00a0e00932a", + "0x28b8024cbc0293500acb802a63024cb80293500a5219680725c04996805", + "0x91d600a4d4029d600a4b00932a00a4d402b2a00a4ac0932900a4d402b29", + "0x197b2b3acca99483900acbc0293500acbc02a65024cac0293500acac02838", + "0xe40120244d40283900a4180901226a014e08050ae0480913500a04803812", + "0x933000a4d4028590e201c6e8120244d40292b00a73c0901226a01443805", + "0x293500a1a40292c024c800293500a3d80292b024c7c0293500a6f4028b8", + "0x2b1f00a3480932300a4d402b3000a4740932200a4d40280600a0e009321", + "0x28cd0245a80293500ac8402a720245a40293500ac80028cf0245a002935", + "0x933100a4d40296c00a9d00916c00a4d402b2300a1c40916b00a4d402b22", + "0x293500a5a40292b0245a00293500a5a0028b8024cc80293500acc402a75", + "0x2b3200a9940916b00a4d40296b00a0e00916a00a4d40296a00a4b009169", + "0x9a8052480153b0120244d40281200e0499916b2d45a4b403900acc802935", + "0x913500a498028370240489a8050b20144e8120244d40292c00a9dc09012", + "0x901226a0149580539e0480913500a114028370240489a80507201483012", + "0x293500acd002a63024cd00293500a3d19980725c0499980526a0140912f", + "0x286900a4b00907300a4d40287300a4ac0907c00a4d40287c00a2e009335", + "0x3e03900acd40293500acd402a650243d40293500a3d4028380241a402935", + "0x292c00a9dc0901226a014920054ec0480913500a0480381266a3d434873", + "0x9a805072014830120244d40292600a0dc0901226a0149980509204809135", + "0x19b00526a0140912f0240489a805256014e78120244d40284500a0dc09012", + "0x291200a2e00933800a4d402b3700a98c0933700a4d40290366c01c97012", + "0x28380244e00293500a4e00292c02416c0293500a16c0292b02444802935", + "0x381267041c9c05b2240e402b3800a4d402b3800a9940910700a4d402907", + "0x998050920480913500a4b002a770240489a805018014178120244d402812", + "0x292500a98c0901226a0149580539e0480913500a0e4029060240489a805", + "0x292c02449c0293500a49c0292b0244a00293500a4a0028b8024ce402935", + "0x2b3900a4d402b3900a9940903f00a4d40283f00a0e00900700a4d402807", + "0x28ef0240489a805018014178120244d40281200e0499c83f00e49c94039", + "0x281225e0480913500a0e4029060240489a805266014248120244d402824", + "0x5c0126780149a805676015318126760149a805212ce80392e024ce802935", + "0x380526a014038052580481780526a014178052560481a00526a0141a005", + "0x8300705e0d01c8056780149a8056780153281220c0149a80520c0141c012", + "0x901226a014998050920480913500a0300282f0240489a80502401c0933c", + "0x8e81267a0149a80502429c0914600a4d4028122120480913500a0e402906", + "0x293500a098028b8024cf80293500acf4a30072460499e80526a0159e805", + "0x2b3e00a3ec0934100a4d40283600a0e00934000a4d40293200a4ac0933f", + "0x913500a0300282f0240489a80502401c090126860140901c024d0802935", + "0x19f80526a014090051700480913500a4cc028490240489a80507201483012", + "0x9a8051be0147d8126820149a80506e0141c0126800149a80503801495812", + "0x1a28054c6049a280526a015a134400e4b80934400a4d40281225e049a1005", + "0x960126800149a8056800149581267e0149a80567e0145c01268c0149a805", + "0x1a300526a015a30054ca049a080526a015a08050700480380526a01403805", + "0x5c13500e2e0028071280480913500a4cc02849024d19a0807680cfc1c805", + "0xc00526a0140c0051c60480913500a0480381206c4c80d0b868e0600c80c", + "0x4e0120480d06f8370380e49a805176014708121760149a80503001471012", + "0x289d0240489a805068014778120244d4028df00a3bc0901226a0141b805", + "0xdb81204c0149a805038014da8120380149a805038014d98120244d402824", + "0x289f0244248302f0580ac1c93500a0b8029d00240b81c80726a0141c805", + "0xe901223a0149a80523a0148e81223a0149a8050247440911b00a4d40282b", + "0x292f00a4740912e00a4d40282c00a27c0912f24601c9a805236474038b8", + "0x9580526a014178051fc0489612d00e4d40292e25e48c5c1d20244bc02935", + "0x28fe0244a41c00726a0149592c25a2e0e90122580149a8052580148e812", + "0x393500a4a0948381707480912900a4d40292900a4740912800a4d402906", + "0x938b83a40481f80526a0141f80523a0482080526a0148480513e0481f927", + "0x9a80524a048039d30244940293500a4940291d0244949200726a0142083f", + "0x60052560482480526a014090eb02447c0293500a4980288e02449822807", + "0x9601204c0149a80504c014dc8120920149a805092014738120180149a805", + "0x391f092064061332540482280526a014228051700489200526a01492005", + "0x9a80508a0145c0120244d40281200e0488a1172302e1a411c23c12c5c135", + "0x958122704480393500a470228072760488e00526a0148e00523a04822805", + "0x8780526a01c9c0053a80488f00526a0148f0050700482580526a01425805", + "0x29c80244282b90b1704d40282600a71c0901226a014090070240d402b49", + "0x29d60241640293500a43c029d50240489a805214014778120244d40290b", + "0x2b80726a0142b8054aa0480913500a40c0283702440c8385b1704d402859", + "0x3812024d280913500e18c0e8074ac0483185b00e4d40285b00a9540901d", + "0x90eb0241880293500a1840288e0241840293500a048400120244d402812", + "0x950120c40149a8050c4014740121fe0149a8051fe014738121fe0149a805", + "0x913500a048038121f23ec348b86961f07f0651704d4038621fe47825933", + "0x9a8051fc0141c0120ca0149a8050ca014958120f80149a8050f80148e812", + "0x901226a0140900702401802b4c1ec3e00393500e1f0890071e20487f005", + "0x293500a1940292b0243e00293500a3e0028b80241c40293500a3d8028da", + "0x283900a12c0907100a4d40287100a288090fe00a4d4028fe00a0e009065", + "0x3b8053740483b8f41ea1cc9993500a0e4388fe0ca3e01c9b80240e402935", + "0x393500e16c2b8731709700901226a014090070243c802b4d1e60149a807", + "0xe20121180149a8051de0152f0120244d40281200e048468f000ed38778f1", + "0x913500a21c029c60242044380726a0143f80538a0483f80526a01479805", + "0x1338121001ec448b826a0144608300e9e40908810601c9a80510201431012", + "0x293500a238028b80243ac0293500a224028fe0242380293500a20078807", + "0x9a8050241dc0901226a0140900702439c02b4f0244d4038eb00a36c0908e", + "0x440074f40489500526a0149500535a0489500526a014740052e404874005", + "0x90e20f601c9a8050f60152d0121c60149a8050247280909400a4d40292a", + "0x9a80502401c090126a00489a8071c6388039c90242500293500a250029ad", + "0x9a805136014d68121360149a8051c2014b90121c20149a8050241dc09012", + "0x909d00a4d4028120ee0480913500a04803812024d44028120380484e005", + "0x293500a270029ae0242700293500a27c029ad02427c0293500a27402971", + "0x3d80735e0486e80526a0147009400e734090e000a4d4028e000a6b4090e0", + "0x910700a4d40290700a2340908e00a4d40288e00a2e0090db00a4d4028dd", + "0x6d005170048510da00e4d4028db20e2385c27b02436c0293500a36c0288d", + "0x1c0122480149a805248014960121ea0149a8051ea014958121b40149a805", + "0x90a21e84907a8da0720145100526a014510054f80487a00526a0147a005", + "0x287c0240489a80520e0141b8120244d4028e700a34c0901226a01409007", + "0x28124fa0486b00526a014091090240489a8051100147f8120244d40287b", + "0x978121a80149a8051aa358039230243540293500a3540291d02435402935", + "0x5380526a014560054fc0485600526a0146a0d300e4b8090d300a4d402812", + "0x9a805248014960121ea0149a8051ea0149581211c0149a80511c0145c012", + "0x7a88e0720145380526a014538054f80487a00526a0147a00507004892005", + "0x9a8051e60153b0120244d40288d00a7200901226a0140900702429c7a124", + "0x6780526a014092710243480293500a048848120244d40290700a0dc09012", + "0x9a8050244bc090cd00a4d4028cf1a401c9181219e0149a80519e0148e812", + "0x28b80243200293500a32802a7e0243280293500a3346580725c04865805", + "0x912400a4d40292400a4b0090f500a4d4028f500a4ac090f000a4d4028f0", + "0x640f42483d47803900a3200293500a32002a7c0243d00293500a3d002838", + "0xe40120244d40285b00a7200901226a0148380506e0480913500a04803812", + "0x907300a4d40287300a2e0090c000a4d4028f200a9f80901226a0142b805", + "0x293500a3d0028380244900293500a4900292c0243d40293500a3d40292b", + "0x913500a048038121803d0920f50e60e4028c000a4d4028c000a9f0090f4", + "0x901226a0148380506e0480913500a16c029c80240489a8050ae014e4012", + "0x8e8121740149a80502429c090bd00a4d4028122120480913500a0e402906", + "0x293500a018028b80243300293500a2e85e8072460485d00526a0145d005", + "0x28cc00a3ec0916800a4d4028fe00a0e00916700a4d40286500a4ac09000", + "0x913500a15c029c80240489a80502401c090126a40140901c0245a402935", + "0x901226a0141c80520c0480913500a41c028370240489a8050b6014e4012", + "0x293500a3ec0283802459c0293500a1a40292b0240000293500a448028b8", + "0x29692d401c970122d40149a8050244bc0916900a4d4028f900a3ec09168", + "0x292b0240000293500a000028b80245b00293500a5ac02a7e0245ac02935", + "0x916800a4d40296800a0e00912400a4d40292400a4b00916700a4d402967", + "0xe40120244d40281200e048b616824859c0003900a5b00293500a5b002a7c", + "0x2a7f0240489a805072014830120244d40285b00a7200901226a0142b805", + "0x911200a4d40291200a2e00916e00a4d40296d00a4f80916d00a4d402907", + "0x293500a478028380244900293500a4900292c02412c0293500a12c0292b", + "0x913500a048038122dc4789204b2240e40296e00a4d40296e00a9f00911e", + "0xb780726a0141a8051aa0480913500a0e4029060240489a80504c0153b812", + "0x9a805096014958122e00149a8052240145c0120244d40296f00a35009137", + "0x2812038048b980526a0149b8051f6048b900526a0148f005070048b8805", + "0x913500a0e4029060240489a80504c0153b8120244d40281200e04809353", + "0x9a80522e0141c0122e20149a805230014958122e00149a80508a0145c012", + "0xb997500e4b80917500a4d40281225e048b980526a0148a0051f6048b9005", + "0x958122e00149a8052e00145c0122ee0149a8052ec0153f0122ec0149a805", + "0xb900526a014b90050700489200526a01492005258048b880526a014b8805", + "0x901226a014090070245dcb91242e25c01c8052ee0149a8052ee0153e012", + "0xbc80526a0141b17800e4b80917800a4d40281225e0480913500a0e402906", + "0x9a805034014958120240149a8050240145c0122f40149a8052f20153f012", + "0xbd0054f80489900526a014990050700480380526a014038052580480d005", + "0x28121000480913500a0e4028ef0245e8990070340481c8052f40149a805", + "0x990051ce0489900526a014090eb0240680293500a0600288e02406002935", + "0x5c13500e068990b800a4cc950120340149a805034014740122640149a805", + "0xe00526a0140e00523a0480913500a0480381206837c1b8b86a80705d836", + "0x381c02401c788121760149a8051760141c01206c0149a80506c01495812", + "0x902400a4d40282400a2e00901226a014090070240b802b5504c09003935", + "0x901226a0140900702446c84906170d581782c0562e09a8071760d803894", + "0x1c93500a474028e10244740293500a0bc028e20240bc0293500a0bc028e3", + "0x28ef0240489a80525e0144e0120244d40292300a26c0912c25a4b897923", + "0x289f0244ac0293500a4b80289f0240489a8052580144e8120244d40292d", + "0x9480526a0141c12b00e3740912b00a4d40292b00a4740903800a4d402826", + "0x9a8050580141c0120560149a805056014958122520149a8052520148e812", + "0x158071280480913500a04803812250015ab81226a01c948051b604816005", + "0x208051c60480913500a0480381208a494920b86b01041f9271704d40382c", + "0x2584923e0e49a80524c0147081224c0149a805082014710120820149a805", + "0x9a80523c014778120244d40284b00a3bc0901226a014248051380488e11e", + "0x9a80523e014da81223e0149a80523e014d98120244d40291c00a27409012", + "0x1a90f1704d40291800a71c091382244508b93326a0149980537a0488c005", + "0x2b80526a014091ca0240489a805216014778120244d40290f00a7200910b", + "0x9a8050b215c039af0241640293500a428029720244280293500a0483b812", + "0x958120480149a8050480145c01220e0149a80503216c1a8b85000482d805", + "0x1f80526a0141f8050700480380526a014038052580489380526a01493805", + "0x39270480654101220e0149a80520e015408120180149a80501801425812", + "0x2b591fe0149a8070c40149f8120c41843181d2060e49a80520e0308a03f", + "0x9a8050f80142b8120f83f80393500a3fc02a830240489a80502401c09065", + "0x3a840243ec0293500a0483b8120d20149a8052704487f11726649809012", + "0x8180526a014818051700487c00526a0147c80550a0487c80526a0147d869", + "0x9a8050c20141c0120c60149a8050c60149601203a0149a80503a01495812", + "0x9a80502401c090f80c218c0e9030720147c00526a0147c00550c04830805", + "0x913500a45c029be0240489a805224014e00120244d40293800aa1c09012", + "0x9a80503a014958122060149a8052060145c0121ec0149a8050ca01544012", + "0x7b00550c0483080526a014308050700483180526a014318052580480e805", + "0x293300a1240901226a014090070243d83086303a40c1c8051ec0149a805", + "0x293500a048978120244d40280c00a4180901226a0140c80506e04809135", + "0x120051700483980526a014388055100483880526a0142280600e4b809006", + "0x1c01200e0149a80500e014960122480149a805248014958120480149a805", + "0x907324a01c920240720143980526a0143980550c0489280526a01492805", + "0x28370240489a805266014248120244d40292800a34c0901226a01409007", + "0x28121580487a80526a014091090240489a805018014830120244d402819", + "0x958120ee0149a8051e83d4039230243d00293500a3d00291d0243d002935", + "0x7880526a0143b8051f60487900526a014160050700487980526a01415805", + "0x28370240489a805266014248120244d40281200e0480935a00a0480e012", + "0x830052560480913500a098028ef0240489a805018014830120244d402819", + "0x5c0121e20149a8052360147d8121e40149a8052120141c0121e60149a805", + "0x4680526a014790050700487800526a014798052560487780526a01412005", + "0x248120244d40281200e0480935b00a0480e0121180149a8051e20147d812", + "0x91090240489a805018014830120244d40281900a0dc0901226a01499805", + "0x392302421c0293500a21c0291d02421c0293500a048538120fe0149a805", + "0x4400526a0141b0052560484180526a014170051700484080526a0144387f", + "0x935c00a0480e0120f60149a8051020147d8121120149a8051760141c012", + "0x830120244d40281900a0dc0901226a014998050920480913500a04803812", + "0x908800a4d40283700a4ac0908300a4d40281200a2e00901226a01406005", + "0x293500a20c028d20241ec0293500a0d0028fb0242240293500a37c02838", + "0x287b00a32c0908d00a4d40288900a334090f000a4d40288800a33c090ef", + "0x2a880242380293500a2304000725c0484000526a0140912f02423002935", + "0x90f000a4d4028f000a4ac090ef00a4d4028ef00a2e0090eb00a4d40288e", + "0x293500a3ac02a860242340293500a2340283802401c0293500a01c0292c", + "0x9a80500a014998120240149a8050240145c0121d6234038f01de0e4028eb", + "0x1ae83900a4d40393300a0680913317001c5c13500a0140900703204802805", + "0x9a807032014130120320149a805170014120120244d40281200e04806005", + "0x7a81206c0149a805034014be0120244d40281200e048990056bc0680c007", + "0x3812024d7c028120380480e00526a0141b0052fa0485d80526a0140c005", + "0x28f502437c0293500a0dc0297e0240dc0293500a0483b8120244d402812", + "0x1b003400a4d40381c00a5fc0901c00a4d4028df00a5f4090bb00a4d402932", + "0x9a80504c0143881204c0149a805068014030120244d40281200e04812005", + "0x3812056015b081226a01c170051b60481700526a0141700523a04817005", + "0x29ad0240bc0293500a0b0029710240b00293500a0483b8120244d402812", + "0x282b00a34c0901226a01409007024049b10050240700910600a4d40282f", + "0x291b00a6b40911b00a4d40290900a5c80910900a4d4028120ee04809135", + "0x28260244740293500a474029ad0244740293500a418029ae02441802935", + "0x293500a4bc0297c0240489a80502401c0912e00ad8c9792300e4d4038bb", + "0x1b20050240700912b00a4d40292d00a5f40912c00a4d40292300a3d40912d", + "0x9480526a0141c0052fc0481c00526a014090770240489a80502401c09012", + "0x9a807256014bf8122560149a805252014be8122580149a80525c0147a812", + "0x28710240fc0293500a4a0028060240489a80502401c0912700ad9494005", + "0x9200726a01c2080700e4d80904100a4d40284100a4740904100a4d40283f", + "0x130122480149a8052480145c0120244d40281200e0488f92608a2e1b3125", + "0x9a805096014be0120244d40281200e0488f0056ce12c2480726a01c96005", + "0x28120380488b80526a0148e0052fa0488c00526a014248051ea0488e005", + "0x293500a4500297e0244500293500a0483b8120244d40281200e04809368", + "0x391700a5fc0911700a4d40291200a5f40911800a4d40291e00a3d409112", + "0x3881206a0149a805270014030120244d40281200e048878056d24e002935", + "0x393500e42c9200726c0488580526a0148580523a0488580526a0141a805", + "0x8180526a0148512500e97c0901226a0140900702441c2d859170da885057", + "0x9a8052300147a8120c60149a8050ae0145c01203a0149a80520601544812", + "0x913500a04803812024dac028120380483100526a0140e80551404830805", + "0x901226a014928050f80480913500a41c0287c0240489a8050b60143e012", + "0x28570240489a80502401c090126d80140901c0243fc0293500a164028b8", + "0x90770243fc0293500a490028b80240489a80524a0143e0120244d40290f", + "0x7a8120c60149a8051fe014690121fc0149a8050ca015458120ca0149a805", + "0x3812024dac028120380483100526a0147f0055140483080526a0148c005", + "0x228051700480913500a47c0287c0240489a80524c0143e0120244d402812", + "0x9a80524e0142b8120244d40281200e0480936d00a0480e0120f80149a805", + "0x9a8050d2015458120d20149a8050241dc0907c00a4d40280700a2e009012", + "0x7d8055140483080526a014960051ea0483180526a0143e0051a40487d805", + "0x901226a014090070243e002b6e1f20149a8070c4015460120c40149a805", + "0x280600a5f00901226a014090070241c402b6f00c3d80393500e18402826", + "0x901c0243d00293500a1cc0297d0243d40293500a3d8028f50241cc02935", + "0x9a8050ee014bf0120ee0149a8050241dc0901226a01409007024049b8005", + "0x7a8052700487a00526a014798052fa0487a80526a014388051ea04879805", + "0x901226a014090070243bc02b711e20149a8071e8014bf8121e40149a805", + "0x293500a2340291d0242340293500a3c0028710243c00293500a3c402806", + "0x913500a04803812106204438b86e41fc4600726a01c4686300e4d80908d", + "0x28b80242240293500a22002a8e0242200293500a1fc7c91d0724cd46812", + "0x288900a4d40288900a4f4090f200a4d4028f200a4cc0908c00a4d40288c", + "0x288300a1f00901226a014408050f80480913500a048038121123c8460b8", + "0x9a8051f2014e30120244d40291d00a3fc0901226a0141c80506e04809135", + "0x901226a01409007024049b98050240700907b00a4d40288700a2e009012", + "0xe30120244d40291d00a3fc0901226a0141c80506e0480913500a3bc02857", + "0x1478121000149a8050241dc0907b00a4d40286300a2e00901226a0147c805", + "0x4700526a0144700527a0487900526a014790052660484700526a01440005", + "0x8e8051fe0480913500a0e4028370240489a80502401c0908e1e41ec5c005", + "0x28b802439c0293500a3e002a8f0243ac0293500a184029380240489a805", + "0x28e700a4d4028e700a4f4090eb00a4d4028eb00a4cc0906300a4d402863", + "0x283900a0dc0901226a014120050ae0480913500a048038121ce3ac318b8", + "0x292a00aa3c0912a00a4d4028120ee0487400526a0145d80527004809135", + "0x293d0243a00293500a3a00293302401c0293500a01c028b802425002935", + "0x9a805018015478120244d40281200e0484a0e800e2e00289400a4d402894", + "0x7180527a0485c00526a0145c0052660480380526a0140380517004871805", + "0xc8053a00480c80c00e4d40280c00a6dc090e317001c5c0051c60149a805", + "0x293500a048e88120380149a8050300144f8121760d89901a0300e49a805", + "0x4f81206837c0393500a0701b8071707480903700a4d40283700a47409037", + "0x9a8050480d06f8b83a40481a00526a0141a00523a0481200526a0140d005", + "0x5c1d20240b80293500a0b80291d0240ac0293500a4c8028fe0240b813007", + "0x9a80505e0148e81220c0149a80506c0147f01205e0b00393500a0ac17026", + "0x911d00a4d4028bb00a27c0911b21201c9a80520c0bc160b83a404817805", + "0x9780523a0489792300e4d40291d2364245c1d202446c0293500a46c0291d", + "0x9600526a0149680511c0489692e00e4d40292f02401ce981225e0149a805", + "0x293500a48c0292c0244ac0293500a4ac028e70244ac0293500a04875812", + "0x941290702e09a8072584ac5c0052664a80912e00a4d40292e00a2e009123", + "0x291d0244b80293500a4b8028b80240489a80502401c0904107e49c5c374", + "0x293500a0e00292b0244949200726a0149412e00e4ec0912800a4d402928", + "0x381224c015ba84500a4d40392500a7500912900a4d40292900a0e009038", + "0x38122304708f0b86ec12c2491f1704d40392907001c4a0120244d402812", + "0x7081222e0149a805096014710120960149a805096014718120244d402812", + "0x293800a3bc0901226a014890051380481a90f2704488a03926a0148b805", + "0x9a805228014d98120244d40283500a2740901226a014878051de04809135", + "0x2b8053ac0482b80526a014228053aa0488580526a0148a00536a0488a005", + "0x9a80520e014e401203a40c838b826a0148580538e0482d8592142e09a805", + "0x9a8052060152a8122060149a805206015480120244d40281d00a3bc09012", + "0x5c25c0241240293500a1240283802447c0293500a47c0292b02418c81807", + "0x310054bc0480913500a048038120ca3fc03b770c41840393500e42831924", + "0x7c00526a014091ca0243e47d8690f84cc9a805266014de8121fc0149a805", + "0x7c0f600e7240906100a4d40286100a2e0090f61fc01c9a8051fc0152d012", + "0x292b0241840293500a184028b80240489a80502401c090126f00489a807", + "0x303900e4d40283900a6d80904900a4d40284900a0e00911f00a4d40291f", + "0x287100a12c0907101801c9a805018014db81200c0149a80500c01451012", + "0x3b8054b00483b8f41ea1cc9993500a1c40304923e1841ca570241c402935", + "0x90f100a4d4028f300a9640901226a014090070243c802b791e60149a807", + "0x9a8071de3c0039c90243c07880726a014788054b40487780526a014091ca", + "0x468053a00484680c00e4d40280c00a6dc0901226a01409007024049bd012", + "0x293500a0492d8121100149a8051180144f8121062044387f1180e49a805", + "0x4f8121001ec0393500a220449231707480908900a4d40288900a47409089", + "0x9a80511c2003d8b83a40484000526a0144000523a0484700526a0143f805", + "0x5c1d202439c0293500a39c0291d0243a00293500a21c028fe02439c75807", + "0x9a8051280148e8121c60149a8051020147f0121284a80393500a3a0738eb", + "0x909b00a4d40288300a27c090e11c401c9a8051c6250950b83a40484a005", + "0x4e80523a0484e89c00e4d40289b1c23885c1d20243840293500a3840291d", + "0x6e80526a0147000511c0487009f00e4d40289d0e601ce981213a0149a805", + "0x293500a2700292c02436c0293500a36c028e702436c0293500a04875812", + "0x6b0a21b42e09a8071ba36c7a0f52664a80909f00a4d40289f00a2e00909c", + "0x788074be0485600526a014091ca0240489a80502401c090d31a83545c37b", + "0x90da00a4d4028da00a4ac090a700a4d4028a700a980090a700a4d4028ac", + "0x913500e29c02a610243580293500a3580291d0242880293500a28802838", + "0x9a8051f2015438120244d40287c00a6f80901226a0140900702434802b7c", + "0x913500a030029060240489a805206014e40120244d4028fb00a70009012", + "0x901226a0147f0050f80480913500a164028370240489a8050d2014df812", + "0x848120244d4028d600a2740901226a0141c80539e0480913500a16c02837", + "0x9181219a0149a80519a0148e81219a0149a805024988090cf00a4d402812", + "0x293500a32c6500725c0486500526a0140912f02432c0293500a33467807", + "0x28da00a4ac0909f00a4d40289f00a2e0090c000a4d4028c800aa20090c8", + "0x2a860242880293500a288028380242700293500a2700292c02436802935", + "0x28123940480913500a048038121802884e0da13e0e4028c000a4d4028c0", + "0x90cc00a4d4028ba17a01d2f8121743f80393500a3f802a5a0242f402935", + "0xe30122d25a0b38002664d4028d219827c5c2660243300293500a33002a60", + "0xb580726a014b38054d0048b500526a014b480000e99c0901226a014b4005", + "0x296c00a9680916e2da01c9a8052da0152d0122da0149a8050249a40916c", + "0x9b80726a01cb796e2d42e1358122dc0149a8052dc015350122de5b003935", + "0xb60054b40480913500a5c00287c0240489a80502401c091722e201dbe970", + "0x1bf01226a01cb697300e7240913700a4d40293700a2e0091732d801c9a805", + "0x91ca0240489a80502401c090126fe0140901c0240489a80502401c09012", + "0x1c001226a01cba97600e724091762d601c9a8052d60152d0122ea0149a805", + "0x901226a0147c80550e0480913500a1f0029be0240489a80502401c09012", + "0xdf8120244d40280c00a4180901226a014818053900480913500a3ec029c0", + "0x28370240489a8051fc0143e0120244d40285900a0dc0901226a01434805", + "0x6b00513a0480913500a5ac0287c0240489a805072014e78120244d40285b", + "0x2812038048bb80526a0149b8051700480913500a5b00287c0240489a805", + "0x9a8052d60147f0122f00149a8052d80147f0120244d40281200e04809381", + "0xbf17d2f85ec1c93500a5e8029d00245e80600726a0140600536e048bc805", + "0x9a8053500148e8123500149a80502496c0913600a4d40297b00a27c0917f", + "0x91ab00a4d40297c00a27c091aa35201c9a80526c6a04e0b83a4048d4005", + "0xbe8051fc048d71ad00e4d4029ab3546a45c1d20246a80293500a6a80291d", + "0xd800726a014d79ae35a2e0e901235c0149a80535c0148e81235e0149a805", + "0xd89b0170748091b100a4d4029b100a474091b200a4d40297e00a3f8091b1", + "0xda80526a014da80523a048db00526a014bf80513e048da9b300e4d4029b2", + "0x39d30246e00293500a6e00291d0246e0db80726a014db1b53662e0e9012", + "0xde00526a0140926d0246ec0293500a6e80288e0246e8dc80726a014dc137", + "0xbc9bd00e9bc091bd00a4d4029bd00a474091bd00a4d4029bc2f001d37012", + "0x91bf00a4d4029be1ac01d3781237c0149a80537c0148e81237c0149a805", + "0xdf80526a014df80523a048e000526a014e00051ce048e000526a014090eb", + "0xe00a21b40e4b80123720149a8053720145c01236e0149a80536e01496012", + "0xdc8051700480913500a0480381238a710e18b8704708e080726a01cdf9bb", + "0x1c0123900149a80536e0149601238e0149a8053820149581238c0149a805", + "0x3e00537c0480913500a04803812024e0c02812038048e480526a014e1005", + "0x290300a7200901226a0147d8053800480913500a3e402a870240489a805", + "0x9a8050b20141b8120244d40286900a6fc0901226a0140600520c04809135", + "0x913500a0e4029cf0240489a8050b60141b8120244d4028fe00a1f009012", + "0x9a805398015440123980149a80538a7280392e0247280293500a04897812", + "0xdb805258048e180526a014e1805256048dc80526a014dc805170048e6805", + "0x1c80539a0149a80539a015430123880149a8053880141c01236e0149a805", + "0x3e00537c0480913500a5c80287c0240489a80502401c091cd3886dce19b9", + "0x290300a7200901226a0147d8053800480913500a3e402a870240489a805", + "0x9a8050b20141b8120244d40286900a6fc0901226a0140600520c04809135", + "0x913500a16c028370240489a8051fc0143e0120244d40296d00a1f009012", + "0x901226a0146b00513a0480913500a5ac0287c0240489a805072014e7812", + "0x91ce00a4d402812212048bb80526a014b88051700480913500a5b00287c", + "0x293500a73ce7007246048e780526a014e780523a048e780526a01409270", + "0x29d200aa20091d200a4d4029d03a201c970123a20149a8050244bc091d0", + "0x292c0243680293500a3680292b0245dc0293500a5dc028b802474c02935", + "0x29d300a4d4029d300aa18090a200a4d4028a200a0e00909c00a4d40289c", + "0x287c0240489a805072014e78120244d40281200e048e98a2138368bb839", + "0x7d8053800480913500a3e402a870240489a8050f8014df0120244d4028f1", + "0x286900a6fc0901226a0140600520c0480913500a40c029c80240489a805", + "0x9a8050b60141b8120244d4028fe00a1f00901226a0142c80506e04809135", + "0x29d400aa20091d400a4d4028d327601c970122760149a8050244bc09012", + "0x292c0243540293500a3540292b02427c0293500a27c028b802475402935", + "0x29d500a4d4029d500aa18090d400a4d4028d400a0e00909c00a4d40289c", + "0x28b80240489a8051e20143e0120244d40281200e048ea8d41383544f839", + "0x91c800a4d40292300a4b0091c700a4d4028f500a4ac091c600a4d402873", + "0x293500a71c0292b0247180293500a718028b80247240293500a3d002838", + "0x280c00a6dc0903900a4d40283900a288091c900a4d4029c900a0e0091c7", + "0x9a8053ac0e4e49c738c0e4dc0123ac0149a8053ac014258123ac03003935", + "0x913500a048038124b4015c225900a4d403a5800a6e8092584ae9592a933", + "0x2a5c00a7180925e4b801c9a8054b6014e28124b60149a8054b2014e2012", + "0x131a624c22e09a8051fc97c03a790249812f80726a0152f0050c404809135", + "0x2a6500a2e00926600a4d402a6100a3f80926500a4d402a634aa01d33812", + "0x90770240489a80502401c0926700ae140913500e998028db02499402935", + "0x13d0124d20149a8054d2014d68124d20149a8054d0014b90124d00149a805", + "0x13100726a015310054b40493580526a014091ca0249a80293500a9a530007", + "0x9007024049c301226a01d35a6d00e7240926a00a4d402a6a00a6b40926d", + "0x13780535a0493780526a015370052e40493700526a014090770240489a805", + "0x293500a0483b8120244d40281200e0480938700a0480e0124e00149a805", + "0x2a7000a6b80927000a4d402a7200a6b40927200a4d402a7100a5c409271", + "0xd78124ea0149a8054e89a8039cd0249d00293500a9d0029ad0249d002935", + "0x293500a1640288d0249940293500a994028b80249d80293500a9d531007", + "0x818124f29dc0393500a9d82ca651709ec0927600a4d402a7600a23409059", + "0x293500a9e80281d0240489a80502401c0927b00ae213d00526a01d3c805", + "0x292b0249dc0293500a9dc028b80249f40293500a16d3e103170a000927c", + "0x925700a4d402a5700a0e0091c800a4d4029c800a4b00925600a4d402a56", + "0x12b9c84ac9dc0ca820249f40293500a9f402a810240300293500a0300284b", + "0x9f805712a080293500ea040293f024a054013e4fe9f81c93500a9f406069", + "0x913500aa1002857024a114180726a015410055060480913500a04803812", + "0x1428075080494300526a01409077024a140293500a3e47da830f84cc93012", + "0x927e00a4d402a7e00a2e00928800a4d402a8700aa140928700a4d402a86", + "0x293500aa00028380244f80293500a4f80292c0249fc0293500a9fc0292b", + "0x913500a04803812510a009f27f4fc0e402a8800a4d402a8800aa1809280", + "0x901226a0143e00537c0480913500a3ec029c00240489a8051f201543812", + "0x293500a9fc0292b0249f80293500a9f8028b8024a240293500a4fc02a88", + "0x2a8900aa180928000a4d402a8000a0e00913e00a4d40293e00a4b00927f", + "0x9a8050f8014df0120244d40281200e04944a8027c9fd3f03900aa2402935", + "0x913500a030029060240489a8051f6014e00120244d4028f900aa1c09012", + "0x901226a014818053900480913500a16c028370240489a8050d2014df812", + "0x293500a9580292b0249dc0293500a9dc028b8024a280293500a9ec02a88", + "0x2a8a00aa180925700a4d402a5700a0e0091c800a4d4029c800a4b009256", + "0x9a8054ce014698120244d40281200e049452573909593b83900aa2802935", + "0x913500a3ec029c00240489a8051f2015438120244d40287c00a6f809012", + "0x901226a0143480537e0480913500a030029060240489a805206014e4012", + "0x7f8120244d402a6200a1f00901226a0142c80506e0480913500a16c02837", + "0x291d024a300293500a0493e8125160149a8050244240901226a01530005", + "0x928e00a4d40281225e0494680526a0154628b00e48c0928c00a4d402a8c", + "0x9a8054ca0145c01251e0149a80527a0154401227a0149a80551aa380392e", + "0x12b805070048e400526a014e40052580492b00526a0152b00525604932805", + "0x9007024a3d2b9c84ac9941c80551e0149a80551e015430124ae0149a805", + "0x28fb00a7000901226a0147c80550e0480913500a1f0029be0240489a805", + "0x9a8050d2014df8120244d40280c00a4180901226a0148180539004809135", + "0x913500a3f80287c0240489a8050b20141b8120244d40285b00a0dc09012", + "0x9a8054ac014958124aa0149a8054aa0145c0125200149a8054b401544012", + "0x14800550c0492b80526a0152b805070048e400526a014e40052580492b005", + "0x283900a73c0901226a01409007024a412b9c84ac9541c8055200149a805", + "0x9a8051f6014e00120244d4028f900aa1c0901226a0143e00537c04809135", + "0x913500a1a4029bf0240489a805018014830120244d40290300a72009012", + "0x901226a0142d80506e0480913500a3f80287c0240489a8050b20141b812", + "0x293500a3d40292b0241cc0293500a1cc028b8024a440293500a3c802a88", + "0x2a9100aa18090f400a4d4028f400a0e00912300a4d40292300a4b0090f5", + "0x9a8050b60141b8120244d40281200e049488f42463d43983900aa4402935", + "0x913500a40c029c80240489a8051fc0143e0120244d40283900a73c09012", + "0x28f91f61a43e13324c0480913500a164028370240489a80501801483012", + "0x2a85024a540293500aa51498075080494a00526a01409077024a4c02935", + "0x911f00a4d40291f00a4ac0906100a4d40286100a2e00929600a4d402a95", + "0x293500aa5802a860241240293500a1240283802448c0293500a48c0292c", + "0x901226a014328053900480913500a0480381252c1249191f0c20e402a96", + "0x1b8120244d40293300a1240901226a0141c80539e0480913500a16c02837", + "0x91090240489a805018014830120244d40290300a7200901226a0142c805", + "0x3923024a600293500aa600291d024a600293500a049388122780149a805", + "0x14d80526a0154ca9a00e4b80929a00a4d40281225e0494c80526a0154c13c", + "0x9a80523e014958121fe0149a8051fe0145c0125380149a80553601544012", + "0x14e00550c0482480526a014248050700489180526a014918052580488f805", + "0x280c00a4180901226a01409007024a702492323e3fc1c8055380149a805", + "0x9a80508a015488120244d40293300a1240901226a0141c80539e04809135", + "0x2a9f00aa200929f00a4d40291853c01c9701253c0149a8050244bc09012", + "0x292c0244780293500a4780292b0244900293500a490028b8024a8002935", + "0x2aa000a4d402aa000aa180911c00a4d40291c00a0e00912300a4d402923", + "0x29cf0240489a805018014830120244d40281200e0495011c24647892039", + "0x6a012544a840393500a498028d50240489a805266014248120244d402839", + "0x92a400a4d40283800a4ac092a300a4d40292400a2e00901226a01550805", + "0x90127140140901c024a980293500aa88028fb024a940293500a4a402838", + "0x28490240489a805072014e78120244d40280c00a4180901226a01409007", + "0x1c0125480149a80524e014958125460149a80525c0145c0120244d402933", + "0x913a00a4d40281225e0495300526a014208051f60495280526a0141f805", + "0x9a8055460145c0125500149a80554e0154401254e0149a80554c4e80392e", + "0x1528050700489180526a014918052580495200526a0155200525604951805", + "0x9293024aa152923548a8c1c8055500149a8055500154301254a0149a805", + "0x281252a0481b80526a014092940242ec0293500a0494a0122640149a805", + "0x913500a060028cc0240489a805072014778120244d40281205c04809135", + "0x1200526a014090eb0240d00293500a37c0288e02437c0293500a04840012", + "0x120b800a4cc950120680149a805068014740120480149a80504801473812", + "0x1580523a0480913500a0480381220c0bc160b87160ac170261704d403834", + "0x7881205c0149a80505c0141c01204c0149a80504c014958120560149a805", + "0x9a8050240600901226a0140900702447402b8c2364240393500e0ac09007", + "0x5c38d25c4bc918b826a01c1702600e2500910900a4d40290900a2e009012", + "0x292e00a3880912e00a4d40292e00a38c0901226a014090070244ac9612d", + "0x913500a4a40289b0241041f9272504a41c93500a0e0028e10240e002935", + "0x901226a0142080513a0480913500a0fc028ef0240489a8052500144e012", + "0x9a80524a0144f81224a46c0393500a46c028e00244900293500a49c0289f", + "0x291d0244980293500a114920071ba0489200526a0149200523a04822805", + "0x912f00a4d40292f00a0e00912300a4d40292300a4ac0912600a4d402926", + "0x293500a46c028da0240489a80502401c0911f00ae380913500e498028db", + "0x292f00a0e00912300a4d40292300a4ac0910900a4d40290900a2e009049", + "0xdb8120960149a805096014510120961240393500a124029b60244bc02935", + "0x2592f2464241c9b80244780293500a4780284b0244780600726a01406005", + "0x90070244e002b8f2240149a807228014dd01222845c8c11c2664d40291e", + "0x2b90b06a0e49a80521e014e801221e0300393500a030029b70240489a805", + "0x290700a4740910700a4d4028123a20482d80526a0141a80513e0482c90a", + "0x3180526a0148580513e0480e90300e4d40285b20e01c5c1d202441c02935", + "0x28fe0241883080726a0143181d2062e0e901203a0149a80503a0148e812", + "0x393500a3fc310611707480906200a4d40286200a474090ff00a4d402857", + "0x328b83a40487f00526a0147f00523a0483e00526a014850051fc0487f065", + "0x293500a3ec0291d0243e40293500a1640289f0243ec3480726a0143e0fe", + "0xe98121ec0149a8051ec0148e8121ec3e00393500a3e47d869170748090fb", + "0x293500a048758120e60149a8050e2014470120e20180393500a3d88e007", + "0x280600a2e0090f800a4d4028f800a4b0090f500a4d4028f500a39c090f5", + "0x90ef1e23c85c3901e61dc7a0b826a01c398f522e4609992a02401802935", + "0x90f300a4d4028f300a4740900600a4d40280600a2e00901226a01409007", + "0x287700a0e0090f400a4d4028f400a4ac0908d1e001c9a8051e60180393b", + "0xea8120244d40281200e0483f8057222300293500e234029d40241dc02935", + "0x9a805102014318121020700d0b826a014438053ac0484380526a01446005", + "0xe301206c1ec0393500a224029c50242240293500a448029c402422041807", + "0x4000726a0141b0050c60481b00526a0141b0bb00ea580901226a0143d805", + "0x909411001c9a805110014308122543a0738eb2664d40293300a6f40908e", + "0x393500a238028610240489a8051c40147f8121c438c0393500a25002862", + "0x718050ca0480913500a270028ff0242704d80726a014708050c40487088e", + "0x901a00a4d40281a26401c9e01213e0149a8051360143281213a0149a805", + "0x281200e048093920244d40389f13a01ce48120380149a8050380dc03a96", + "0x28dd00a6b4090dd00a4d4028e000a5c8090e000a4d4028120ee04809135", + "0x6d00526a014090770240489a80502401c090127260140901c02436c02935", + "0x9a805110014308121b60149a805144014d68121440149a8051b4014b8812", + "0x28620240489a8051aa0143e0121a83540393500a3580286202435844007", + "0x1ca0a700a4d4038d400a3e40901226a014698050f8048560d300e4d40288e", + "0x293500a2b0028690240489a80514e0142b8120244d40281200e04869005", + "0x1ca805024070090cb00a4d4028cd00a6b4090cd00a4d4028cf00a6b8090cf", + "0x6500526a014560050d20480913500a348028570240489a80502401c09012", + "0x28c000a3fc090c019001c9a805110014310121960149a805194014d6812", + "0x5d0bd00e724090ba00a4d4028123940485e80526a014640050ca04809135", + "0x660052e40486600526a014090770240489a80502401c0901272c0489a807", + "0x281200e0480939700a0480e0122ce0149a805000014d68120000149a805", + "0x296900a6b40916900a4d40296800a5c40916800a4d4028120ee04809135", + "0xe68122d40149a8052d4014d68122d40149a8052ce32c039cc02459c02935", + "0x293500e5ac028f90245ac0293500a5ac029ad0245ac0293500a5a86d807", + "0x281900aa600901226a014b60050ae0480913500a048038122da015cc16c", + "0xb917100e4d40296e00a1880901226a0149b80538c048b81372de5b899935", + "0x9a8052e60147f8122ea5cc0393500a5c802a990240489a8052e20143e012", + "0xbb0050ae0480913500a048038122ee015cc97600a4d40397500a3e409012", + "0x9a80502401c090127340140901c0245e00293500a5bc029ad0240489a805", + "0x9a8052f2014d68122f20149a8052de014d70120244d40297700a15c09012", + "0x308122f80300393500a030029b70245ecbd00726a01495005534048bc005", + "0x9a8051e00145c0122fc0149a8052fa5f0039c10245f44180726a01441805", + "0x78133386048bf00526a014bf0053840487c00526a0147c00525804878005", + "0x9a8050243ac091a900a4d4029a800a238091a826c5fc5c13500a5f8bd8f8", + "0xd69ab1704d4039a93541dc7a133254048d500526a014d50051ce048d5005", + "0x91b201801c9a805018014db8120244d40281200e048d89b035e2e1cd9ae", + "0x925b0246e40293500a6cc0289f0246e0db9b636a6cc1c93500a6c8029d0", + "0xdd80726a014dc9ba26c2e0e90123740149a8053740148e8123740149a805", + "0xde1bb170748091bc00a4d4029bc00a474091bd00a4d4029b500a27c091bc", + "0xdf80526a014df80523a048e000526a014db0051fc048df9be00e4d4029bd", + "0x291d02470c0293500a6dc028fe024708e080726a014e01bf37c2e0e9012", + "0x9a8053700144f81238a7100393500a70ce11c1170748091c200a4d4029c2", + "0x91c838e01c9a80538c714e20b83a4048e280526a014e280523a048e3005", + "0x29ca00a238091ca39201c9a8053905fc039d30247200293500a7200291d", + "0xe68051ce048d580526a014d5805256048e680526a014090eb02473002935", + "0x5c01238e0149a80538e0149601235c0149a80535c0148e81239a0149a805", + "0xe88b8738740e79ce1704d4039cc39a6b4d5933254048e480526a014e4805", + "0xe480526a014e48051700480913500a048170120244d40281200e048e99d2", + "0x9a80539e0141c01238e0149a80538e0149601239c0149a80539c01495812", + "0x600536e0482480526a01424805144048bc00526a014bc00535a048e7805", + "0x908300a4d40288300a2340913b00a4d40293b00a12c0913b01801c9a805", + "0x393500a200028610247400293500a7400291d0245c00293500a5c002a6a", + "0xe481c536048d700526a014d700523a048ea00526a014ea00511a048ea080", + "0x14e0124ae9592a9d63aa0e49a8052f46b8ea1d02e020c9d8492f073ce39ce", + "0x28800380685c2800240489a80502401c0925900ae752c00526a01d2b805", + "0x292c0247580293500a7580292b0247540293500a754028b802496802935", + "0x900c00a4d40280c00a12c0925600a4d402a5600a0e00925500a4d402a55", + "0x12e25b0724d402a5a01839d2b2553ac7540ca820249680293500a96802a81", + "0x14f0120244d40281200e0493100573c9840293500e9800293f0249812fa5e", + "0x913500a998028570240489a8054ca0141b8124cc995318b826a0152c005", + "0x9a8054b60145c0120244d402a6800a15c092684ce01c9a8054c201541812", + "0x12f8050700493580526a0152f0052580493500526a0152e00525604934805", + "0xe0124de0149a8054ce015500124dc0149a8054c60154f8124da0149a805", + "0x28e800a7000901226a0152c0055420480913500a04803812024e7c02812", + "0x2a5b00a2e00927000a4d402a6200aa200901226a0147580537c04809135", + "0x28380249780293500a9780292c0249700293500a9700292b02496c02935", + "0x38124e097d2f25c4b60e402a7000a4d402a7000aa180925f00a4d402a5f", + "0x740053800480913500a068029c80240489a8051d6014df0120244d402812", + "0x288000a0dc0901226a0147380537e0480913500a030029060240489a805", + "0x29d500a2e00927100a4d402a5900aa200901226a0140e00506e04809135", + "0x28380249540293500a9540292c0247580293500a7580292b02475402935", + "0x38124e29592a9d63aa0e402a7100a4d402a7100aa180925600a4d402a56", + "0x281a00a7200901226a0147580537c0480913500a048170120244d402812", + "0x9a805018014830120244d40288000a0dc0901226a0147400538004809135", + "0x913500a5e802a870240489a8050380141b8120244d4028e700a6fc09012", + "0x901226a0144180506e0480913500a5c00287c0240489a80535c0144e812", + "0x970124e40149a8050244bc0901226a014bc0051fe0480913500a124029cf", + "0x293500a724028b80249d40293500a9d002a880249d00293500a74d39007", + "0x29d200a0e0091c700a4d4029c700a4b0091d100a4d4029d100a4ac091c9", + "0x281200e0493a9d238e744e483900a9d40293500a9d402a8602474802935", + "0x913500a068029c80240489a8051d6014df0120244d40281205c04809135", + "0x901226a0140600520c0480913500a200028370240489a8051d0014e0012", + "0x3e0120244d40297a00aa1c0901226a0140e00506e0480913500a39c029bf", + "0x28ff0240489a805092014e78120244d40288300a0dc0901226a014b8005", + "0x1440124ee0149a8053629d80392e0249d80293500a048978120244d402978", + "0xd780526a014d7805256048bf80526a014bf8051700493c80526a0153b805", + "0x9a8054f2015430123600149a8053600141c01226c0149a80526c01496012", + "0x901226a0140902e0240489a80502401c092793604d8d797f0720153c805", + "0x830120244d40288000a0dc0901226a0140d0053900480913500a5b402857", + "0x29cf0240489a8051060141b8120244d40281c00a0dc0901226a01406005", + "0x292b0249a40293500a3c0028b80240489a8050320143d8120244d402849", + "0x926d00a4d40287700a0e00926b00a4d4028f800a4b00926a00a4d4028f4", + "0x1370e84de3ac999260249bc0293500a39c02aa00249b80293500a4a802a9f", + "0x1428124f80149a8054f69e803a840249ec0293500a0483b8124f40149a805", + "0x927d4da9ad352690720153e80526a0153e80550c0493e80526a0153e005", + "0x28490240489a8050320143d8120244d4028bb00aa880901226a01409007", + "0x890054ec0480913500a124029cf0240489a805018014830120244d402933", + "0x287f00a3540901226a0141b8055440480913500a4c802aa30240489a805", + "0x292b0244f80293500a3c0028b80240489a8054fc0146a0124fe9f803935", + "0x928200a4d402a7f00a3ec0928100a4d40287700a0e00928000a4d4028f4", + "0x1b8055440480913500a2ec02aa20240489a80502401c090127400140901c", + "0x280c00a4180901226a014998050920480913500a0640287b0240489a805", + "0x9a805264015518120244d40291200a9d80901226a0142480539e04809135", + "0x28f100a0e00928000a4d4028f200a4ac0913e00a4d40280600a2e009012", + "0x9a8050244bc0901226a0140902e024a080293500a3bc028fb024a0402935", + "0x28b8024a100293500aa0c02a88024a0c0293500aa089f80725c0489f805", + "0x90f800a4d4028f800a4b00928000a4d402a8000a4ac0913e00a4d40293e", + "0x1422811f0a009f03900aa100293500aa1002a86024a040293500aa0402838", + "0x2aa20240489a805176015510120244d40281205c0480913500a04803812", + "0x600520c0480913500a4cc028490240489a8050320143d8120244d402837", + "0x293800aa200901226a014990055460480913500a124029cf0240489a805", + "0x292c0244600293500a4600292b0244700293500a470028b8024a1402935", + "0x2a8500a4d402a8500aa180911700a4d40291700a0e00900700a4d402807", + "0x2aa20240489a80523e014698120244d40281200e0494291700e4608e039", + "0x998050920480913500a0640287b0240489a80506e015510120244d4028bb", + "0x291b00a3bc0901226a014990055460480913500a030029060240489a805", + "0x9a80550e0148e81250e0149a8050242b00928600a4d40281221204809135", + "0x2838024a240293500a48c0292b024a200293500aa1d4300724604943805", + "0x9007024049d08050240700928b00a4d402a8800a3ec0928a00a4d40292f", + "0x281900a1ec0901226a0141b8055440480913500a2ec02aa20240489a805", + "0x9a805264015518120244d40280c00a4180901226a0149980509204809135", + "0x9a8052580141c0125120149a80525a014958120244d40291b00a3bc09012", + "0x9a8052120145c0120244d40281205c0494580526a014958051f604945005", + "0x1458051f60494700526a015450050700494680526a0154480525604946005", + "0x9a805176015510120244d40281200e048093a200a0480e01227a0149a805", + "0x913500a4cc028490240489a8050320143d8120244d40283700aa8809012", + "0x928f00a4d4028122120480913500a4c802aa30240489a80501801483012", + "0x293500aa41478072460494800526a0154800523a0494800526a014090a7", + "0x282e00a0e00929400a4d40282600a4ac0929300a4d40291d00a2e009291", + "0x9a80502401c090127460140901c024a580293500aa44028fb024a5402935", + "0x913500a0640287b0240489a80506e015510120244d4028bb00aa8809012", + "0x901226a014990055460480913500a030029060240489a80526601424812", + "0x293500a0bc02838024a500293500a0b00292b024a4c0293500a048028b8", + "0x2a9400a33c0928c00a4d402a9300a3480929600a4d40290600a3ec09295", + "0x912f0244f40293500aa58028cb024a380293500aa54028cd024a3402935", + "0x929900a4d402a9800aa200929800a4d40293d27801c970122780149a805", + "0x293500a01c0292c024a340293500aa340292b024a300293500aa30028b8", + "0x3a8d5180e402a9900a4d402a9900aa180928e00a4d402a8e00a0e009007", + "0x60392662e00c13500a01c02aa502401c0900726a014090055480494ca8e", + "0x60051fe0480913500a0e4028ff0240489a8052660147f8122640680c019", + "0x281a00a3fc0901226a0140c0051fe0480913500a064028ff0240489a805", + "0x383600a3e40903600a4d4028b800a1a40901226a014990051fe04809135", + "0x90f80240489a8051760142b8120244d40281200e0480e0057482ec02935", + "0x281200e048093a500a0480e0121be0149a80506e0148e81206e0149a805", + "0x9a8050680148e8120680149a8050243d80901226a0140e0050ae04809135", + "0x15281204c0480393500a04802aa40240900293500a37c028072460486f805", + "0x7f8120244d40282e00a3fc0911d2364248302f0580ac1701826a01413005", + "0x28ff0240489a80520c0147f8120244d40282f00a3fc0901226a01416005", + "0x158050d20480913500a474028ff0240489a8052360147f8120244d402909", + "0x2ba625e0149a8072460147c8120480149a8050480147d8122460149a805", + "0x912d00a4d4028121f00480913500a4bc028570240489a80502401c0912e", + "0x28570240489a80502401c0901274e0140901c0244b00293500a4b40291d", + "0x39230244b00293500a4ac0291d0244ac0293500a0487b0120244d40292e", + "0xc13500a4a402aa50244a40900726a014090055480481c00526a01496024", + "0x913500a49c028ff0240489a8052500147f81224c114929240820fc93928", + "0x901226a014928051fe0480913500a490028ff0240489a8050820147f812", + "0x911f00a4d40283f00a1a40901226a014930051fe0480913500a114028ff", + "0x281200e048258057501240293500e47c028f90240e00293500a0e0028fb", + "0x9a80523c0148e81223c0149a8050243e00901226a014248050ae04809135", + "0x901226a014258050ae0480913500a04803812024ea4028120380488e005", + "0x293500a4701c0072460488e00526a0148c00523a0488c00526a014090f6", + "0x8583521e4e08901826a0148a00554a0488a01200e4d40281200aa9009117", + "0x290f00a3fc0901226a0149c0051fe0480913500a448028ff02416485057", + "0x9a8052140147f8120244d40285700a3fc0901226a014858051fe04809135", + "0x9a80522e0147d8120b60149a80506a014348120244d40285900a3fc09012", + "0x28570240489a80502401c0910300aea88380526a01c2d8051f20488b805", + "0x901c02418c0293500a0740291d0240740293500a0487c0120244d402907", + "0x293500a0487b0120244d40290300a15c0901226a01409007024049d5805", + "0x90055480483100526a0143191700e48c0906300a4d40286100a47409061", + "0x7f8121ec3e07c8fb0d21f07f0650304d4028ff00aa94090ff02401c9a805", + "0x28ff0240489a8050f80147f8120244d4028fe00a3fc0901226a01432805", + "0x7b0051fe0480913500a3e0028ff0240489a8051f20147f8120244d402869", + "0x28f90241880293500a188028fb0240180293500a3ec028690240489a805", + "0x901226a014388050ae0480913500a048038120e6015d607100a4d403806", + "0x3812024eb4028120380487a00526a0147a80523a0487a80526a014090f8", + "0x3b80523a0483b80526a014090f60240489a8050e60142b8120244d402812", + "0x7901200e4d40281200aa90090f300a4d4028f40c401c918121e80149a805", + "0x913500a3c4028ff0242044387f118234780ef1e20609a8051e401552812", + "0x901226a014468051fe0480913500a3c0028ff0240489a8051de0147f812", + "0x348120244d40288100a3fc0901226a014438051fe0480913500a230028ff", + "0x4400526a01c418051f20487980526a014798051f60484180526a0143f805", + "0x293500a0487c0120244d40288800a15c0901226a0140900702422402bae", + "0x901226a01409007024049d78050240700908000a4d40287b00a4740907b", + "0x908000a4d40288e00a4740908e00a4d4028121ec0480913500a22402857", + "0x28e700aa94090e702401c9a805024015520121d60149a8051003cc03923", + "0x292a00a3fc0901226a014740051fe0484e09b1c2388718942543a00c135", + "0x9a8051c40147f8120244d4028e300a3fc0901226a0144a0051fe04809135", + "0x293500a26c028690240489a8051380147f8120244d4028e100a3fc09012", + "0x38121c0015d809f00a4d40389d00a3e4090eb00a4d4028eb00a3ec0909d", + "0x6e80523a0486e80526a014090f80240489a80513e0142b8120244d402812", + "0x9a8051c00142b8120244d40281200e048093b100a0480e0121b60149a805", + "0x28db1d601c918121b60149a8051b40148e8121b40149a8050243d809012", + "0x6b0051fe048678d214e2b0698d41aa3580c13500a04802aa502428802935", + "0x28d300a3fc0901226a0146a0051fe0480913500a354028ff0240489a805", + "0x9a8051a40147f8120244d4028a700a3fc0901226a014560051fe04809135", + "0x38cd00a3e4090a200a4d4028a200a3ec090cd00a4d4028cf00a1a409012", + "0x90f80240489a8051960142b8120244d40281200e0486500576432c02935", + "0x281200e048093b300a0480e0121800149a8051900148e8121900149a805", + "0x9a80517a0148e81217a0149a8050243d80901226a014650050ae04809135", + "0x5d00500a2e80293500a2e8028fb0242e80293500a3005100724604860005", + "0x9a805018014830120320300393500a4cc02aa60240e40293500a04884812", + "0xe0bb06c4c80d03926a0140c0053a00480c01900e4d40281900a6dc09012", + "0x901226a0145d8050f80480913500a0d80287c0240489a80526401477812", + "0x6f80526a0141b80513e0481b80526a0140d0052740480913500a070028ef", + "0x120053a00481201900e4d40281900a6dc0903400a4d4028df07201c91812", + "0x913500a0ac0287c0240489a80504c0147781205e0b01582e04c0e49a805", + "0x8300526a014170052740480913500a0bc028ef0240489a8050580143e012", + "0x281900a6dc0911b00a4d40290906801c918122120149a80520c0144f812", + "0x9a805246014778122584b49712f2460e49a80523a014e801223a06403935", + "0x913500a4b0028ef0240489a80525a0143e0120244d40292f00a3bc09012", + "0x283823601c918120700149a8052560147f0122560149a80525c01432812", + "0x2083f24e0e49a805250014e80122500640393500a064029b70244a402935", + "0x9a8050820143e0120244d40283f00a3bc0901226a014938051de04892924", + "0x9a80508a0147f01208a0149a805248014328120244d40292500a3bc09012", + "0x8e11e0961241c93500a064029d002447c0293500a4989480724604893005", + "0x913500a4780287c0240489a805096014778120244d40284900a3bc09118", + "0x293500a45c0289f02445c0293500a4600293a0240489a8052380143e012", + "0x28125500489c00526a0145c00554e0488900526a0148a11f00e48c09114", + "0x29380240489a80506a014890122160d40393500a4480291402443c02935", + "0x905700a4d40285700a4cc0910f00a4d40290f00a4740905700a4d40290b", + "0x281200e0480e90320e2e1da05b0b24285c13500e15c8793800e0141c97a", + "0x850052560483180526a014318051ea0483180526a0142d80504804809135", + "0x1da8620c201c9a8070c6014130120b20149a8050b20141c0122140149a805", + "0x9a8050c20147a8120ca0149a8050c4014be0120244d40281200e0487f805", + "0x913500a04803812024ed8028120380483e00526a014328052fa0487f005", + "0x293500a3fc028f50243ec0293500a1a40297e0241a40293500a0483b812", + "0x38121f0015db8f900a4d40387c00a5fc0907c00a4d4028fb00a5f4090fe", + "0x8e81200c0149a8051ec014388121ec0149a8051f2014030120244d402812", + "0x90771e83d45c3b80e61c40393500e0180900726c0480300526a01403005", + "0x790f300e4d4038fe00a0980907100a4d40287100a2e00901226a01409007", + "0x28f300a3d4090ef00a4d4028f200a5f00901226a014090070243c402bb9", + "0x9a80502401c090127740140901c0242340293500a3bc0297d0243c002935", + "0x9a8051e20147a8120fe0149a805118014bf0121180149a8050241dc09012", + "0x908100aeec4380526a01c468052fe0484680526a0143f8052fa04878005", + "0x908800a4d40288300a1c40908300a4d40288700a0180901226a01409007", + "0x7588e1002e1de07b11201c9a8071101c4039360242200293500a2200291d", + "0x293500a39c02a8902439c0293500a1ec398074be0480913500a04803812", + "0x28e800aa280909400a4d4028f000a3d40912a00a4d40288900a2e0090e8", + "0x913500a2380287c0240489a80502401c0901277a0140901c02438c02935", + "0x7100526a014400051700480913500a1cc0287c0240489a8051d60143e012", + "0x287c0240489a8051020142b8120244d40281200e048093be00a0480e012", + "0x2a8b0243840293500a0483b8121c40149a8050e20145c0120244d402873", + "0x909400a4d4028f000a3d40912a00a4d4028e200a3480909b00a4d4028e1", + "0x287c0240489a80502401c0901277a0140901c02438c0293500a26c02a8a", + "0x901c0242700293500a3d4028b80240489a8050ee0143e0120244d4028f4", + "0x9a8050240145c0120244d4028f800a15c0901226a01409007024049df805", + "0x289c00a3480909f00a4d40289d00aa2c0909d00a4d4028120ee0484e005", + "0x2a8c02438c0293500a27c02a8a0242500293500a3f8028f50244a802935", + "0x6d80526a0144a0052700480913500a048038121ba015e00e000a4d4038e3", + "0x28db25401c0c8121b60149a8051b6014998122540149a8052540145c012", + "0x2bc11aa0149a8071ac0140d0120244d4028a200a428090d61443685c135", + "0x9a8051a6015550121a60149a8051aa38003aa90240489a80502401c090d4", + "0x850052560486d00526a0146d0051700485380526a0145600555604856005", + "0x9980514e0149a80514e015560120b20149a8050b20141c0122140149a805", + "0x28e000a7180901226a0146a0050ae0480913500a0480381214e164850da", + "0x913500a04803812024f08028120380486900526a0146d00517004809135", + "0x6900526a014950051700480913500a2500282b0240489a8051ba0142b812", + "0x6680526a0146680523a0486680526a014092ad02433c0293500a04884812", + "0x28cb19401c970121940149a8050244bc090cb00a4d4028cd19e01c91812", + "0x292b0243480293500a348028b80243000293500a32002aae02432002935", + "0x28c000a4d4028c000aab00905900a4d40285900a0e00910a00a4d40290a", + "0x5e80725c0485e80526a0140912f0240489a80502401c090c00b242869133", + "0x901200a4d40281200a2e0090cc00a4d4028ba00aab8090ba00a4d40281d", + "0x293500a33002aac02440c0293500a40c0283802441c0293500a41c0292b", + "0x9980726a0145c00555e0480913500a01c02a87024330819070244cc028cc", + "0x903600a4d40280c00a27c091320340600c80c0724d40293300a74009039", + "0x9a80506c2ec028b83a40485d80526a0145d80523a0485d80526a014092b0", + "0x5c1d20240dc0293500a0dc0291d02437c0293500a0640289f0240dc0e007", + "0x9a8050480148e81204c0149a8050300147f0120480d00393500a37c1b81c", + "0x902c00a4d40281a00a3f80902b05c01c9a80504c0901a0b83a404812005", + "0x9900513e0488302f00e4d40282c0560b85c1d20240ac0293500a0ac0291d", + "0x8d80726a0148490605e2e0e901220c0149a80520c0148e8122120149a805", + "0x28fe0244b89180726a014918054b40489792300e4d40283900a1880911d", + "0x8e8122360149a805236014960122580149a8050247280912d00a4d40292e", + "0x913500a04803812024f0c0913500e4b0918073920488e80526a0148e805", + "0x293500a0e0029ad0240e00293500a4ac029720244ac0293500a0483b812", + "0xb88122500149a8050241dc0901226a01409007024049e200502407009129", + "0x1f80526a0149480535c0489480526a0149380535a0489380526a01494005", + "0x284100a6b40904100a4d40283f25e01ce681207e0149a80507e014d6812", + "0x2b8120244d40281200e0489280578a4900293500e104028f902410402935", + "0x9007024049e30050240700904500a4d40292d00a4740901226a01492005", + "0x9312d00e9bc0912600a4d4028124da0480913500a494028570240489a805", + "0x2480726a0142291d2362e0e901208a0149a80523e0148e81223e0149a805", + "0x28b80244708f00726a0142581200e74c0904b00a4d40284b00a4740904b", + "0x291c00a4d40291c00aac40904900a4d40284900a4b00911e00a4d40291e", + "0x603900e4d40280700a1880913317001c9a80500a014310122381248f0b8", + "0x293300aacc0901800a4d40281900a6b80901901801c9a80501801559812", + "0x913200a4d40281803401ce68120300149a805030014d68120344cc03935", + "0x281200e0485d80578e0d80293500e4c8028f90244c80293500a4c8029ad", + "0xe00535c0480e13300e4d40293300aacc0901226a0141b0050ae04809135", + "0x903700a4d40283700a6b4090df01801c9a8050180155981206e0149a805", + "0x9a8070680147c8120680149a805068014d68120680149a8051be0dc039cd", + "0x9980739a0480913500a090028570240489a80502401c0902600af2012005", + "0x1e482b00a4d40382e00a3e40902e00a4d40282e00a6b40902e00a4d40280c", + "0x38b80720485c26b0240489a8050560142b8120244d40281200e04816005", + "0x901226a014830050f80480913500a0480381223642403bca20c0bc03935", + "0x1780526a014178051700489180526a0148e8052e40488e80526a01409077", + "0x8d8050f80480913500a048038122460bc038052460149a805246014d6812", + "0x848051700489700526a014978052e20489780526a014090770240489a805", + "0x913500a0480381225c4240380525c0149a80525c014d68122120149a805", + "0x1c12b00ef2c9612d00e4d4038391700485c26b0240489a8050580142b812", + "0xb90122520149a8050241dc0901226a014960050f80480913500a04803812", + "0x9400526a0149400535a0489680526a014968051700489400526a01494805", + "0x9a8050241dc0901226a0141c0050f80480913500a048038122504b403805", + "0x1f80535a0489580526a014958051700481f80526a014938052e204893805", + "0x901226a014130050ae0480913500a0480381207e4ac0380507e0149a805", + "0xe48120820149a8050247280901226a014998051fe0480913500a030028ff", + "0x912400a4d4028120ee0480913500a04803812024f300913500e1045c007", + "0x901279a0140901c0241140293500a494029ad0244940293500a49002972", + "0xd681223e0149a80524c014b881224c0149a8050241dc0901226a01409007", + "0x904b00a4d4028123940482480526a0142280535c0482280526a0148f805", + "0x9a80502401c0901279c0489a8070960e4039c90241240293500a124029ad", + "0x9a805238014d68122380149a80523c014b901223c0149a8050241dc09012", + "0x911700a4d4028120ee0480913500a04803812024f3c028120380488c005", + "0x293500a460029ae0244600293500a450029ad0244500293500a45c02971", + "0x90051700489c00526a0148904900e7300911200a4d40291200a6b409112", + "0x913500a04803812270048038052700149a805270014d68120240149a805", + "0x901226a0141c8050f80480913500a2e00287c0240489a8051760142b812", + "0xb901221e0149a8050241dc0901226a014998051fe0480913500a030028ff", + "0x1a80526a0141a80535a0480900526a014090051700481a80526a01487805", + "0x90070240301c933170f405c00700e4d40380502401c9b01206a04803805", + "0x5c0054d40480c00526a014038051700480c80526a014091ca0240489a805", + "0x281200e048093d100a0480e0122640149a805032015350120340149a805", + "0x1c8054d40480d00526a014060054d40480c00526a0149980517004809135", + "0x1300121760149a80526406803a5f0240d80293500a0495a0122640149a805", + "0x9a80506c2ec0c0b84cc0481b00526a0141b00556a0485d80526a0145d805", + "0x902600a4d4028125700481200526a0141a01c00e99c090341be0dc0e133", + "0x282c00a9a00902c06e01c9a80506e0149c8120560b80393500a09802a68", + "0x8d90600e4d40290600a9680910905601c9a8050560152d01220c0bc03935", + "0x978077a448c8e80726a01c8d9090482e1358122120149a80521201535012", + "0x1580526a014158054d40480913500a48c0287c0240489a80502401c0912e", + "0x281200e048093d30244d40390605601ce481223a0149a80523a0145c012", + "0x9a80523a0145c0120244d40282e00a1f00901226a014178050f804809135", + "0x1700526a014170054d40480913500a04803812024f500281203804896805", + "0x901226a014090070244a41c0077aa4ac9600726a01c1782e23a2e135812", + "0x9400726a0141b8054d00489680526a014960051700480913500a4ac0287c", + "0x281200e048093d60244d40383f24e01ce481207e0149a80502472809127", + "0x293500a048848120244d40292800a1f00901226a0146f80538c04809135", + "0x292408201c918122480149a8052480148e8122480149a8050249c009041", + "0x2aba0244980293500a4942280725c0482280526a0140912f02449402935", + "0x291f00a4d40291f00aaf00912d00a4d40292d00a2e00911f00a4d402926", + "0x9a805092014b90120920149a8050241dc0901226a0140900702447c96807", + "0x2580535a0488e00526a014940054d40488f00526a0149680517004825805", + "0x9a8052520143e0120244d40281200e048093d700a0480e0122300149a805", + "0x901226a01409007024049ec0050240700911700a4d40283800a2e009012", + "0x3e0120244d40282f00a1f00901226a014158050f80480913500a4b80287c", + "0x15c01222e0149a80525e0145c0120244d40290600a1f00901226a01417005", + "0x8780726a0148a0054d00489c11200e4d40283700a9a00911400a4d402812", + "0x3bd90ae42c0393500e0d49c1171709ac0903500a4d40283500a9a809035", + "0x293500a16c0297202416c0293500a0483b8120244d40281200e0482c90a", + "0x290700a6b40901d00a4d40285700a9a80910300a4d40290b00a2e009107", + "0x3080526a014090770240489a80502401c090127b40140901c02418c02935", + "0x9a8050b2015350122060149a8052140145c0120c40149a8050c2014b8812", + "0x818b84d60488780526a014878054d40483180526a0143100535a0480e805", + "0x28ff00a2e00901226a014090070241f07f0077b61947f80726a01c87912", + "0x29ad0243e40293500a07402a6a0243ec0293500a19402a6a0241a402935", + "0x9a805024af40901226a01409007024049ee005024070090f800a4d402863", + "0x1ee87100c01c9a8071ec0747f0b84d60487b00526a0147b0054d40487b005", + "0x287c00a9a80906900a4d40280600a2e00901226a014090070243d439807", + "0x901c0243e00293500a18c029ad0243e40293500a1c402a6a0243ec02935", + "0x293500a0483b8120244d40286300a3fc0901226a01409007024049ee005", + "0x287c00a9a80906900a4d40287300a2e00907700a4d4028f400a5c4090f4", + "0x28f90243e00293500a1dc029ad0243e40293500a3d402a6a0243ec02935", + "0x901226a014798050ae0480913500a048038121e4015ef0f300a4d4038f8", + "0x913500a04803812024f7c0913500e3c47c8073920487880526a014091ca", + "0x90ef00a4d4028122120480913500a3ec0287c0240489a8051be014e3012", + "0x293500a3c0778072460487800526a0147800523a0487800526a01409270", + "0x287f00aae80907f00a4d40288d11801c970121180149a8050244bc0908d", + "0x3480700a21c0293500a21c02abc0241a40293500a1a4028b802421c02935", + "0x4180526a014408052e20484080526a014090770240489a80502401c09087", + "0x9a805106014d68122380149a8051f60153501223c0149a8050d20145c012", + "0x6f91e1709980908800a4d40288800aad40908800a4d40281257c0488c005", + "0x9a805024afc090eb00a4d40288e11201d3381211c2003d8892664d402888", + "0x1340121281ec0393500a1ec029390244a87400726a014738054d004873805", + "0x9a8052540152d0121c20149a805230470039af0243887180726a0144a005", + "0x468121360149a805136015350121383880393500a38802a5a02426c95007", + "0x90dd1c001df009f13a01c9a80713826c758b84d60487080526a01470805", + "0x5c0122540149a805254015350120244d40289f00a1f00901226a01409007", + "0x913500a04803812024f840913500e388950073920484e80526a0144e805", + "0x6d80526a0144e8051700480913500a3a00287c0240489a8051c60143e012", + "0x1358121d00149a8051d0015350120244d40281200e048093e200a0480e012", + "0x287c0240489a80502401c090d51ac01df18a21b401c9a8071c63a04e8b8", + "0x90d31a801c9a8050f6015340121b60149a8051b40145c0120244d4028a2", + "0x913500a04803812024f900913500e2b0698073920485600526a014091ca", + "0x901226a0144000538c0480913500a384028370240489a8051a80143e012", + "0x90d200a4d4028d200a474090d200a4d4028124e00485380526a01409109", + "0x9a80519e3340392e0243340293500a0489781219e0149a8051a429c03923", + "0x650055780486d80526a0146d8051700486500526a0146580557404865805", + "0x90c800a4d4028120ee0480913500a0480381219436c038051940149a805", + "0x293500a35002a6a0242f40293500a36c028b80243000293500a32002972", + "0x901226a01409007024049f2805024070090cc00a4d4028c000a6b4090ba", + "0x3812024f98028120380480000526a0146b0051700480913500a3540287c", + "0x718050f80480913500a4a80287c0240489a8051ba0143e0120244d402812", + "0x28e000a2e00901226a014710050f80480913500a3a00287c0240489a805", + "0x2a680245a4b400726a0143d8054d0048b380526a014092bf02400002935", + "0x9a8072d65a4000b84d6048b580526a014b58054d4048b596a00e4d402967", + "0xb901226e0149a8050241dc0901226a014090070245bcb70077ce5b4b6007", + "0xb900526a014b68054d4048b880526a014b6005170048b800526a0149b805", + "0x3b8120244d40281200e048093e800a0480e0122e60149a8052e0014d6812", + "0x917100a4d40296e00a2e00917600a4d40297500a5c40917500a4d402812", + "0x293500a5a802a6a0245cc0293500a5d8029ad0245c80293500a5bc02a6a", + "0x913500a048038122f45e403be92f05dc0393500e5a8b41711709ac0916a", + "0x9a8052e4015350122f80149a8052f0015350122f60149a8052ee0145c012", + "0x913500a04803812024fa802812038048bf00526a014b980535a048be805", + "0x397f2e45e45c26b0245fc0293500a5fc02a6a0245fc0293500a0495e812", + "0xbd80526a0149b0051700480913500a048038123546a403beb3504d803935", + "0x9a8052e6014d68122fa0149a805350015350122f80149a8052f401535012", + "0x901226a014b98051fe0480913500a04803812024fa802812038048bf005", + "0xbd80526a014d4805170048d680526a014d58052e2048d580526a01409077", + "0x9a80535a014d68122fa0149a805354015350122f80149a8052f401535012", + "0x28570240489a80502401c091af00afb0d700526a01cbf0051f2048bf005", + "0x90127da0489a8073605f4039c90246c00293500a048e50120244d4029ae", + "0x29c60240489a8051c20141b8120244d40297c00a1f00901226a01409007", + "0xd900523a048d900526a014092700246c40293500a048848120244d402880", + "0x9701236a0149a8050244bc091b300a4d4029b236201c918123640149a805", + "0x293500a5ec028b80246dc0293500a6d802aba0246d80293500a6ccda807", + "0x90770240489a80502401c091b72f601c029b700a4d4029b700aaf00917b", + "0x13501217a0149a8052f60145c0123720149a805370014b88123700149a805", + "0xdd00726a014400054d00486600526a014dc80535a0485d00526a014be005", + "0x281200e048093ee0244d4039bc37601ce48123780149a805024728091bb", + "0x9a8051980147f8120244d4028e100a0dc0901226a0145d0050f804809135", + "0x93ef00a0480e01237a0149a80517a0145c0120244d4029ba00a1f009012", + "0x900702470002bf037e6f80393500e6e85e8075800480913500a04803812", + "0xe100526a014709c137e2e1400123820149a8051982e8039af0240489a805", + "0x9a80537c0145c0123880149a805386015610123860149a80538401560812", + "0x3e0120244d40281200e048e21be00e014e200526a014e2005578048df005", + "0x28b80240489a8051980147f8120244d4028e100a0dc0901226a0145d005", + "0x291d0247180293500a0493801238a0149a805024424091bd00a4d4029c0", + "0x91c800a4d40281225e048e380526a014e31c500e48c091c600a4d4029c6", + "0x9a80537a0145c0123940149a8053920155d0123920149a80538e7200392e", + "0x2b8120244d40281200e048e51bd00e014e500526a014e5005578048de805", + "0x29c60240489a8051c20141b8120244d40297c00a1f00901226a014d7805", + "0x2812586048e600526a014091090240489a8052fa0143e0120244d402880", + "0x9781239c0149a80539a730039230247340293500a7340291d02473402935", + "0xe880526a014e8005574048e800526a014e71cf00e4b8091cf00a4d402812", + "0x38123a25ec038053a20149a8053a20155e0122f60149a8052f60145c012", + "0x7d8050f80480913500a37c029c60240489a8051e40142b8120244d402812", + "0x9a805024b0c091d200a4d4028122120480913500a3e40287c0240489a805", + "0x912f0244ec0293500a74ce9007246048e980526a014e980523a048e9805", + "0x91d600a4d4029d500aae8091d500a4d40293b3a801c970123a80149a805", + "0x91090247583480700a7580293500a75802abc0241a40293500a1a4028b8", + "0xdb8120244d40280c00a4180901901801c9a805266015530120720149a805", + "0x28ef0240705d8362640681c93500a060029d00240600c80726a0140c805", + "0xe0051de0480913500a2ec0287c0240489a80506c0143e0120244d402932", + "0x392302437c0293500a0dc0289f0240dc0293500a0680293a0240489a805", + "0x1c93500a090029d00240900c80726a0140c80536e0481a00526a0146f839", + "0x287c0240489a8050560143e0120244d40282600a3bc0902f0580ac17026", + "0x289f0244180293500a0b80293a0240489a80505e014778120244d40282c", + "0xc80726a0140c80536e0488d80526a0148483400e48c0910900a4d402906", + "0x778120244d40292300a3bc0912c25a4b8979230724d40291d00a7400911d", + "0x28650240489a805258014778120244d40292d00a1f00901226a01497805", + "0x9480526a0141c11b00e48c0903800a4d40292b00a3f80912b00a4d40292e", + "0x91252481041f9270724d40292800a7400912803201c9a805032014db812", + "0x778120244d40284100a1f00901226a0141f8051de0480913500a49c028ef", + "0x912600a4d40284500a3f80904500a4d40292400a1940901226a01492805", + "0x778122304708f04b0920e49a805032014e801223e0149a80524c4a403923", + "0x287c0240489a80523c0143e0120244d40284b00a3bc0901226a01424805", + "0x918122280149a80522e0144f81222e0149a8052300149d0120244d40291c", + "0x8780526a014092c40244e00293500a2e002aa70244480293500a4508f807", + "0x9a8052160149c0120244d40283500a4480910b06a01c9a8052240148a012", + "0x28392f40482b80526a0142b8052660488780526a0148780523a0482b805", + "0x901226a0140900702407481907170fc42d8592142e09a8070ae43c9c007", + "0x293500a4280292b02418c0293500a18c028f502418c0293500a16c02824", + "0x90ff00afc83106100e4d40386300a0980905900a4d40285900a0e00910a", + "0x388120ca0149a8050c4014030120244d40286100a0ac0901226a01409007", + "0x393500e3f80900726c0487f00526a0147f00523a0487f00526a01432805", + "0x90f600a4d40286900ab140901226a014090070243e07c8fb170fcc3487c", + "0x293500a4280292b0241f00293500a1f0028b80240180293500a3d802ac6", + "0x2c90a0f84cc0280600a4d40280600ab200905900a4d40285900a0e00910a", + "0x901226a0147c0050f80480913500a3e40287c0240489a80502401c09006", + "0x282b0240489a80502401c090127e80140901c0241c40293500a3ec028b8", + "0x92ad0241cc0293500a048848120e20149a8050240145c0120244d4028ff", + "0x90f400a4d4028f50e601c918121ea0149a8051ea0148e8121ea0149a805", + "0x293500a3cc02ac90243cc0293500a3d03b80725c0483b80526a0140912f", + "0x285900a0e00910a00a4d40290a00a4ac0907100a4d40287100a2e0090f2", + "0x9a80502401c090f20b24283893300a3c80293500a3c802ac802416402935", + "0x28ef00ab24090ef00a4d40281d1e201c970121e20149a8050244bc09012", + "0x283802441c0293500a41c0292b0240480293500a048028b80243c002935", + "0x28620243c0819070244cc028f000a4d4028f000ab200910300a4d402903", + "0x393500a01c028610240301c80726a01499805532048998b800e4d402805", + "0x1b0057ea4c80293500e030028f90240680c00726a0140c8050c40480c807", + "0x90bb00a4d40281a00a6b80901226a014990050ae0480913500a04803812", + "0x28570240489a80502401c090127ec0140901c0240700293500a2ec029ad", + "0x2bf706e0149a8070380147c8120380149a805034014d68120244d402836", + "0x5c00726a0145c0054b40480913500a0dc028570240489a80502401c090df", + "0x913500a048038120560b803bf804c0900393500e0601a0121709ac09034", + "0x9a80500e014310120580149a8050722e0039af0240489a80504c0143e012", + "0x1600511a0488480526a014120051700480913500a418028ff02441817807", + "0x281200e048093f900a0480e01223a0149a80505e015350122360149a805", + "0x9a80505c0145c0120244d40283900a3fc0901226a014158050f804809135", + "0x8d8050c40488e80526a0145c0054d40488d80526a0140380511a04884805", + "0x38122564b003bfa25a4b80393500e474919091709ac0912f24601c9a805", + "0x5c0122524b40393500a4b402a5a0240e00293500a048e50120244d402812", + "0x913500a04803812024fec0913500e0e0948073920489700526a01497005", + "0x293500a49c029ad02449c0293500a4a0029720244a00293500a0483b812", + "0xb88120820149a8050241dc0901226a01409007024049fe0050240700903f", + "0x9280526a0141f80535c0481f80526a0149200535a0489200526a01420805", + "0x292e00a2e00904500a4d40292525e01ce681224a0149a80524a014d6812", + "0x901c0241240293500a114029ad02447c0293500a4b402a6a02449802935", + "0x9a80525e0147f8120244d40292b00a1f00901226a01409007024049fe805", + "0x293500a4780291d0244780293500a049650120960149a80502442409012", + "0x8e11800e4b80911800a4d40281225e0488e00526a0148f04b00e48c0911e", + "0x13e0122580149a8052580145c0122280149a80522e0153f01222e0149a805", + "0x9a8051be0142b8120244d40281200e0488a12c00e0148a00526a0148a005", + "0x878077fc4e08900726a01c0c0b80242e1658120244d40280700a0dc09012", + "0x9c00726a0149c0054b40488580526a014091ca0240489a80502401c09035", + "0x9007024049ff81226a01c8585700e7240911200a4d40291200a2e009057", + "0x2c80535a0482c80526a014850052e40488500526a014090770240489a805", + "0x293500a0483b8120244d40281200e0480940000a0480e0120b60149a805", + "0x285b00a6b80905b00a4d40290300a6b40910300a4d40290700a5c409107", + "0x5c0120c60149a80503a0e4039cd0240740293500a074029ad02407402935", + "0x2480526a0143180535a0488f80526a0149c0054d40489300526a01489005", + "0x286200a4f80906200a4d40286100a9fc0906100a4d40284923e01cd7812", + "0x9300700a3fc0293500a3fc02a7c0244980293500a498028b80243fc02935", + "0x901226a0141c8051fe0480913500a0d40287c0240489a80502401c090ff", + "0x90fe00a4d4028fe00a474090fe00a4d4028125980483280526a01409109", + "0x9a8050f81a40392e0241a40293500a048978120f80149a8051fc19403923", + "0x7c8054f80488780526a014878051700487c80526a0147d8054fc0487d805", + "0x4f81206c4c80d0180320e49a805072014e80121f243c038051f20149a805", + "0x901c00a4d40281c00a4740901c00a4d4028123a20485d80526a0140c805", + "0x6f80523a0481a00526a0140c00513e0486f83700e4d4028bb03801c5c1d2", + "0x293500a068028fe0240981200726a0141a0df06e2e0e90121be0149a805", + "0x7f0120580ac0393500a0b8130241707480902600a4d40282600a4740902e", + "0x9a80505e0b0158b83a40481600526a0141600523a0481780526a01499005", + "0x5c1d20244240293500a4240291d02446c0293500a0d80289f02442483007", + "0x292302401ce98122460149a8052460148e8122464740393500a46c84906", + "0x1668120180149a8050180154081225e0149a80525e0145c01225c4bc03935", + "0x9a8072580148c01223a0149a80523a014960122584b40393500a03097807", + "0x90eb0244a40293500a4b80288e0240489a80502401c0903800b00495805", + "0xb80122500149a8052500147381224e0149a8052560148b8122500149a805", + "0x913500a0480381208a494920b88041041f80726a01c939292502e002839", + "0x9a80523e0156781223e0149a80524c4cc03ace0244980293500a0483b812", + "0x8e8052580481f80526a0141f8052560489680526a0149680517004824805", + "0x1c8050920149a805092015680120820149a8050820141c01223a0149a805", + "0x281225e0480913500a4cc029bf0240489a80502401c090490824741f92d", + "0x5c0122380149a80523c0156881223c0149a80508a12c0392e02412c02935", + "0x8e80526a0148e8052580489200526a014920052560489680526a01496805", + "0x9291d2484b41c8052380149a8052380156801224a0149a80524a0141c012", + "0x901226a014970055a40480913500a4cc029bf0240489a80502401c0911c", + "0x293500a0140292b0244b40293500a4b4028b80244600293500a0e002ad1", + "0x291800ab40090b800a4d4028b800a0e00911d00a4d40291d00a4b009005", + "0x380502401c028120244d40281205c0488c0b823a0149683900a46002935", + "0x9980726a014998055660480913500a0480381206837c03c0306e07003935", + "0x381205c0160202600a4d40382400a3e40901c00a4d40281c00a2e009024", + "0x292b0240700293500a070028b80240489a80504c0142b8120244d402812", + "0x1583900e4d40283900a6d8090b800a4d4028b800a0e00903700a4d402837", + "0x282c00a12c0902c01801c9a805018014db8120560149a80505601451012", + "0x12d01205e0149a80505e0144681205e0640393500a064028610240b002935", + "0x158b806e0700cad30244180293500a41802a6a0244180c00726a0140c005", + "0x912e00b0149780526a01c918055a80489191d2364249993500a4181782c", + "0x912c00a4d40290900a2e00912d00a4d40292f00ab540901226a01409007", + "0x293500a4b402ad60240e00293500a474028380244ac0293500a46c0292b", + "0x1b8120244d40283600a2740901226a0140900702404a0300502407009129", + "0x29060240489a8050300143e0120244d40281a00a2740901226a01499005", + "0x5d80550e0480913500a4cc028ff0240489a805072014e78120244d40280c", + "0x848051700489400526a014970055ae0480913500a064028370240489a805", + "0x1c01200e0149a80500e014960122360149a805236014958122120149a805", + "0x912823a01c8d9090720149400526a014940052820488e80526a0148e805", + "0x958120380149a8050380145c0120244d40282e00a15c0901226a01409007", + "0x1c80726a0141c80536c0485c00526a0145c0050700481b80526a0141b805", + "0x1f8050960481f80c00e4d40280c00a6dc0912700a4d40292700a28809127", + "0x904100a4d40284100a2340904103201c9a8050320143081207e0149a805", + "0x5c0370380656c0122480149a805248015350122480600393500a06002a5a", + "0x2580580e1240293500e47c02ad402447c9304524a4cc9a8052481041f927", + "0x9600526a014928051700488f00526a014248055aa0480913500a04803812", + "0x9a80523c0156b0120700149a80524c0141c0122560149a80508a01495812", + "0x28610244b00293500a4b0028b80244608e00726a014948055b204894805", + "0x9900726a014990050c20488b80526a0148b80511a0488b91c00e4d40291c", + "0x14c8122704480393500a4508b92c1707380911400a4d40291400a23409114", + "0x7c8120244d4028120300480913500a43c028ff0240d48780726a0149c005", + "0x913500a42c028570240489a80502401c0905700b0208580526a01c1a805", + "0x285900a6b40905900a4d40290a00a6b80910a26601c9a80526601559812", + "0x913500a15c028570240489a80502401c090128120140901c02416c02935", + "0x385b00a3e40905b00a4d40285b00a6b40905b26601c9a80526601559812", + "0x28f90240489a80520e0142b8120244d40281200e0488180581441c02935", + "0x901226a0140e8050ae0480913500a048038120c60160581d00a4d403918", + "0x3100526a014958052560483080526a014890051700480913500a06402837", + "0x9a8051760154f8120ca0149a8050700141c0121fe0149a80500e01496012", + "0x901226a014318050ae0480913500a04803812025030028120380487f005", + "0xc8fb00e704090fb01801c9a805018014db8120d21f00393500a2ec02a9a", + "0xe101200e0149a80500e014960122240149a8052240145c0121f20149a805", + "0x288e0240187b0f81704d4028f90d201c891333860487c80526a0147c805", + "0xd00726a0140d0055b40483983600e4d40283600ab680907100a4d402806", + "0x287700a39c0907700a4d4028121d60487a00526a0147a87300e374090f5", + "0x393500e3d0388770704ac1c9700243d00293500a3d00291d0241dc02935", + "0x906100a4d4028f800a2e00901226a014090070243c0778f1171034790f3", + "0x293500a3c8028380243fc0293500a3d80292c0241880293500a3cc0292b", + "0x468051f20484693300e4d40293300aacc090fe00a4d40287c00aa7c09065", + "0x15e8120244d40288c00a15c0901226a014090070241fc02c0e1180149a807", + "0xd68121060149a805102014b90121020149a8050241dc0908700a4d402812", + "0x908900a4d4028123940484400526a0144180535c0484180526a01441805", + "0x9a805110014d68120f60149a8050f6015350120f621c0393500a21c02a5a", + "0x28120ee0480913500a0480381202503c0913500e2243d80739204844005", + "0x901c0243ac0293500a238029ad0242380293500a2000297202420002935", + "0x9a8051ce014b88121ce0149a8050241dc0901226a0140900702404a08005", + "0x9500535a0489500526a0147580535c0487580526a0147400535a04874005", + "0x7180526a0144a08700e6bc0909400a4d40292a11001ce68122540149a805", + "0x9a8051c6014468122380149a805238014468120c20149a8050c20145c012", + "0x20889b00a4d4038e100a40c090e11c401c9a8051c6470308b84f604871805", + "0x9a8051c40145c01213a0149a8051360140e8120244d40281200e0484e005", + "0x913500a04803812025048028120380487000526a0144e80511a0484f805", + "0x1b8120244d40283600a2740901226a0147f00550e0480913500a04817012", + "0x29060240489a8050300143e0120244d40281a00a2740901226a01499005", + "0x4e0055ae0480913500a4cc028ff0240489a805072014e78120244d40280c", + "0x960120c40149a8050c4014958121c40149a8051c40145c0121ba0149a805", + "0x6e80526a0146e8052820483280526a014328050700487f80526a0147f805", + "0x5c0120244d40287f00a15c0901226a01409007024374328ff0c43881c805", + "0x5c0120244d40281205c0487000526a0148e00511a0484f80526a01430805", + "0x7f80526a0147f8052580483100526a014310052560484f80526a0144f805", + "0x9a805072014510122660149a805266014d68120ca0149a8050ca0141c012", + "0xc0054d40487000526a0147000511a0480600526a014060050960481c805", + "0x8e8122640149a805264014468120340149a8050340148e8120300149a805", + "0x7f0362640680c0e00180e4998651fe1884f81c5360481b00526a0141b005", + "0x901226a014090070243546b0a21b436c1c8051aa358510da1b60e49a805", + "0x28370240489a80506c0144e8120244d40291c00a0dc0901226a0140902e", + "0x600520c0480913500a0600287c0240489a8050340144e8120244d402932", + "0x287c00aa1c0901226a014998051fe0480913500a0e4029cf0240489a805", + "0x698055ae0486980526a014780d400e4b8090d400a4d40281225e04809135", + "0x960121e20149a8051e2014958121f00149a8051f00145c0121580149a805", + "0x5600526a014560052820487780526a014778050700487b00526a0147b005", + "0x28570240489a8050240b80901226a014090070242b0778f61e23e01c805", + "0x9900506e0480913500a0d80289d0240489a8052380141b8120244d402903", + "0x280c00a4180901226a0140c0050f80480913500a0680289d0240489a805", + "0x9a8052300147f8120244d40293300a3fc0901226a0141c80539e04809135", + "0x690052840486900526a014538191762e16d81214e0149a8050241dc09012", + "0x960122560149a805256014958122240149a8052240145c01219e0149a805", + "0x6780526a014678052820481c00526a0141c0050700480380526a01403805", + "0x1b8120244d40283600a2740901226a0140900702433c1c0072564481c805", + "0x29060240489a8050300143e0120244d40281a00a2740901226a01499005", + "0x5d80550e0480913500a4cc028ff0240489a805072014e78120244d40280c", + "0x928051700486680526a014258055ae0480913500a064028370240489a805", + "0x1c01200e0149a80500e0149601208a0149a80508a0149581224a0149a805", + "0x90cd24c01c229250720146680526a014668052820489300526a01493005", + "0x28370240489a80506c0144e8120244d40281900a0dc0901226a01409007", + "0x600520c0480913500a0600287c0240489a8050340144e8120244d402932", + "0x28bb00aa1c0901226a014998051fe0480913500a0e4029cf0240489a805", + "0x9a8051940148e8121940149a80502442c090cb00a4d40281221204809135", + "0x6000725c0486000526a0140912f0243200293500a3286580724604865005", + "0x90df00a4d4028df00a2e0090ba00a4d4028bd00ab5c090bd00a4d4028c8", + "0x293500a2e00283802401c0293500a01c0292c0240d00293500a0d00292b", + "0x9a80500a014eb0121742e0038341be0e4028ba00a4d4028ba00a504090b8", + "0x12d0120320149a805024b700900c07201c9a805170014310122662e0038b8", + "0x38190300485c26b0240640293500a06402a6a0240601c80726a0141c805", + "0x901226a014990050f80480913500a048038121760d803c1326406803935", + "0x3e0120244d40280c00a3fc0901226a014038053900480913500a4cc02837", + "0x291d0240dc0293500a0496e8120380149a8050244240901226a0141c805", + "0x903400a4d40281225e0486f80526a0141b81c00e48c0903700a4d402837", + "0x9a8050340145c01204c0149a805048015318120480149a8051be0d00392e", + "0x3e0120244d40281200e0481301a00e0141300526a014130054ca0480d005", + "0x902c00a4d4028125bc0481582e00e4d40293300a1880901226a0145d805", + "0x1602f06c2e1358120580149a8050580153501205e0b80393500a0b802a5a", + "0x913500a4240287c0240489a80502401c0911d23601e0a10920c01c9a807", + "0x901226a014060051fe0480913500a01c029c80240489a80505c0143e012", + "0x16f8122460149a8050244240901226a0141c8050f80480913500a0ac028ff", + "0x9700526a0149792300e48c0912f00a4d40292f00a4740912f00a4d402812", + "0x9a805258015318122580149a80525c4b40392e0244b40293500a04897812", + "0x9590600e0149580526a014958054ca0488300526a0148300517004895805", + "0x903800a4d40280700a9780901226a0148e8050f80480913500a04803812", + "0x9383900e4d40283900a9680912800a4d4028123940489480526a014091ca", + "0x281200e048094150244d40392824e01ce48122360149a8052360145c012", + "0x284100a6b40904100a4d40283f00a5c80903f00a4d4028120ee04809135", + "0x9280526a014090770240489a80502401c0901282c0140901c02449002935", + "0x9a805248014d70122480149a80508a014d681208a0149a80524a014b8812", + "0x29ad02447c0293500a4980600739a0489300526a0149300535a04893005", + "0x913500a048038120960160b84900a4d40391f00a3e40911f00a4d40291f", + "0x293500a0e402a6a0244780293500a46c028b80240489a8050920142b812", + "0x16e0120244d40284b00a15c0901226a0140900702404a0c0050240700911c", + "0x393500e4601c91b170b2c0911800a4d40291800a9a80911800a4d402812", + "0x13501223c0149a80522e0145c0120244d40281200e0489c11200f0648a117", + "0x12f81206a0149a805024b800910f00a4d4028123940488e00526a0148a005", + "0x293500a42c02a600244780293500a478028b802442c0293500a43c8e007", + "0x17101221415c0393500a0d48591e170b840903500a4d40283500a9800910b", + "0x281200e0488180583441c0293500e16c028f902416c2c80726a01485005", + "0x948054d40483181d00e4d40285900a9a00901226a014838050ae04809135", + "0x90070241947f8078361883080726a01c319290ae2e1658122520149a805", + "0x308051700483e00526a0147f0052e40487f00526a014090770240489a805", + "0xe0121f20149a8050f8014d68121f60149a8050c4015350120d20149a805", + "0x28f800a5c4090f800a4d4028120ee0480913500a0480381202507002812", + "0x29ad0243ec0293500a19402a6a0241a40293500a3fc028b80243d802935", + "0x38121ea1cc03c1d0e20180393500e0741c069170b2c090f900a4d4028f6", + "0x1350120ee0149a8050e2015350121e80149a80500c0145c0120244d402812", + "0x3812025078028120380487900526a0147c80535a0487980526a0147d805", + "0x5c2cb0243c40293500a3c402a6a0243c40293500a0495e8120244d402812", + "0x778051700480913500a0480381211823403c1f1e03bc0393500e3c47d873", + "0xd68121e60149a8051e0015350120ee0149a8051ea015350121e80149a805", + "0x7c8051fe0480913500a04803812025078028120380487900526a0147c805", + "0x468051700484380526a0143f8052e20483f80526a014090770240489a805", + "0xd68121e60149a805118015350120ee0149a8051ea015350121e80149a805", + "0x9a80502401c0908300b0804080526a01c790051f20487900526a01443805", + "0x393500a0b802a5a0242200293500a048e50120244d40288100a15c09012", + "0x28120ee0480913500a048038120250840913500e220448073920484482e", + "0x901c0242380293500a200029ad0242000293500a1ec029720241ec02935", + "0x9a8051d6014b88121d60149a8050241dc0901226a0140900702404a11005", + "0x7400535a0487400526a0144700535c0484700526a0147380535a04873805", + "0x912a00a4d40292a00a6b40912a00a4d4028e805601ce68121d00149a805", + "0x9a8051280142b8120244d40281200e048718058462500293500e4a8028f9", + "0x212005024070090e100a4d40282e00a9a8090e200a4d4028f400a2e009012", + "0x909b00a4d4028125bc0480913500a38c028570240489a80502401c09012", + "0x7009f00f0944e89c00e4d40389b05c3d05c2cb02426c0293500a26c02a6a", + "0x7080526a0144e8054d40487100526a0144e0051700480913500a04803812", + "0x9a8051ba38403a790243740293500a37402a6a0243740293500a04971812", + "0x90d500a4d4028db00a3f8090d600a4d4028a21c401d338121443686d8b8", + "0x9a80502401c090d400b0980913500e354028db0243580293500a358028b8", + "0x6900784e29c5600726a01c6d0f31ac2e1658121a60149a80502472809012", + "0x6580526a014668052e40486680526a014090770240489a80502401c090cf", + "0x9a805196014d68121900149a80514e015350121940149a8051580145c012", + "0x90bd00a4d4028120ee0480913500a048038120250a00281203804860005", + "0x293500a33c02a6a0243280293500a348028b80242e80293500a2f402971", + "0x3b8ca170b2c090d300a4d4028d300a9a8090c000a4d4028ba00a6b4090c8", + "0x9a8051980145c0120244d40281200e048b416700f0a4000cc00e4d4038d3", + "0x6000535a048b580526a014640054d4048b500526a014000054d4048b4805", + "0x293500a0495e8120244d40281200e0480942a00a0480e0122d80149a805", + "0x3c2b2de5b80393500e5b464167170b2c0916d00a4d40296d00a9a80916d", + "0x9a8052d0015350122d20149a8052dc0145c0120244d40281200e048b8137", + "0x2812038048b600526a0146000535a048b580526a014b78054d4048b5005", + "0xb880526a014090770240489a8051800147f8120244d40281200e0480942a", + "0x9a8052d0015350122d20149a80526e0145c0122e40149a8052e2014b8812", + "0xb60051f2048b600526a014b900535a048b580526a014b80054d4048b5005", + "0x1348120244d40297300a15c0901226a014090070245d402c2c2e60149a807", + "0xb580726a014b58054b4048bb97600e4d40297600a9680917600a4d402812", + "0x3c2d2f45e40393500e5e0bb9691709ac0917700a4d40297700a9a809178", + "0x393500a5ac02a5a0240489a8052f40143e0120244d40281200e048be17b", + "0x38120250b80913500e5d8be807392048bc80526a014bc805170048be96b", + "0x293500a048e50120244d40281200e0480942f00a0480e0120244d402812", + "0x38120250c00913500e5f8bf807392048bf96a00e4d40296a00a9680917e", + "0xbc8051700480913500a5ac0287c0240489a8052d40143e0120244d402812", + "0x9a8052d60147f0120244d40281200e0480943100a0480e01226c0149a805", + "0xd51a800e9b8091aa00a4d4028124da048d480526a014b50051fc048d4005", + "0x91ad00a4d4029a935601d378123560149a8053560148e8123560149a805", + "0x293500a5e4028b80246bc0293500a6b802a750246b80293500a6b402a74", + "0x287c0240489a80502401c091af2f201c029af00a4d4029af00a99409179", + "0xb58050f80480913500a5a80287c0240489a8052ec0143e0120244d40297c", + "0x28124e0048d800526a014091090244d80293500a5ec028b80240489a805", + "0x978123640149a8053626c0039230246c40293500a6c40291d0246c402935", + "0xdb00526a014da8054c6048da80526a014d91b300e4b8091b300a4d402812", + "0x381236c4d80380536c0149a80536c0153281226c0149a80526c0145c012", + "0xb58050f80480913500a5a80287c0240489a8052ea0142b8120244d402812", + "0x29b800a474091b800a4d4028125c8048db80526a014091090240489a805", + "0x392e0246e80293500a048978123720149a8053706dc039230246e002935", + "0xb480526a014b4805170048de00526a014dd8054c6048dd80526a014dc9ba", + "0x6a0051a60480913500a048038123785a4038053780149a80537801532812", + "0x28f300a1f00901226a0146d0050f80480913500a1dc0287c0240489a805", + "0x9a80537c0148e81237c0149a8050249f4091bd00a4d40281221204809135", + "0xe000725c048e000526a0140912f0246fc0293500a6f8de807246048df005", + "0x90d600a4d4028d600a2e0091c200a4d4029c100a98c091c100a4d4029bf", + "0x28e000a1f00901226a014090070247086b00700a7080293500a70802a65", + "0x293500a048848120244d40287700a1f00901226a014798050f804809135", + "0x29c438601c918123880149a8053880148e8123880149a805024b30091c3", + "0x2a6302471c0293500a714e300725c048e300526a0140912f02471402935", + "0x29c800a4d4029c800a9940909f00a4d40289f00a2e0091c800a4d4029c7", + "0x9a80505c0143e0120244d40288300a15c0901226a014090070247204f807", + "0x913500a0ac028ff0240489a8051e60143e0120244d40287700a1f009012", + "0xe500526a014e500523a048e500526a014092e40247240293500a04884812", + "0x29cc39a01c9701239a0149a8050244bc091cc00a4d4029ca39201c91812", + "0x2a650243d00293500a3d0028b802473c0293500a73802a6302473802935", + "0x913500a40c028570240489a80502401c091cf1e801c029cf00a4d4029cf", + "0x901226a014158051fe0480913500a0e00287c0240489a80505c0143e012", + "0x1728123a00149a8050244240901226a0142c80538c0480913500a4a40287c", + "0xe900526a014e89d000e48c091d100a4d4029d100a474091d100a4d402812", + "0x9a805276015318122760149a8053a474c0392e02474c0293500a04897812", + "0xea05700e014ea00526a014ea0054ca0482b80526a0142b805170048ea005", + "0x3e0120244d40282e00a1f00901226a0149c0050f80480913500a04803812", + "0x91090240489a8050560147f8120244d40292900a1f00901226a0141c005", + "0x39230247580293500a7580291d0247580293500a049660123aa0149a805", + "0x12b80526a0152aa5600e4b80925600a4d40281225e0492a80526a014eb1d5", + "0x9a8054b0015328122240149a8052240145c0124b00149a8054ae01531812", + "0xd01800e4d40293300aa980901900a4d4028122120492c11200e0152c005", + "0x9a805264014e80122640680393500a068029b70240489a80503001483012", + "0x3e0120244d40281c00a1f00901226a0145d8051de0486f8370382ec1b039", + "0x4f8120680149a80506c0149d0120244d4028df00a3bc0901226a0141b805", + "0x393500a068029b70240980293500a0900c8072460481200526a0141a005", + "0x901226a014158051de0488490605e0b01583926a014170053a00481701a", + "0x9d0120244d40290900a3bc0901226a014830050f80480913500a0bc0287c", + "0x293500a474130072460488e80526a0148d80513e0488d80526a01416005", + "0x1c12b2584b49703926a014978053a00489781a00e4d40281a00a6dc09123", + "0x901226a014958050f80480913500a4b4028ef0240489a80525c01477812", + "0x9400526a014948051fc0489480526a014960050ca0480913500a0e0028ef", + "0x1f8053a00481f81a00e4d40281a00a6dc0912700a4d40292824601c91812", + "0x913500a490028ef0240489a8050820147781224c114929240820e49a805", + "0x8f80526a014228050ca0480913500a498028ef0240489a80524a0143e012", + "0x281a00a7400904b00a4d40284924e01c918120920149a80523e0147f012", + "0x901226a0148e0051de0480913500a478028ef0244508b9182384781c935", + "0x911200a4d40291400a4e80901226a0148b8050f80480913500a4600287c", + "0x9a8050720143181221e0149a80527012c039230244e00293500a4480289f", + "0x286202415c8580726a014858050c20480913500a0d40283702442c1a807", + "0x905b00a4d40290a00a1940901226a0142c8051fe0482c90a00e4d402857", + "0x9a805216014310122060149a80520e43c0392302441c0293500a16c028fe", + "0x818051f60483080526a014318050d20480913500a0740287c02418c0e807", + "0x901226a014090070243fc02c320c40149a8070c20147c8122060149a805", + "0x90fe00a4d40286500a4740906500a4d4028121f00480913500a18802857", + "0x28121ec0480913500a3fc028570240489a80502401c090128660140901c", + "0x7f0120d20149a8051fc40c039230243f80293500a1f00291d0241f002935", + "0x293500a2e002aa70243e40293500a3ec348072460487d80526a01406005", + "0x280600a4480907100c01c9a8051f20148a0121ec0149a805024b98090f8", + "0x398052660487b00526a0147b00523a0483980526a0143880527004809135", + "0x790f31710d03b8f41ea2e09a8070e63d87c00700a0e4bd0120e60149a805", + "0x293500a1dc029330240480293500a048028b80240489a80502401c090f1", + "0x1c0121ea0149a8051ea0149581211a3c0778b826a0143b81200e06409077", + "0x9a80502401c0907f00b0d44600526a01c468050340487a00526a0147a005", + "0x908800b0d84188100e4d40388700a0980908700a4d4028f000a09009012", + "0x388121120149a805106014030120244d40288100a0ac0901226a01409007", + "0x21b81226a01c3d8051b60483d80526a0143d80523a0483d80526a01444805", + "0x293500a238029710242380293500a0483b8120244d40281200e04840005", + "0x901226a0140900702404a1c005024070090e700a4d4028eb00a6b4090eb", + "0x912a00a4d4028e800a5c8090e800a4d4028120ee0480913500a200028d3", + "0x9a80512823003ae70242500293500a39c029ae02439c0293500a4a8029ad", + "0x778051700487080526a014710055d20487100526a014718055d004871805", + "0x1750121e80149a8051e80141c0121ea0149a8051ea014958121de0149a805", + "0x440050560480913500a048038121c23d07a8ef2660147080526a01470805", + "0x913500a048038120250e4028120380480913500a230028370240489a805", + "0x909b00a4d4028122120480913500a3c00290a0240489a8050fe0142b812", + "0x293500a2704d8072460484e00526a0144e00523a0484e00526a014092ad", + "0x28e000abac090e000a4d40289d13e01c9701213e0149a8050244bc0909d", + "0x28380243d40293500a3d40292b0243bc0293500a3bc028b802437402935", + "0x90070243747a0f51de4cc028dd00a4d4028dd00aba8090f400a4d4028f4", + "0x2aeb0243680293500a3c46d80725c0486d80526a0140912f0240489a805", + "0x90f300a4d4028f300a4ac0901200a4d40281200a2e0090a200a4d4028da", + "0x90a21e43cc0913300a2880293500a28802aea0243c80293500a3c802838", + "0x913500a060029060240680c00726a0149980554c0480c80526a01409109", + "0x90df06e0705d8360724d40293200a7400913203401c9a805034014db812", + "0x778120244d40283700a1f00901226a0140e0050f80480913500a2ec028ef", + "0x902400a4d40283400a27c0903400a4d40283600a4e80901226a0146f805", + "0x282e00a7400902e03401c9a805034014db81204c0149a80504806403923", + "0x901226a014178050f80480913500a0ac028ef0244248302f0580ac1c935", + "0x911b00a4d40282c00a4e80901226a014848051de0480913500a4180287c", + "0x9a805034014db8122460149a80523a098039230244740293500a46c0289f", + "0x913500a4b8028ef0240e09592c25a4b81c93500a4bc029d00244bc0d007", + "0x901226a0141c0051de0480913500a4ac0287c0240489a80525a01477812", + "0x9a80525048c039230244a00293500a4a4028fe0244a40293500a4b002865", + "0x229252481041c93500a0fc029d00240fc0d00726a0140d00536e04893805", + "0x913500a4940287c0240489a805248014778120244d40284100a3bc09126", + "0x293500a47c028fe02447c0293500a114028650240489a80524c01477812", + "0x8a1172304708f03926a0140d0053a00482580526a0142492700e48c09049", + "0x901226a0148c0050f80480913500a470028ef0240489a80523c01477812", + "0x9c00526a0148900513e0488900526a0148a0052740480913500a45c0287c", + "0x1a80506e0488583500e4d40283900a18c0910f00a4d40293809601c91812", + "0x905921401c9a8050ae014310120ae42c0393500a42c028610240489a805", + "0x8380526a0142d8051fc0482d80526a014850050ca0480913500a164028ff", + "0xe8050f80483181d00e4d40290b00a1880910300a4d40290721e01c91812", + "0x28f902440c0293500a40c028fb0241840293500a18c028690240489a805", + "0x901226a014310050ae0480913500a048038121fe0161d06200a4d403861", + "0x38120250ec028120380487f00526a0143280523a0483280526a014090f8", + "0x3e00523a0483e00526a014090f60240489a8051fe0142b8120244d402812", + "0x90fb00a4d40280c00a3f80906900a4d4028fe20601c918121fc0149a805", + "0x293500a049760121f00149a805170015538121f20149a8051f61a403923", + "0x287100a4e00901226a014030052240483880600e4d4028f900a450090f6", + "0x1c97a0241cc0293500a1cc029330243d80293500a3d80291d0241cc02935", + "0x913500a048038121e23c8798b88781dc7a0f51704d4038731ec3e003805", + "0x287702401c0c8120ee0149a8050ee014998120240149a8050240145c012", + "0x90f400a4d4028f400a0e0090f500a4d4028f500a4ac0908d1e03bc5c135", + "0x9a8051e0014120120244d40281200e0483f80587a2300293500e2340281a", + "0x158120244d40281200e0484400587c20c4080726a01c4380504c04843805", + "0x907b00a4d40288900a1c40908900a4d40288300a0180901226a01440805", + "0x9a80502401c0908000b0fc0913500e1ec028db0241ec0293500a1ec0291d", + "0x9a8051d6014d68121d60149a80511c014b881211c0149a8050241dc09012", + "0x901226a014400051a60480913500a048038120251000281203804873805", + "0x7380526a0149500535a0489500526a014740052e40487400526a01409077", + "0x28e300aba0090e300a4d40289411801d738121280149a8051ce014d7012", + "0x292b0243bc0293500a3bc028b80243840293500a38802ae902438802935", + "0x28e100a4d4028e100aba8090f400a4d4028f400a0e0090f500a4d4028f5", + "0x4600506e0480913500a2200282b0240489a80502401c090e11e83d477933", + "0x913500a1fc028570240489a80502401c090128820140901c0240489a805", + "0x909c00a4d40281255a0484d80526a014091090240489a8051e001485012", + "0x293500a0489781213a0149a80513826c039230242700293500a2700291d", + "0x778051700486e80526a014700055d60487000526a0144e89f00e4b80909f", + "0x1750121e80149a8051e80141c0121ea0149a8051ea014958121de0149a805", + "0x281225e0480913500a048038121ba3d07a8ef2660146e80526a0146e805", + "0x5c0121440149a8051b4015758121b40149a8051e236c0392e02436c02935", + "0x7900526a014790050700487980526a014798052560480900526a01409005", + "0x5c00726a014028054d0048510f21e6048998051440149a80514401575012", + "0x2a5a0240645c00726a0145c0054b40480603900e4d40280700a9a009133", + "0x1b01200e99c090362640685c13500a0600c8074f20480c03900e4d402839", + "0x1b8b826a0140e0b800e9e40901c01801c9a8050180152d0121760149a805", + "0x13c81204c4cc0393500a4cc02a5a0240900293500a0d05d8074ce0481a0df", + "0x178b85960481780526a0141602400e99c0902c0560b85c13500a0e413007", + "0x9a8050247280901226a014090070244748d8078844248300726a01c6f81a", + "0x381202510c0913500e48c1b8073920488300526a0148300517004891805", + "0x170050f80480913500a4cc0287c0240489a8050180143e0120244d402812", + "0x9780526a014091ca0240489a80502401c090128880140901c0240489a805", + "0x293500a0483b8120244d40281200e048094450244d40392f05c01ce4812", + "0x2230050240700912c00a4d40292d00a6b40912d00a4d40292e00a5c80912e", + "0x1c00526a014958052e20489580526a014090770240489a80502401c09012", + "0x9a805252014d68122520149a805258014d70122580149a805070014d6812", + "0x28570240489a80502401c0912700b11c9400526a01c948051f204894805", + "0x5c26b0240fc0293500a0fc02a6a0240fc0293500a048e50120244d402928", + "0x920050f80480913500a0480381208a49403c482481040393500e4cc1f906", + "0x292600a5c80912600a4d4028120ee0480913500a0300287c0240489a805", + "0x901c02412c0293500a47c029ad0241240293500a104028b802447c02935", + "0x293500a048e50120244d40284500a1f00901226a0140900702404a24805", + "0x3c4a2304700393500e0308f1251709ac0911e00a4d40291e00a9a80911e", + "0x8900526a014090770240489a8052300143e0120244d40281200e0488a117", + "0x9a805270014d681221e0149a8052380145c0122700149a805224014b9012", + "0x901226a0148a0050f80480913500a0480381202512c028120380481a805", + "0x8780526a0148b8051700482b80526a014858052e20488580526a01409077", + "0x9a80506a014348120920149a80521e0146901206a0149a8050ae014d6812", + "0x28120380482c80526a014258050d20488500526a014248051a404825805", + "0x913500a0300287c0240489a80524e0142b8120244d40281200e0480944c", + "0x8380526a0142d8052e20482d80526a014090770240489a8052660143e012", + "0x9a8052140145c0120b20149a80520e014d68122140149a80520c0145c012", + "0x28120380483180526a0142c80535a0480e80526a014848054d404881805", + "0x913500a0dc0287c0240489a80505c0143e0120244d40281200e0480944d", + "0x906100a4d4028120ee0480913500a4cc0287c0240489a8050180143e012", + "0x293500a47402a6a02440c0293500a46c028b80241880293500a18402971", + "0x3c4e0ca3fc0393500e0ac0e903170b2c0906300a4d40286200a6b40901d", + "0x9a8050ca015350120d20149a8051fe0145c0120244d40281200e0483e0fe", + "0x913500a0480381202513c028120380487c80526a0143180535a0487d805", + "0x7b00526a0147c0052e20487c00526a014090770240489a8050c60147f812", + "0x9a8051ec014d68121f60149a8050f8015350120d20149a8051fc0145c012", + "0x5c0120e20149a8051f201803aed0240180293500a3ec990074be0487c805", + "0x90cb0724ac3886900e0143880526a014388055dc0483480526a01434805", + "0x1c88719a330090cb072048998b800e014090ca19a330090cb07221c668cc", + "0x668cc02432c1c88719a330090cb0726e0998b800e014090ca19a330090cb", + "0x2280b800e014090ca19a3300913310e33466012266b28998b800e014090ca", + "0x660121960e62893317001c02812194334660121960e4438cd19804865839", + "0x6583910e334660121960e62913317001c02812194334660121960e4438cd", + "0x28121943346601226621c668cc0244ce2993317001c0281219433466012", + "0x668cc0244ce2a8b800e014090ca19a3300913310e334660122671505c007", + "0x90ca19a3300913310e334660122671585c00700a048650cd19804899887", + "0x90bd10e0485c08702401e2c0050242e84381217021c090078ae2e003805", + "0x1c93317001c028121a4334658cc0240e43886213a334658cc0240662c805", + "0x22d8392662e003805024358668cb1980481c86213a334658cc0240322d00c", + "0x60392662e003805024380668cb1980481c8240c41844e8cd19633009018", + "0x90390c43bc4e8cd196330090198ba014090e310e0485c08702401e2e019", + "0x3b8940c41844e8cd1963300901a8bc0301c93317001c028121c0334658cc", + "0x902c00a0b07c0078be0600c80c0724cc5c00700a048700cd19633009039", + "0x65812267184998b800e014090fe19a330091330c43bc668cc0240e630005", + "0x23180700a0480d01200e090120121711885c00700a048950cb0242e07f83f", + "0x281221433466012266188778cd1980481cc6400a0488381200e01809007", + "0x3104919a32c660120331980380502435809007048090090b88ca4cc5c007", + "0x7781a19a32c6601203919c060392662e003805024478668cb1980481c859", + "0xc0190180e4998b800e0140912419a32c660120720fc0302400c03012062", + "0x60240c43bc668cc02406634805024348090070b204803c681760d89901a", + "0x9980c048188778cd1980480cc6a0180e4998b800e0140910619a33009133", + "0x38050244c809007032064090b88d60301c93317001c0281220c33466012", + "0x46c" + ], + "contract_class_version": "0.1.0", + "entry_points_by_type": { + "CONSTRUCTOR": [ + { + "function_idx": 10, + "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" + } + ], + "EXTERNAL": [ + { + "function_idx": 8, + "selector": "0x1842542b3bab52682bb18feb7c6c78031a0a07e830a3bcf81f8220de7c4568" + }, + { + "function_idx": 1, + "selector": "0xa092314e8f284a50fe93b67a2d32643bdca7cc62b6a1e605ab248a3c6387fa" + }, + { + "function_idx": 3, + "selector": "0xab59c863584c97d9a0ae0c9bdca8c533b9b70d3fb9b0f8e517c92bbcf31265" + }, + { + "function_idx": 9, + "selector": "0x1012487ce5275dc9b4891cbf1959e98db20b18a266120fe4326629120841712" + }, + { + "function_idx": 0, + "selector": "0x14fcc4bf4b86c2c673cbd06c131b92f81a3e8491c120e4ee66f56e38ca64ace" + }, + { + "function_idx": 5, + "selector": "0x1681ea857b7369b0435327168ab7f246038b67b12d3363f46091066840056a4" + }, + { + "function_idx": 7, + "selector": "0x24f92414ed32ff74c6adfdc660697d2811d33ec6f0ca99e9430ddb61abb9eb1" + }, + { + "function_idx": 6, + "selector": "0x3de6014cbaf7911a458ba80ab052bf21355ac5dbcfe877a763cfec3b9518ebe" + }, + { + "function_idx": 4, + "selector": "0x3e4197049aa0cc49170c700024e2daeae0a266bb500b4c4a916a397b64ac970" + }, + { + "function_idx": 2, + "selector": "0x3f5f3d5818c673bdb5ea1a7b01f70c69776d17a1cbaa491157a3f87c9f37213" + } + ], + "L1_HANDLER": [] + }, + "abi": "[{\"type\": \"impl\", \"name\": \"OracleImpl\", \"interface_name\": \"ekubo_oracle_extension::oracle::IOracle\"}, {\"type\": \"struct\", \"name\": \"ekubo::types::keys::PoolKey\", \"members\": [{\"name\": \"token0\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"token1\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"fee\", \"type\": \"core::integer::u128\"}, {\"name\": \"tick_spacing\", \"type\": \"core::integer::u128\"}, {\"name\": \"extension\", \"type\": \"core::starknet::contract_address::ContractAddress\"}]}, {\"type\": \"enum\", \"name\": \"core::bool\", \"variants\": [{\"name\": \"False\", \"type\": \"()\"}, {\"name\": \"True\", \"type\": \"()\"}]}, {\"type\": \"struct\", \"name\": \"ekubo::types::i129::i129\", \"members\": [{\"name\": \"mag\", \"type\": \"core::integer::u128\"}, {\"name\": \"sign\", \"type\": \"core::bool\"}]}, {\"type\": \"struct\", \"name\": \"ekubo::types::bounds::Bounds\", \"members\": [{\"name\": \"lower\", \"type\": \"ekubo::types::i129::i129\"}, {\"name\": \"upper\", \"type\": \"ekubo::types::i129::i129\"}]}, {\"type\": \"interface\", \"name\": \"ekubo_oracle_extension::oracle::IOracle\", \"items\": [{\"type\": \"function\", \"name\": \"get_seconds_per_liquidity_inside\", \"inputs\": [{\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"bounds\", \"type\": \"ekubo::types::bounds::Bounds\"}], \"outputs\": [{\"type\": \"core::felt252\"}], \"state_mutability\": \"view\"}, {\"type\": \"function\", \"name\": \"get_tick_cumulative\", \"inputs\": [{\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}], \"outputs\": [{\"type\": \"ekubo::types::i129::i129\"}], \"state_mutability\": \"view\"}]}, {\"type\": \"impl\", \"name\": \"OracleExtension\", \"interface_name\": \"ekubo::interfaces::core::IExtension\"}, {\"type\": \"struct\", \"name\": \"core::integer::u256\", \"members\": [{\"name\": \"low\", \"type\": \"core::integer::u128\"}, {\"name\": \"high\", \"type\": \"core::integer::u128\"}]}, {\"type\": \"struct\", \"name\": \"ekubo::interfaces::core::SwapParameters\", \"members\": [{\"name\": \"amount\", \"type\": \"ekubo::types::i129::i129\"}, {\"name\": \"is_token1\", \"type\": \"core::bool\"}, {\"name\": \"sqrt_ratio_limit\", \"type\": \"core::integer::u256\"}, {\"name\": \"skip_ahead\", \"type\": \"core::integer::u128\"}]}, {\"type\": \"struct\", \"name\": \"ekubo::types::delta::Delta\", \"members\": [{\"name\": \"amount0\", \"type\": \"ekubo::types::i129::i129\"}, {\"name\": \"amount1\", \"type\": \"ekubo::types::i129::i129\"}]}, {\"type\": \"struct\", \"name\": \"ekubo::interfaces::core::UpdatePositionParameters\", \"members\": [{\"name\": \"salt\", \"type\": \"core::felt252\"}, {\"name\": \"bounds\", \"type\": \"ekubo::types::bounds::Bounds\"}, {\"name\": \"liquidity_delta\", \"type\": \"ekubo::types::i129::i129\"}]}, {\"type\": \"interface\", \"name\": \"ekubo::interfaces::core::IExtension\", \"items\": [{\"type\": \"function\", \"name\": \"before_initialize_pool\", \"inputs\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"initial_tick\", \"type\": \"ekubo::types::i129::i129\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"after_initialize_pool\", \"inputs\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"initial_tick\", \"type\": \"ekubo::types::i129::i129\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"before_swap\", \"inputs\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"params\", \"type\": \"ekubo::interfaces::core::SwapParameters\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"after_swap\", \"inputs\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"params\", \"type\": \"ekubo::interfaces::core::SwapParameters\"}, {\"name\": \"delta\", \"type\": \"ekubo::types::delta::Delta\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"before_update_position\", \"inputs\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"params\", \"type\": \"ekubo::interfaces::core::UpdatePositionParameters\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"after_update_position\", \"inputs\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"params\", \"type\": \"ekubo::interfaces::core::UpdatePositionParameters\"}, {\"name\": \"delta\", \"type\": \"ekubo::types::delta::Delta\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"before_collect_fees\", \"inputs\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"salt\", \"type\": \"core::felt252\"}, {\"name\": \"bounds\", \"type\": \"ekubo::types::bounds::Bounds\"}], \"outputs\": [], \"state_mutability\": \"external\"}, {\"type\": \"function\", \"name\": \"after_collect_fees\", \"inputs\": [{\"name\": \"caller\", \"type\": \"core::starknet::contract_address::ContractAddress\"}, {\"name\": \"pool_key\", \"type\": \"ekubo::types::keys::PoolKey\"}, {\"name\": \"salt\", \"type\": \"core::felt252\"}, {\"name\": \"bounds\", \"type\": \"ekubo::types::bounds::Bounds\"}, {\"name\": \"delta\", \"type\": \"ekubo::types::delta::Delta\"}], \"outputs\": [], \"state_mutability\": \"external\"}]}, {\"type\": \"struct\", \"name\": \"ekubo::interfaces::core::ICoreDispatcher\", \"members\": [{\"name\": \"contract_address\", \"type\": \"core::starknet::contract_address::ContractAddress\"}]}, {\"type\": \"constructor\", \"name\": \"constructor\", \"inputs\": [{\"name\": \"core\", \"type\": \"ekubo::interfaces::core::ICoreDispatcher\"}]}, {\"type\": \"event\", \"name\": \"ekubo_oracle_extension::oracle::Oracle::Event\", \"kind\": \"enum\", \"variants\": []}]" +} \ No newline at end of file diff --git a/rpc/tests/contract/0x1efa8f84fd4dff9e2902ec88717cf0dafc8c188f80c3450615944a469428f7f.json b/rpc/tests/contract/0x1efa8f84fd4dff9e2902ec88717cf0dafc8c188f80c3450615944a469428f7f.json deleted file mode 100644 index c14dde88..00000000 --- a/rpc/tests/contract/0x1efa8f84fd4dff9e2902ec88717cf0dafc8c188f80c3450615944a469428f7f.json +++ /dev/null @@ -1,6020 +0,0 @@ -{ - "program": { - "compiler_version": "0.10.1", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "hints": { - "0": [ - { - "code": "memory[ap] = segments.add()", - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": { - "reference_ids": {}, - "ap_tracking": { - "offset": 0, - "group": 0 - } - } - } - ], - "3": [ - { - "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.'", - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": { - "reference_ids": { - "starkware.cairo.common.math.assert_not_zero.value": 0 - }, - "ap_tracking": { - "offset": 0, - "group": 1 - } - } - } - ], - "15": [ - { - "code": "syscall_handler.library_call(segments=segments, syscall_ptr=ids.syscall_ptr)", - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.library_call" - ], - "flow_tracking_data": { - "reference_ids": { - "starkware.starknet.common.syscalls.library_call.__temp0": 7, - "starkware.starknet.common.syscalls.library_call.calldata": 4, - "starkware.starknet.common.syscalls.library_call.calldata_size": 3, - "starkware.starknet.common.syscalls.library_call.class_hash": 1, - "starkware.starknet.common.syscalls.library_call.function_selector": 2, - "starkware.starknet.common.syscalls.library_call.syscall": 6, - "starkware.starknet.common.syscalls.library_call.syscall_ptr": 5 - }, - "ap_tracking": { - "offset": 1, - "group": 2 - } - } - } - ], - "27": [ - { - "code": "syscall_handler.library_call_l1_handler(segments=segments, syscall_ptr=ids.syscall_ptr)", - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.library_call_l1_handler" - ], - "flow_tracking_data": { - "reference_ids": { - "starkware.starknet.common.syscalls.library_call_l1_handler.__temp1": 16, - "starkware.starknet.common.syscalls.library_call_l1_handler.calldata": 13, - "starkware.starknet.common.syscalls.library_call_l1_handler.calldata_size": 12, - "starkware.starknet.common.syscalls.library_call_l1_handler.class_hash": 10, - "starkware.starknet.common.syscalls.library_call_l1_handler.function_selector": 11, - "starkware.starknet.common.syscalls.library_call_l1_handler.syscall": 15, - "starkware.starknet.common.syscalls.library_call_l1_handler.syscall_ptr": 14 - }, - "ap_tracking": { - "offset": 1, - "group": 3 - } - } - } - ], - "36": [ - { - "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": { - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.__temp2": 22, - "starkware.starknet.common.syscalls.storage_read.address": 19, - "starkware.starknet.common.syscalls.storage_read.syscall": 21, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 20 - }, - "ap_tracking": { - "offset": 1, - "group": 4 - } - } - } - ], - "45": [ - { - "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": { - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.__temp3": 28, - "starkware.starknet.common.syscalls.storage_write.address": 25, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 27, - "starkware.starknet.common.syscalls.storage_write.value": 26 - }, - "ap_tracking": { - "offset": 1, - "group": 5 - } - } - } - ], - "55": [ - { - "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": { - "reference_ids": { - "starkware.starknet.common.syscalls.emit_event.__temp4": 35, - "starkware.starknet.common.syscalls.emit_event.data": 33, - "starkware.starknet.common.syscalls.emit_event.data_len": 32, - "starkware.starknet.common.syscalls.emit_event.keys": 31, - "starkware.starknet.common.syscalls.emit_event.keys_len": 30, - "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 34 - }, - "ap_tracking": { - "offset": 1, - "group": 6 - } - } - } - ], - "181": [ - { - "code": "memory[ap] = segments.add()", - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": { - "reference_ids": { - "__wrappers__.constructor.__calldata_actual_size": 118, - "__wrappers__.constructor.__calldata_arg_calldata": 114, - "__wrappers__.constructor.__calldata_arg_calldata_len": 109, - "__wrappers__.constructor.__calldata_arg_implementation_hash": 105, - "__wrappers__.constructor.__calldata_arg_selector": 107, - "__wrappers__.constructor.__calldata_ptr": 117, - "__wrappers__.constructor.__temp10": 116, - "__wrappers__.constructor.__temp11": 119, - "__wrappers__.constructor.__temp7": 111, - "__wrappers__.constructor.__temp8": 112, - "__wrappers__.constructor.__temp9": 115, - "__wrappers__.constructor.pedersen_ptr": 121, - "__wrappers__.constructor.range_check_ptr": 122, - "__wrappers__.constructor.ret_value": 123, - "__wrappers__.constructor.syscall_ptr": 120 - }, - "ap_tracking": { - "offset": 0, - "group": 16 - } - } - } - ], - "241": [ - { - "code": "memory[ap] = segments.add()", - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.__l1_default__" - ], - "flow_tracking_data": { - "reference_ids": { - "__wrappers__.__l1_default__.pedersen_ptr": 163, - "__wrappers__.__l1_default__.range_check_ptr": 164, - "__wrappers__.__l1_default__.ret_value": 165, - "__wrappers__.__l1_default__.syscall_ptr": 162 - }, - "ap_tracking": { - "offset": 50, - "group": 20 - } - } - } - ] - }, - "main_scope": "__main__", - "identifiers": { - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.Proxy": { - "destination": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy", - "type": "alias" - }, - "__main__.__default__": { - "pc": 190, - "decorators": [ - "external", - "raw_input", - "raw_output" - ], - "type": "function" - }, - "__main__.__default__.Args": { - "size": 3, - "full_name": "__main__.__default__.Args", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "calldata_size": { - "offset": 1, - "cairo_type": "felt" - }, - "calldata": { - "offset": 2, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "__main__.__default__.ImplicitArgs": { - "size": 3, - "full_name": "__main__.__default__.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - }, - "pedersen_ptr": { - "offset": 1, - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*" - }, - "range_check_ptr": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "__main__.__default__.Return": { - "cairo_type": "(retdata_size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__main__.__default__.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "__main__.__default__.calldata": { - "cairo_type": "felt*", - "full_name": "__main__.__default__.calldata", - "references": [ - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - } - ], - "type": "reference" - }, - "__main__.__default__.calldata_size": { - "cairo_type": "felt", - "full_name": "__main__.__default__.calldata_size", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - } - ], - "type": "reference" - }, - "__main__.__default__.class_hash": { - "cairo_type": "felt", - "full_name": "__main__.__default__.class_hash", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 28, - "group": 17 - }, - "pc": 195 - } - ], - "type": "reference" - }, - "__main__.__default__.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.__default__.pedersen_ptr", - "references": [ - { - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 28, - "group": 17 - }, - "pc": 195 - } - ], - "type": "reference" - }, - "__main__.__default__.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.__default__.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 28, - "group": 17 - }, - "pc": 195 - } - ], - "type": "reference" - }, - "__main__.__default__.retdata": { - "cairo_type": "felt*", - "full_name": "__main__.__default__.retdata", - "references": [ - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 39, - "group": 17 - }, - "pc": 202 - } - ], - "type": "reference" - }, - "__main__.__default__.retdata_size": { - "cairo_type": "felt", - "full_name": "__main__.__default__.retdata_size", - "references": [ - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 39, - "group": 17 - }, - "pc": 202 - } - ], - "type": "reference" - }, - "__main__.__default__.selector": { - "cairo_type": "felt", - "full_name": "__main__.__default__.selector", - "references": [ - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - } - ], - "type": "reference" - }, - "__main__.__default__.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.__default__.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-8), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(ap + (-4), felt**)]", - "ap_tracking_data": { - "offset": 28, - "group": 17 - }, - "pc": 195 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 39, - "group": 17 - }, - "pc": 202 - } - ], - "type": "reference" - }, - "__main__.__l1_default__": { - "pc": 217, - "decorators": [ - "l1_handler", - "raw_input" - ], - "type": "function" - }, - "__main__.__l1_default__.Args": { - "size": 3, - "full_name": "__main__.__l1_default__.Args", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "calldata_size": { - "offset": 1, - "cairo_type": "felt" - }, - "calldata": { - "offset": 2, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "__main__.__l1_default__.ImplicitArgs": { - "size": 3, - "full_name": "__main__.__l1_default__.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - }, - "pedersen_ptr": { - "offset": 1, - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*" - }, - "range_check_ptr": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "__main__.__l1_default__.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.__l1_default__.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "__main__.__l1_default__.calldata": { - "cairo_type": "felt*", - "full_name": "__main__.__l1_default__.calldata", - "references": [ - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - } - ], - "type": "reference" - }, - "__main__.__l1_default__.calldata_size": { - "cairo_type": "felt", - "full_name": "__main__.__l1_default__.calldata_size", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - } - ], - "type": "reference" - }, - "__main__.__l1_default__.class_hash": { - "cairo_type": "felt", - "full_name": "__main__.__l1_default__.class_hash", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 28, - "group": 19 - }, - "pc": 222 - } - ], - "type": "reference" - }, - "__main__.__l1_default__.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.__l1_default__.pedersen_ptr", - "references": [ - { - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 28, - "group": 19 - }, - "pc": 222 - } - ], - "type": "reference" - }, - "__main__.__l1_default__.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.__l1_default__.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 28, - "group": 19 - }, - "pc": 222 - } - ], - "type": "reference" - }, - "__main__.__l1_default__.selector": { - "cairo_type": "felt", - "full_name": "__main__.__l1_default__.selector", - "references": [ - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - } - ], - "type": "reference" - }, - "__main__.__l1_default__.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.__l1_default__.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-8), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(ap + (-4), felt**)]", - "ap_tracking_data": { - "offset": 28, - "group": 19 - }, - "pc": 222 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 39, - "group": 19 - }, - "pc": 229 - } - ], - "type": "reference" - }, - "__main__.constructor": { - "pc": 136, - "decorators": [ - "constructor" - ], - "type": "function" - }, - "__main__.constructor.Args": { - "size": 4, - "full_name": "__main__.constructor.Args", - "members": { - "implementation_hash": { - "offset": 0, - "cairo_type": "felt" - }, - "selector": { - "offset": 1, - "cairo_type": "felt" - }, - "calldata_len": { - "offset": 2, - "cairo_type": "felt" - }, - "calldata": { - "offset": 3, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "__main__.constructor.ImplicitArgs": { - "size": 3, - "full_name": "__main__.constructor.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - }, - "pedersen_ptr": { - "offset": 1, - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*" - }, - "range_check_ptr": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "__main__.constructor.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.constructor.SIZEOF_LOCALS": { - "value": 2, - "type": "const" - }, - "__main__.constructor.calldata": { - "cairo_type": "felt*", - "full_name": "__main__.constructor.calldata", - "references": [ - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - } - ], - "type": "reference" - }, - "__main__.constructor.calldata_len": { - "cairo_type": "felt", - "full_name": "__main__.constructor.calldata_len", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - } - ], - "type": "reference" - }, - "__main__.constructor.implementation_hash": { - "cairo_type": "felt", - "full_name": "__main__.constructor.implementation_hash", - "references": [ - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - } - ], - "type": "reference" - }, - "__main__.constructor.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__main__.constructor.pedersen_ptr", - "references": [ - { - "value": "[cast(fp + (-8), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 59, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(fp, starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 145 - } - ], - "type": "reference" - }, - "__main__.constructor.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__main__.constructor.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-7), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 59, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(fp + 1, felt*)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 146 - } - ], - "type": "reference" - }, - "__main__.constructor.selector": { - "cairo_type": "felt", - "full_name": "__main__.constructor.selector", - "references": [ - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - } - ], - "type": "reference" - }, - "__main__.constructor.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__main__.constructor.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-9), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 59, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 70, - "group": 13 - }, - "pc": 155 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 72, - "group": 13 - }, - "pc": 157 - } - ], - "type": "reference" - }, - "__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__": { - "pc": 208, - "decorators": [ - "external", - "raw_input", - "raw_output" - ], - "type": "function" - }, - "__wrappers__.__default__.Args": { - "size": 0, - "full_name": "__wrappers__.__default__.Args", - "members": {}, - "type": "struct" - }, - "__wrappers__.__default__.ImplicitArgs": { - "size": 0, - "full_name": "__wrappers__.__default__.ImplicitArgs", - "members": {}, - "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": { - "value": 0, - "type": "const" - }, - "__wrappers__.__default__.__wrapped_func": { - "destination": "__main__.__default__", - "type": "alias" - }, - "__wrappers__.__default__.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.__default__.pedersen_ptr", - "references": [ - { - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 18 - }, - "pc": 208 - }, - { - "value": "[cast(ap + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - } - ], - "type": "reference" - }, - "__wrappers__.__default__.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.__default__.range_check_ptr", - "references": [ - { - "value": "[cast([fp + (-5)] + 2, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 18 - }, - "pc": 208 - }, - { - "value": "[cast(ap + (-3), felt*)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - } - ], - "type": "reference" - }, - "__wrappers__.__default__.ret_value": { - "cairo_type": "(retdata_size: felt, retdata: felt*)", - "full_name": "__wrappers__.__default__.ret_value", - "references": [ - { - "value": "[cast(ap + (-2), (retdata_size: felt, retdata: felt*)*)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - } - ], - "type": "reference" - }, - "__wrappers__.__default__.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.__default__.retdata", - "references": [ - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - } - ], - "type": "reference" - }, - "__wrappers__.__default__.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.__default__.retdata_size", - "references": [ - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - } - ], - "type": "reference" - }, - "__wrappers__.__default__.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.__default__.syscall_ptr", - "references": [ - { - "value": "[cast([fp + (-5)], felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 18 - }, - "pc": 208 - }, - { - "value": "[cast(ap + (-5), felt**)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - } - ], - "type": "reference" - }, - "__wrappers__.__default___encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.__l1_default__": { - "pc": 233, - "decorators": [ - "l1_handler", - "raw_input" - ], - "type": "function" - }, - "__wrappers__.__l1_default__.Args": { - "size": 0, - "full_name": "__wrappers__.__l1_default__.Args", - "members": {}, - "type": "struct" - }, - "__wrappers__.__l1_default__.ImplicitArgs": { - "size": 0, - "full_name": "__wrappers__.__l1_default__.ImplicitArgs", - "members": {}, - "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": { - "value": 0, - "type": "const" - }, - "__wrappers__.__l1_default__.__wrapped_func": { - "destination": "__main__.__l1_default__", - "type": "alias" - }, - "__wrappers__.__l1_default__.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.__l1_default__.pedersen_ptr", - "references": [ - { - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 20 - }, - "pc": 233 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 50, - "group": 20 - }, - "pc": 241 - } - ], - "type": "reference" - }, - "__wrappers__.__l1_default__.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.__l1_default__.range_check_ptr", - "references": [ - { - "value": "[cast([fp + (-5)] + 2, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 20 - }, - "pc": 233 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 50, - "group": 20 - }, - "pc": 241 - } - ], - "type": "reference" - }, - "__wrappers__.__l1_default__.ret_value": { - "cairo_type": "()", - "full_name": "__wrappers__.__l1_default__.ret_value", - "references": [ - { - "value": "[cast(ap + 0, ()*)]", - "ap_tracking_data": { - "offset": 50, - "group": 20 - }, - "pc": 241 - } - ], - "type": "reference" - }, - "__wrappers__.__l1_default__.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.__l1_default__.retdata", - "references": [ - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 51, - "group": 20 - }, - "pc": 243 - } - ], - "type": "reference" - }, - "__wrappers__.__l1_default__.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.__l1_default__.retdata_size", - "references": [ - { - "value": "cast(0, felt)", - "ap_tracking_data": { - "offset": 51, - "group": 20 - }, - "pc": 243 - } - ], - "type": "reference" - }, - "__wrappers__.__l1_default__.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.__l1_default__.syscall_ptr", - "references": [ - { - "value": "[cast([fp + (-5)], felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 20 - }, - "pc": 233 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 50, - "group": 20 - }, - "pc": 241 - } - ], - "type": "reference" - }, - "__wrappers__.__l1_default___encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.constructor": { - "pc": 161, - "decorators": [ - "constructor" - ], - "type": "function" - }, - "__wrappers__.constructor.Args": { - "size": 0, - "full_name": "__wrappers__.constructor.Args", - "members": {}, - "type": "struct" - }, - "__wrappers__.constructor.ImplicitArgs": { - "size": 0, - "full_name": "__wrappers__.constructor.ImplicitArgs", - "members": {}, - "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": { - "value": 0, - "type": "const" - }, - "__wrappers__.constructor.__calldata_actual_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__calldata_actual_size", - "references": [ - { - "value": "cast([ap + (-1)] - [fp + (-3)], felt)", - "ap_tracking_data": { - "offset": 5, - "group": 15 - }, - "pc": 168 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__calldata_arg_calldata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.constructor.__calldata_arg_calldata", - "references": [ - { - "value": "cast([fp + (-3)] + 3, felt*)", - "ap_tracking_data": { - "offset": 2, - "group": 15 - }, - "pc": 164 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__calldata_arg_calldata_len": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__calldata_arg_calldata_len", - "references": [ - { - "value": "[cast([fp + (-3)] + 2, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__calldata_arg_implementation_hash": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__calldata_arg_implementation_hash", - "references": [ - { - "value": "[cast([fp + (-3)], felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__calldata_arg_selector": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__calldata_arg_selector", - "references": [ - { - "value": "[cast([fp + (-3)] + 1, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.constructor.__calldata_ptr", - "references": [ - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "cast([fp + (-3)] + 1, felt*)", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "cast([fp + (-3)] + 2, felt*)", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "cast([fp + (-3)] + 3, felt*)", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 5, - "group": 15 - }, - "pc": 168 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__temp10": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__temp10", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 4, - "group": 15 - }, - "pc": 167 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__temp11": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__temp11", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 6, - "group": 15 - }, - "pc": 170 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__temp7": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__temp7", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 15 - }, - "pc": 162 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__temp8": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__temp8", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 2, - "group": 15 - }, - "pc": 163 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__temp9": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.__temp9", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 3, - "group": 15 - }, - "pc": 166 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.__wrapped_func": { - "destination": "__main__.constructor", - "type": "alias" - }, - "__wrappers__.constructor.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "__wrappers__.constructor.pedersen_ptr", - "references": [ - { - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 16 - }, - "pc": 181 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.range_check_ptr": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.range_check_ptr", - "references": [ - { - "value": "[cast([fp + (-5)] + 2, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "cast([[fp + (-5)] + 2] + 1, felt)", - "ap_tracking_data": { - "offset": 2, - "group": 15 - }, - "pc": 164 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 16 - }, - "pc": 181 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.ret_value": { - "cairo_type": "()", - "full_name": "__wrappers__.constructor.ret_value", - "references": [ - { - "value": "[cast(ap + 0, ()*)]", - "ap_tracking_data": { - "offset": 0, - "group": 16 - }, - "pc": 181 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.retdata": { - "cairo_type": "felt*", - "full_name": "__wrappers__.constructor.retdata", - "references": [ - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 1, - "group": 16 - }, - "pc": 183 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.retdata_size": { - "cairo_type": "felt", - "full_name": "__wrappers__.constructor.retdata_size", - "references": [ - { - "value": "cast(0, felt)", - "ap_tracking_data": { - "offset": 1, - "group": 16 - }, - "pc": 183 - } - ], - "type": "reference" - }, - "__wrappers__.constructor.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "__wrappers__.constructor.syscall_ptr", - "references": [ - { - "value": "[cast([fp + (-5)], felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 16 - }, - "pc": 181 - } - ], - "type": "reference" - }, - "__wrappers__.constructor_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged": { - "type": "namespace" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.ImplicitArgs": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.ImplicitArgs", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.SELECTOR": { - "value": 509549417648223859179470485411643110789099628436608877343164389163677637013, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.AdminChanged.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy": { - "type": "namespace" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.ImplicitArgs": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.ImplicitArgs", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash": { - "pc": 118, - "decorators": [], - "type": "function" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.Args": { - "size": 1, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.Args", - "members": { - "new_implementation": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.ImplicitArgs": { - "size": 3, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - }, - "pedersen_ptr": { - "offset": 1, - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*" - }, - "range_check_ptr": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.new_implementation": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.new_implementation", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 12 - }, - "pc": 118 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.pedersen_ptr", - "references": [ - { - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 12 - }, - "pc": 118 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 25, - "group": 12 - }, - "pc": 127 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.range_check_ptr": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 12 - }, - "pc": 118 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 25, - "group": 12 - }, - "pc": 127 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 50, - "group": 12 - }, - "pc": 132 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-6), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 12 - }, - "pc": 118 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 25, - "group": 12 - }, - "pc": 127 - }, - { - "value": "[cast(ap + (-2), felt**)]", - "ap_tracking_data": { - "offset": 50, - "group": 12 - }, - "pc": 132 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash": { - "pc": 112, - "decorators": [], - "type": "function" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.ImplicitArgs": { - "size": 3, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - }, - "pedersen_ptr": { - "offset": 1, - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*" - }, - "range_check_ptr": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.Return": { - "cairo_type": "(implementation: felt)", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.pedersen_ptr", - "references": [ - { - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 11 - }, - "pc": 112 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 23, - "group": 11 - }, - "pc": 117 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.range_check_ptr": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 11 - }, - "pc": 112 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 23, - "group": 11 - }, - "pc": 117 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy.get_implementation_hash.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 11 - }, - "pc": 112 - }, - { - "value": "[cast(ap + (-4), felt**)]", - "ap_tracking_data": { - "offset": 23, - "group": 11 - }, - "pc": 117 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin": { - "type": "namespace" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_admin.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash": { - "type": "namespace" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.ImplicitArgs": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.ImplicitArgs", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr": { - "pc": 82, - "decorators": [], - "type": "function" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.ImplicitArgs": { - "size": 2, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "offset": 0, - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*" - }, - "range_check_ptr": { - "offset": 1, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.pedersen_ptr", - "references": [ - { - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 8 - }, - "pc": 82 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.range_check_ptr": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 8 - }, - "pc": 82 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.res": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.addr.res", - "references": [ - { - "value": "cast(1783935019461685855687084032167085762428877981963606680389089912112530844880, felt)", - "ap_tracking_data": { - "offset": 0, - "group": 8 - }, - "pc": 82 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read": { - "pc": 87, - "decorators": [], - "type": "function" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.ImplicitArgs": { - "size": 3, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - }, - "pedersen_ptr": { - "offset": 1, - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*" - }, - "range_check_ptr": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.Return": { - "cairo_type": "(implementation: felt)", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.__storage_var_temp0": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.__storage_var_temp0", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 14, - "group": 9 - }, - "pc": 95 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 18, - "group": 9 - }, - "pc": 99 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.pedersen_ptr", - "references": [ - { - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 9 - }, - "pc": 87 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 7, - "group": 9 - }, - "pc": 91 - }, - { - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 16, - "group": 9 - }, - "pc": 97 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.range_check_ptr": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 9 - }, - "pc": 87 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 7, - "group": 9 - }, - "pc": 91 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 17, - "group": 9 - }, - "pc": 98 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.storage_addr": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.storage_addr", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 7, - "group": 9 - }, - "pc": 91 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.read.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 9 - }, - "pc": 87 - }, - { - "value": "[cast(ap + (-2), felt**)]", - "ap_tracking_data": { - "offset": 14, - "group": 9 - }, - "pc": 95 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 15, - "group": 9 - }, - "pc": 96 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write": { - "pc": 100, - "decorators": [], - "type": "function" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.Args": { - "size": 1, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.Args", - "members": { - "value": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.ImplicitArgs": { - "size": 3, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - }, - "pedersen_ptr": { - "offset": 1, - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*" - }, - "range_check_ptr": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.pedersen_ptr", - "references": [ - { - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 10 - }, - "pc": 100 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 7, - "group": 10 - }, - "pc": 104 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.range_check_ptr": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 10 - }, - "pc": 100 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 7, - "group": 10 - }, - "pc": 104 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.storage_addr": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.storage_addr", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 7, - "group": 10 - }, - "pc": 104 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-6), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 10 - }, - "pc": 100 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 14, - "group": 10 - }, - "pc": 109 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.value": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_implementation_hash.write.value", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 10 - }, - "pc": 100 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized": { - "type": "namespace" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy_initialized.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded": { - "type": "namespace" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.Args": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.Args", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.ImplicitArgs": { - "size": 0, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.ImplicitArgs", - "members": {}, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.SELECTOR": { - "value": 1291924484015741933195105472014600539495279993452337828418116470835452386035, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit": { - "pc": 58, - "decorators": [], - "type": "function" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.Args": { - "size": 1, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.Args", - "members": { - "implementation": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.ImplicitArgs": { - "size": 2, - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - }, - "range_check_ptr": { - "offset": 1, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.SIZEOF_LOCALS": { - "value": 2, - "type": "const" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__calldata_ptr": { - "cairo_type": "felt*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__calldata_ptr", - "references": [ - { - "value": "[cast(fp + 1, felt**)]", - "ap_tracking_data": { - "offset": 9, - "group": 7 - }, - "pc": 69 - }, - { - "value": "cast([fp + 1] + 1, felt*)", - "ap_tracking_data": { - "offset": 9, - "group": 7 - }, - "pc": 70 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__data_ptr": { - "cairo_type": "felt*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__data_ptr", - "references": [ - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 9, - "group": 7 - }, - "pc": 68 - }, - { - "value": "[cast(fp + 1, felt**)]", - "ap_tracking_data": { - "offset": 9, - "group": 7 - }, - "pc": 69 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__keys_ptr": { - "cairo_type": "felt*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__keys_ptr", - "references": [ - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 5, - "group": 7 - }, - "pc": 62 - }, - { - "value": "[cast(fp, felt**)]", - "ap_tracking_data": { - "offset": 5, - "group": 7 - }, - "pc": 63 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__temp5": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__temp5", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 6, - "group": 7 - }, - "pc": 65 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__temp6": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.__temp6", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 10, - "group": 7 - }, - "pc": 72 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.implementation": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.implementation", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 7 - }, - "pc": 58 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.range_check_ptr": { - "cairo_type": "felt", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.range_check_ptr", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 7 - }, - "pc": 58 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 7 - }, - "pc": 58 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 19, - "group": 7 - }, - "pc": 80 - } - ], - "type": "reference" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.Upgraded.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "cairo_contracts.src.openzeppelin.upgrades.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "starkware.cairo.common.alloc.alloc": { - "pc": 0, - "decorators": [], - "type": "function" - }, - "starkware.cairo.common.alloc.alloc.Args": { - "size": 0, - "full_name": "starkware.cairo.common.alloc.alloc.Args", - "members": {}, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.ImplicitArgs": { - "size": 0, - "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", - "members": {}, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.Return": { - "cairo_type": "(ptr: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "starkware.cairo.common.bool.FALSE": { - "value": 0, - "type": "const" - }, - "starkware.cairo.common.bool.TRUE": { - "value": 1, - "type": "const" - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "size": 5, - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "offset": 0, - "cairo_type": "felt" - }, - "y": { - "offset": 1, - "cairo_type": "felt" - }, - "x_and_y": { - "offset": 2, - "cairo_type": "felt" - }, - "x_xor_y": { - "offset": 3, - "cairo_type": "felt" - }, - "x_or_y": { - "offset": 4, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "size": 7, - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "p": { - "offset": 0, - "cairo_type": "starkware.cairo.common.ec_point.EcPoint" - }, - "q": { - "offset": 2, - "cairo_type": "starkware.cairo.common.ec_point.EcPoint" - }, - "m": { - "offset": 4, - "cairo_type": "felt" - }, - "r": { - "offset": 5, - "cairo_type": "starkware.cairo.common.ec_point.EcPoint" - } - }, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "size": 3, - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "x": { - "offset": 0, - "cairo_type": "felt" - }, - "y": { - "offset": 1, - "cairo_type": "felt" - }, - "result": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { - "size": 16, - "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", - "members": { - "input": { - "offset": 0, - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState" - }, - "output": { - "offset": 8, - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState" - } - }, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { - "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "size": 2, - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "pub_key": { - "offset": 0, - "cairo_type": "felt" - }, - "message": { - "offset": 1, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "size": 3, - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "offset": 0, - "cairo_type": "felt" - }, - "prev_value": { - "offset": 1, - "cairo_type": "felt" - }, - "new_value": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "size": 2, - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "offset": 0, - "cairo_type": "felt" - }, - "y": { - "offset": 1, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.keccak_state.KeccakBuiltinState": { - "size": 8, - "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "members": { - "s0": { - "offset": 0, - "cairo_type": "felt" - }, - "s1": { - "offset": 1, - "cairo_type": "felt" - }, - "s2": { - "offset": 2, - "cairo_type": "felt" - }, - "s3": { - "offset": 3, - "cairo_type": "felt" - }, - "s4": { - "offset": 4, - "cairo_type": "felt" - }, - "s5": { - "offset": 5, - "cairo_type": "felt" - }, - "s6": { - "offset": 6, - "cairo_type": "felt" - }, - "s7": { - "offset": 7, - "cairo_type": "felt" - } - }, - "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": { - "pc": 3, - "decorators": [], - "type": "function" - }, - "starkware.cairo.common.math.assert_not_zero.Args": { - "size": 1, - "full_name": "starkware.cairo.common.math.assert_not_zero.Args", - "members": { - "value": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": { - "size": 0, - "full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", - "members": {}, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_zero.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "starkware.cairo.common.math.assert_not_zero.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_not_zero.value", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 1 - }, - "pc": 3 - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "value": -106710729501573572985208420194530329073740042555888586719489, - "type": "const" - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "value": 256, - "type": "const" - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "value": 20853273475220472486191784820, - "type": "const" - }, - "starkware.starknet.common.syscalls.CallContract": { - "size": 7, - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest" - }, - "response": { - "offset": 5, - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "size": 5, - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "contract_address": { - "offset": 1, - "cairo_type": "felt" - }, - "function_selector": { - "offset": 2, - "cairo_type": "felt" - }, - "calldata_size": { - "offset": 3, - "cairo_type": "felt" - }, - "calldata": { - "offset": 4, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata_size": { - "offset": 0, - "cairo_type": "felt" - }, - "retdata": { - "offset": 1, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "value": 21167594061783206823196716140, - "type": "const" - }, - "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { - "value": 23274015802972845247556842986379118667122, - "type": "const" - }, - "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { - "value": 75202468540281, - "type": "const" - }, - "starkware.starknet.common.syscalls.Deploy": { - "size": 9, - "full_name": "starkware.starknet.common.syscalls.Deploy", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.DeployRequest" - }, - "response": { - "offset": 6, - "cairo_type": "starkware.starknet.common.syscalls.DeployResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployRequest": { - "size": 6, - "full_name": "starkware.starknet.common.syscalls.DeployRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "class_hash": { - "offset": 1, - "cairo_type": "felt" - }, - "contract_address_salt": { - "offset": 2, - "cairo_type": "felt" - }, - "constructor_calldata_size": { - "offset": 3, - "cairo_type": "felt" - }, - "constructor_calldata": { - "offset": 4, - "cairo_type": "felt*" - }, - "deploy_from_zero": { - "offset": 5, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployResponse": { - "size": 3, - "full_name": "starkware.starknet.common.syscalls.DeployResponse", - "members": { - "contract_address": { - "offset": 0, - "cairo_type": "felt" - }, - "constructor_retdata_size": { - "offset": 1, - "cairo_type": "felt" - }, - "constructor_retdata": { - "offset": 2, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { - "value": 1280709301550335749748, - "type": "const" - }, - "starkware.starknet.common.syscalls.EmitEvent": { - "size": 5, - "full_name": "starkware.starknet.common.syscalls.EmitEvent", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "keys_len": { - "offset": 1, - "cairo_type": "felt" - }, - "keys": { - "offset": 2, - "cairo_type": "felt*" - }, - "data_len": { - "offset": 3, - "cairo_type": "felt" - }, - "data": { - "offset": 4, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { - "value": 1448089106835523001438702345020786, - "type": "const" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { - "value": 24294903732626645868215235778792757751152, - "type": "const" - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "value": 94901967781393078444254803017658102643, - "type": "const" - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "value": 6219495360805491471215297013070624192820083, - "type": "const" - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "value": 1592190833581991703053805829594610833820054387, - "type": "const" - }, - "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { - "value": 1317029390204112103023, - "type": "const" - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "value": 1448089128652340074717162277007973, - "type": "const" - }, - "starkware.starknet.common.syscalls.GetBlockNumber": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest" - }, - "response": { - "offset": 1, - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberRequest": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberResponse": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "members": { - "block_number": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestamp": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest" - }, - "response": { - "offset": 1, - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "members": { - "block_timestamp": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest" - }, - "response": { - "offset": 1, - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest" - }, - "response": { - "offset": 1, - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest" - }, - "response": { - "offset": 1, - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfo": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.GetTxInfo", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest" - }, - "response": { - "offset": 1, - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoRequest": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoResponse": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "members": { - "tx_info": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.TxInfo*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "size": 3, - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest" - }, - "response": { - "offset": 1, - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature_len": { - "offset": 0, - "cairo_type": "felt" - }, - "signature": { - "offset": 1, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { - "value": 436233452754198157705746250789557519228244616562, - "type": "const" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { - "value": 92376026794327011772951660, - "type": "const" - }, - "starkware.starknet.common.syscalls.LibraryCall": { - "size": 7, - "full_name": "starkware.starknet.common.syscalls.LibraryCall", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest" - }, - "response": { - "offset": 5, - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LibraryCallRequest": { - "size": 5, - "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "class_hash": { - "offset": 1, - "cairo_type": "felt" - }, - "function_selector": { - "offset": 2, - "cairo_type": "felt" - }, - "calldata_size": { - "offset": 3, - "cairo_type": "felt" - }, - "calldata": { - "offset": 4, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "value": 433017908768303439907196859243777073, - "type": "const" - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "value": 100890693370601760042082660, - "type": "const" - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "value": 25828017502874050592466629733, - "type": "const" - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "size": 4, - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "to_address": { - "offset": 1, - "cairo_type": "felt" - }, - "payload_size": { - "offset": 2, - "cairo_type": "felt" - }, - "payload_ptr": { - "offset": 3, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "size": 3, - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "offset": 0, - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest" - }, - "response": { - "offset": 2, - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "address": { - "offset": 1, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "size": 3, - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "selector": { - "offset": 0, - "cairo_type": "felt" - }, - "address": { - "offset": 1, - "cairo_type": "felt" - }, - "value": { - "offset": 2, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.TxInfo": { - "size": 8, - "full_name": "starkware.starknet.common.syscalls.TxInfo", - "members": { - "version": { - "offset": 0, - "cairo_type": "felt" - }, - "account_contract_address": { - "offset": 1, - "cairo_type": "felt" - }, - "max_fee": { - "offset": 2, - "cairo_type": "felt" - }, - "signature_len": { - "offset": 3, - "cairo_type": "felt" - }, - "signature": { - "offset": 4, - "cairo_type": "felt*" - }, - "transaction_hash": { - "offset": 5, - "cairo_type": "felt" - }, - "chain_id": { - "offset": 6, - "cairo_type": "felt" - }, - "nonce": { - "offset": 7, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event": { - "pc": 48, - "decorators": [], - "type": "function" - }, - "starkware.starknet.common.syscalls.emit_event.Args": { - "size": 4, - "full_name": "starkware.starknet.common.syscalls.emit_event.Args", - "members": { - "keys_len": { - "offset": 0, - "cairo_type": "felt" - }, - "keys": { - "offset": 1, - "cairo_type": "felt*" - }, - "data_len": { - "offset": 2, - "cairo_type": "felt" - }, - "data": { - "offset": 3, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "starkware.starknet.common.syscalls.emit_event.__temp4": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.emit_event.__temp4", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 6 - }, - "pc": 50 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.emit_event.data": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.emit_event.data", - "references": [ - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.emit_event.data_len": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.emit_event.data_len", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.emit_event.keys": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.emit_event.keys", - "references": [ - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.emit_event.keys_len": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.emit_event.keys_len", - "references": [ - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-7), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - }, - { - "value": "cast([fp + (-7)] + 5, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 6 - }, - "pc": 55 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call": { - "pc": 8, - "decorators": [], - "type": "function" - }, - "starkware.starknet.common.syscalls.library_call.Args": { - "size": 4, - "full_name": "starkware.starknet.common.syscalls.library_call.Args", - "members": { - "class_hash": { - "offset": 0, - "cairo_type": "felt" - }, - "function_selector": { - "offset": 1, - "cairo_type": "felt" - }, - "calldata_size": { - "offset": 2, - "cairo_type": "felt" - }, - "calldata": { - "offset": 3, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.library_call.ImplicitArgs": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.library_call.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - } - }, - "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": { - "value": 0, - "type": "const" - }, - "starkware.starknet.common.syscalls.library_call.__temp0": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.library_call.__temp0", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 2 - }, - "pc": 10 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call.calldata": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.library_call.calldata", - "references": [ - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call.calldata_size": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.library_call.calldata_size", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call.class_hash": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.library_call.class_hash", - "references": [ - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call.function_selector": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.library_call.function_selector", - "references": [ - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call.response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "full_name": "starkware.starknet.common.syscalls.library_call.response", - "references": [ - { - "value": "[cast([fp + (-7)] + 5, starkware.starknet.common.syscalls.CallContractResponse*)]", - "ap_tracking_data": { - "offset": 1, - "group": 2 - }, - "pc": 15 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call.syscall": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCall", - "full_name": "starkware.starknet.common.syscalls.library_call.syscall", - "references": [ - { - "value": "[cast([fp + (-7)], starkware.starknet.common.syscalls.LibraryCall*)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.library_call.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-7), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - }, - { - "value": "cast([fp + (-7)] + 7, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 2 - }, - "pc": 15 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler": { - "pc": 20, - "decorators": [], - "type": "function" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.Args": { - "size": 4, - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.Args", - "members": { - "class_hash": { - "offset": 0, - "cairo_type": "felt" - }, - "function_selector": { - "offset": 1, - "cairo_type": "felt" - }, - "calldata_size": { - "offset": 2, - "cairo_type": "felt" - }, - "calldata": { - "offset": 3, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.ImplicitArgs": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - } - }, - "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": { - "value": 0, - "type": "const" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.__temp1": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.__temp1", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 3 - }, - "pc": 22 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.calldata": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.calldata", - "references": [ - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.calldata_size": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.calldata_size", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.class_hash": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.class_hash", - "references": [ - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.function_selector": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.function_selector", - "references": [ - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.response", - "references": [ - { - "value": "[cast([fp + (-7)] + 5, starkware.starknet.common.syscalls.CallContractResponse*)]", - "ap_tracking_data": { - "offset": 1, - "group": 3 - }, - "pc": 27 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.library_call_l1_handler.syscall": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCall", - "full_name": "starkware.starknet.common.syscalls.library_call_l1_handler.syscall", - "references": [ - { - "value": "[cast([fp + (-7)], starkware.starknet.common.syscalls.LibraryCall*)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - } - ], - "type": "reference" - }, - "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": [ - { - "value": "[cast(fp + (-7), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - }, - { - "value": "cast([fp + (-7)] + 7, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 3 - }, - "pc": 27 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read": { - "pc": 32, - "decorators": [], - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_read.Args": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.storage_read.Args", - "members": { - "address": { - "offset": 0, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "starkware.starknet.common.syscalls.storage_read.__temp2": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_read.__temp2", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 4 - }, - "pc": 34 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read.address": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_read.address", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 4 - }, - "pc": 32 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read.response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "full_name": "starkware.starknet.common.syscalls.storage_read.response", - "references": [ - { - "value": "[cast([fp + (-4)] + 2, starkware.starknet.common.syscalls.StorageReadResponse*)]", - "ap_tracking_data": { - "offset": 1, - "group": 4 - }, - "pc": 36 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read.syscall": { - "cairo_type": "starkware.starknet.common.syscalls.StorageRead", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall", - "references": [ - { - "value": "[cast([fp + (-4)], starkware.starknet.common.syscalls.StorageRead*)]", - "ap_tracking_data": { - "offset": 0, - "group": 4 - }, - "pc": 32 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-4), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 4 - }, - "pc": 32 - }, - { - "value": "cast([fp + (-4)] + 3, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 4 - }, - "pc": 36 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write": { - "pc": 40, - "decorators": [], - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_write.Args": { - "size": 2, - "full_name": "starkware.starknet.common.syscalls.storage_write.Args", - "members": { - "address": { - "offset": 0, - "cairo_type": "felt" - }, - "value": { - "offset": 1, - "cairo_type": "felt" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { - "size": 1, - "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", - "members": { - "syscall_ptr": { - "offset": 0, - "cairo_type": "felt*" - } - }, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { - "value": 0, - "type": "const" - }, - "starkware.starknet.common.syscalls.storage_write.__temp3": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_write.__temp3", - "references": [ - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 5 - }, - "pc": 42 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write.address": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_write.address", - "references": [ - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 5 - }, - "pc": 40 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", - "references": [ - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 5 - }, - "pc": 40 - }, - { - "value": "cast([fp + (-5)] + 3, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 5 - }, - "pc": 45 - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write.value": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.syscalls.storage_write.value", - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 5 - }, - "pc": 40 - } - ], - "type": "reference" - } - }, - "attributes": [ - { - "start_pc": 118, - "flow_tracking_data": { - "reference_ids": { - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.new_implementation": 78, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.pedersen_ptr": 80, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.range_check_ptr": 81, - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash.syscall_ptr": 79 - }, - "ap_tracking": { - "offset": 0, - "group": 12 - } - }, - "value": "Proxy: implementation hash cannot be zero", - "accessible_scopes": [ - "cairo_contracts.src.openzeppelin.upgrades.library", - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy", - "cairo_contracts.src.openzeppelin.upgrades.library.Proxy._set_implementation_hash" - ], - "name": "error_message", - "end_pc": 121 - } - ], - "reference_manager": { - "references": [ - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 1 - }, - "pc": 3 - }, - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - }, - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - }, - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - }, - { - "value": "[cast(fp + (-7), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - }, - { - "value": "[cast([fp + (-7)], starkware.starknet.common.syscalls.LibraryCall*)]", - "ap_tracking_data": { - "offset": 0, - "group": 2 - }, - "pc": 8 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 2 - }, - "pc": 10 - }, - { - "value": "[cast([fp + (-7)] + 5, starkware.starknet.common.syscalls.CallContractResponse*)]", - "ap_tracking_data": { - "offset": 1, - "group": 2 - }, - "pc": 15 - }, - { - "value": "cast([fp + (-7)] + 7, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 2 - }, - "pc": 15 - }, - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - }, - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - }, - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - }, - { - "value": "[cast(fp + (-7), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - }, - { - "value": "[cast([fp + (-7)], starkware.starknet.common.syscalls.LibraryCall*)]", - "ap_tracking_data": { - "offset": 0, - "group": 3 - }, - "pc": 20 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 3 - }, - "pc": 22 - }, - { - "value": "[cast([fp + (-7)] + 5, starkware.starknet.common.syscalls.CallContractResponse*)]", - "ap_tracking_data": { - "offset": 1, - "group": 3 - }, - "pc": 27 - }, - { - "value": "cast([fp + (-7)] + 7, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 3 - }, - "pc": 27 - }, - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 4 - }, - "pc": 32 - }, - { - "value": "[cast(fp + (-4), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 4 - }, - "pc": 32 - }, - { - "value": "[cast([fp + (-4)], starkware.starknet.common.syscalls.StorageRead*)]", - "ap_tracking_data": { - "offset": 0, - "group": 4 - }, - "pc": 32 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 4 - }, - "pc": 34 - }, - { - "value": "[cast([fp + (-4)] + 2, starkware.starknet.common.syscalls.StorageReadResponse*)]", - "ap_tracking_data": { - "offset": 1, - "group": 4 - }, - "pc": 36 - }, - { - "value": "cast([fp + (-4)] + 3, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 4 - }, - "pc": 36 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 5 - }, - "pc": 40 - }, - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 5 - }, - "pc": 40 - }, - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 5 - }, - "pc": 40 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 5 - }, - "pc": 42 - }, - { - "value": "cast([fp + (-5)] + 3, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 5 - }, - "pc": 45 - }, - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - }, - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - }, - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - }, - { - "value": "[cast(fp + (-7), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 6 - }, - "pc": 48 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 6 - }, - "pc": 50 - }, - { - "value": "cast([fp + (-7)] + 5, felt*)", - "ap_tracking_data": { - "offset": 1, - "group": 6 - }, - "pc": 55 - }, - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 7 - }, - "pc": 58 - }, - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 7 - }, - "pc": 58 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 7 - }, - "pc": 58 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 5, - "group": 7 - }, - "pc": 62 - }, - { - "value": "[cast(fp, felt**)]", - "ap_tracking_data": { - "offset": 5, - "group": 7 - }, - "pc": 63 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 6, - "group": 7 - }, - "pc": 65 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 9, - "group": 7 - }, - "pc": 68 - }, - { - "value": "[cast(fp + 1, felt**)]", - "ap_tracking_data": { - "offset": 9, - "group": 7 - }, - "pc": 69 - }, - { - "value": "[cast(fp + 1, felt**)]", - "ap_tracking_data": { - "offset": 9, - "group": 7 - }, - "pc": 69 - }, - { - "value": "cast([fp + 1] + 1, felt*)", - "ap_tracking_data": { - "offset": 9, - "group": 7 - }, - "pc": 70 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 10, - "group": 7 - }, - "pc": 72 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 19, - "group": 7 - }, - "pc": 80 - }, - { - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 8 - }, - "pc": 82 - }, - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 8 - }, - "pc": 82 - }, - { - "value": "cast(1783935019461685855687084032167085762428877981963606680389089912112530844880, felt)", - "ap_tracking_data": { - "offset": 0, - "group": 8 - }, - "pc": 82 - }, - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 9 - }, - "pc": 87 - }, - { - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 9 - }, - "pc": 87 - }, - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 9 - }, - "pc": 87 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 7, - "group": 9 - }, - "pc": 91 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 7, - "group": 9 - }, - "pc": 91 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 7, - "group": 9 - }, - "pc": 91 - }, - { - "value": "[cast(ap + (-2), felt**)]", - "ap_tracking_data": { - "offset": 14, - "group": 9 - }, - "pc": 95 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 14, - "group": 9 - }, - "pc": 95 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 15, - "group": 9 - }, - "pc": 96 - }, - { - "value": "[cast(ap + (-1), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 16, - "group": 9 - }, - "pc": 97 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 17, - "group": 9 - }, - "pc": 98 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 18, - "group": 9 - }, - "pc": 99 - }, - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 10 - }, - "pc": 100 - }, - { - "value": "[cast(fp + (-6), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 10 - }, - "pc": 100 - }, - { - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 10 - }, - "pc": 100 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 10 - }, - "pc": 100 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 7, - "group": 10 - }, - "pc": 104 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 7, - "group": 10 - }, - "pc": 104 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 7, - "group": 10 - }, - "pc": 104 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 14, - "group": 10 - }, - "pc": 109 - }, - { - "value": "[cast(fp + (-5), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 11 - }, - "pc": 112 - }, - { - "value": "[cast(fp + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 11 - }, - "pc": 112 - }, - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 11 - }, - "pc": 112 - }, - { - "value": "[cast(ap + (-4), felt**)]", - "ap_tracking_data": { - "offset": 23, - "group": 11 - }, - "pc": 117 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 23, - "group": 11 - }, - "pc": 117 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 23, - "group": 11 - }, - "pc": 117 - }, - { - "value": "[cast(fp + (-3), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 12 - }, - "pc": 118 - }, - { - "value": "[cast(fp + (-6), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 12 - }, - "pc": 118 - }, - { - "value": "[cast(fp + (-5), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 12 - }, - "pc": 118 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 12 - }, - "pc": 118 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 25, - "group": 12 - }, - "pc": 127 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 25, - "group": 12 - }, - "pc": 127 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 25, - "group": 12 - }, - "pc": 127 - }, - { - "value": "[cast(ap + (-2), felt**)]", - "ap_tracking_data": { - "offset": 50, - "group": 12 - }, - "pc": 132 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 50, - "group": 12 - }, - "pc": 132 - }, - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(fp + (-9), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(fp + (-8), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(fp + (-7), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 13 - }, - "pc": 136 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 144 - }, - { - "value": "[cast(fp, starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 145 - }, - { - "value": "[cast(fp + 1, felt*)]", - "ap_tracking_data": { - "offset": 61, - "group": 13 - }, - "pc": 146 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 72, - "group": 13 - }, - "pc": 157 - }, - { - "value": "[cast(ap - 0 + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 14 - }, - "pc": 157 - }, - { - "value": "[cast([fp + (-5)], felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast([fp + (-5)] + 2, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast([fp + (-3)], felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "cast([fp + (-3)] + 1, felt*)", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast([fp + (-3)] + 1, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "cast([fp + (-3)] + 2, felt*)", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast([fp + (-3)] + 2, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "cast([fp + (-3)] + 3, felt*)", - "ap_tracking_data": { - "offset": 0, - "group": 15 - }, - "pc": 161 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 1, - "group": 15 - }, - "pc": 162 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 2, - "group": 15 - }, - "pc": 163 - }, - { - "value": "cast([[fp + (-5)] + 2] + 1, felt)", - "ap_tracking_data": { - "offset": 2, - "group": 15 - }, - "pc": 164 - }, - { - "value": "cast([fp + (-3)] + 3, felt*)", - "ap_tracking_data": { - "offset": 2, - "group": 15 - }, - "pc": 164 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 3, - "group": 15 - }, - "pc": 166 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 4, - "group": 15 - }, - "pc": 167 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 5, - "group": 15 - }, - "pc": 168 - }, - { - "value": "cast([ap + (-1)] - [fp + (-3)], felt)", - "ap_tracking_data": { - "offset": 5, - "group": 15 - }, - "pc": 168 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 6, - "group": 15 - }, - "pc": 170 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 16 - }, - "pc": 181 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 16 - }, - "pc": 181 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 16 - }, - "pc": 181 - }, - { - "value": "[cast(ap + 0, ()*)]", - "ap_tracking_data": { - "offset": 0, - "group": 16 - }, - "pc": 181 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 1, - "group": 16 - }, - "pc": 183 - }, - { - "value": "cast(0, felt)", - "ap_tracking_data": { - "offset": 1, - "group": 16 - }, - "pc": 183 - }, - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(fp + (-8), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 17 - }, - "pc": 190 - }, - { - "value": "[cast(ap + (-4), felt**)]", - "ap_tracking_data": { - "offset": 28, - "group": 17 - }, - "pc": 195 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 28, - "group": 17 - }, - "pc": 195 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 28, - "group": 17 - }, - "pc": 195 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 28, - "group": 17 - }, - "pc": 195 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 39, - "group": 17 - }, - "pc": 202 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 39, - "group": 17 - }, - "pc": 202 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 39, - "group": 17 - }, - "pc": 202 - }, - { - "value": "[cast([fp + (-5)], felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 18 - }, - "pc": 208 - }, - { - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 18 - }, - "pc": 208 - }, - { - "value": "[cast([fp + (-5)] + 2, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 18 - }, - "pc": 208 - }, - { - "value": "[cast(ap + (-5), felt**)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - }, - { - "value": "[cast(ap + (-4), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - }, - { - "value": "[cast(ap + (-3), felt*)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - }, - { - "value": "[cast(ap + (-2), (retdata_size: felt, retdata: felt*)*)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 52, - "group": 18 - }, - "pc": 216 - }, - { - "value": "[cast(fp + (-5), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(fp + (-4), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(fp + (-3), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(fp + (-8), felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(fp + (-6), felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 19 - }, - "pc": 217 - }, - { - "value": "[cast(ap + (-4), felt**)]", - "ap_tracking_data": { - "offset": 28, - "group": 19 - }, - "pc": 222 - }, - { - "value": "[cast(ap + (-3), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 28, - "group": 19 - }, - "pc": 222 - }, - { - "value": "[cast(ap + (-2), felt*)]", - "ap_tracking_data": { - "offset": 28, - "group": 19 - }, - "pc": 222 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 28, - "group": 19 - }, - "pc": 222 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 39, - "group": 19 - }, - "pc": 229 - }, - { - "value": "[cast([fp + (-5)], felt**)]", - "ap_tracking_data": { - "offset": 0, - "group": 20 - }, - "pc": 233 - }, - { - "value": "[cast([fp + (-5)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 0, - "group": 20 - }, - "pc": 233 - }, - { - "value": "[cast([fp + (-5)] + 2, felt*)]", - "ap_tracking_data": { - "offset": 0, - "group": 20 - }, - "pc": 233 - }, - { - "value": "[cast(ap + (-3), felt**)]", - "ap_tracking_data": { - "offset": 50, - "group": 20 - }, - "pc": 241 - }, - { - "value": "[cast(ap + (-2), starkware.cairo.common.cairo_builtins.HashBuiltin**)]", - "ap_tracking_data": { - "offset": 50, - "group": 20 - }, - "pc": 241 - }, - { - "value": "[cast(ap + (-1), felt*)]", - "ap_tracking_data": { - "offset": 50, - "group": 20 - }, - "pc": 241 - }, - { - "value": "[cast(ap + 0, ()*)]", - "ap_tracking_data": { - "offset": 50, - "group": 20 - }, - "pc": 241 - }, - { - "value": "[cast(ap + (-1), felt**)]", - "ap_tracking_data": { - "offset": 51, - "group": 20 - }, - "pc": 243 - }, - { - "value": "cast(0, felt)", - "ap_tracking_data": { - "offset": 51, - "group": 20 - }, - "pc": 243 - } - ] - }, - "builtins": [ - "pedersen", - "range_check" - ], - "debug_info": null, - "data": [ - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x4", - "0x400780017fff7ffd", - "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", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc5", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0x2db340e6c609371026731f47050d3976552c89b4fbb012941663841c59d1af3", - "0x4002800080007fff", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbf", - "0x40137fff7fff8001", - "0x4003800080017ffd", - "0x4826800180018000", - "0x1", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x1", - "0x480a80007fff8000", - "0x4828800180007ffc", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3f1abe37754ee6ca6d8dfa1036089f78a07ebe8f3b1e336cdbf3274d25becd0", - "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", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe5", - "0x208b7fff7fff7ffe", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8d", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb9", - "0x48127ffe7fff8000", - "0x48127fe47fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", - "0x40137ffe7fff8000", - "0x40137fff7fff8001", - "0x20780017fff7ffb", - "0x4", - "0x10780017fff7fff", - "0x9", - "0x48127ffd7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6e", - "0x48127ffd7fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280027ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x3", - "0x480280027ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x482680017ffd8000", - "0x3", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd6", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb0", - "0x48127ffc7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff41", - "0x48127ffd7fff8000", - "0x48127ff17fff8000", - "0x48127ff17fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff95", - "0x48127ffc7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff32", - "0x48127ffd7fff8000", - "0x48127ff17fff8000", - "0x48127ff17fff8000", - "0x208b7fff7fff7ffe", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe" - ] - }, - "abi": [ - { - "data": [ - { - "name": "implementation", - "type": "felt" - } - ], - "keys": [], - "name": "Upgraded", - "type": "event" - }, - { - "data": [ - { - "name": "previousAdmin", - "type": "felt" - }, - { - "name": "newAdmin", - "type": "felt" - } - ], - "keys": [], - "name": "AdminChanged", - "type": "event" - }, - { - "inputs": [ - { - "name": "implementation_hash", - "type": "felt" - }, - { - "name": "selector", - "type": "felt" - }, - { - "name": "calldata_len", - "type": "felt" - }, - { - "name": "calldata", - "type": "felt*" - } - ], - "name": "constructor", - "outputs": [], - "type": "constructor" - }, - { - "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": "0xa1", - "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" - } - ], - "EXTERNAL": [ - { - "offset": "0xd0", - "selector": "0x0" - } - ], - "L1_HANDLER": [ - { - "offset": "0xe9", - "selector": "0x0" - } - ] - } - } \ No newline at end of file diff --git a/rpc/types_block_test.go b/rpc/types_block_test.go index 8a2fe48c..cac355d8 100644 --- a/rpc/types_block_test.go +++ b/rpc/types_block_test.go @@ -248,6 +248,7 @@ func TestBlockWithReceipts(t *testing.T) { for _, test := range testSet { result, err := testConfig.provider.BlockWithReceipts(context.Background(), test.BlockID) require.NoError(err, "Error in BlockWithReceipts") + switch resultType := result.(type) { case *BlockWithReceipts: block, ok := result.(*BlockWithReceipts) @@ -256,12 +257,6 @@ func TestBlockWithReceipts(t *testing.T) { require.NotEmpty(block.Transactions, "the number of transactions should not be 0") if test.ExpectedBlockWithReceipts != nil { - require.Equal(block.BlockHeader.BlockHash, test.ExpectedBlockWithReceipts.BlockHeader.BlockHash, "Error in BlockTxHash BlockHash") - require.Equal(block.BlockHeader.ParentHash, test.ExpectedBlockWithReceipts.BlockHeader.ParentHash, "Error in BlockTxHash ParentHash") - require.Equal(block.BlockHeader.Timestamp, test.ExpectedBlockWithReceipts.BlockHeader.Timestamp, "Error in BlockTxHash Timestamp") - require.Equal(block.BlockHeader.SequencerAddress, test.ExpectedBlockWithReceipts.BlockHeader.SequencerAddress, "Error in BlockTxHash SequencerAddress") - require.Equal(block.Status, test.ExpectedBlockWithReceipts.Status, "Error in BlockTxHash Status") - require.ElementsMatchf(block.Transactions, test.ExpectedBlockWithReceipts.Transactions, "Error in BlockTxHash Transactions") require.Exactly(block, test.ExpectedBlockWithReceipts) } case *PendingBlockWithReceipts: @@ -269,10 +264,6 @@ func TestBlockWithReceipts(t *testing.T) { require.True(ok, fmt.Sprintf("should return *PendingBlockWithReceipts, instead: %T\n", result)) if testEnv == "mock" { - require.Equal(pBlock.ParentHash, test.ExpectedPendingBlockWithReceipts.ParentHash, "Error in PendingBlockWithReceipts ParentHash") - require.Equal(pBlock.SequencerAddress, test.ExpectedPendingBlockWithReceipts.SequencerAddress, "Error in PendingBlockWithReceipts SequencerAddress") - require.Equal(pBlock.Timestamp, test.ExpectedPendingBlockWithReceipts.Timestamp, "Error in PendingBlockWithReceipts Timestamp") - require.Equal(pBlock.Transactions, test.ExpectedPendingBlockWithReceipts.Transactions, "Error in PendingBlockWithReceipts Transactions") require.Exactly(pBlock, test.ExpectedPendingBlockWithReceipts) } else { require.NotEmpty(pBlock.ParentHash, "Error in PendingBlockWithReceipts ParentHash") diff --git a/rpc/types_contract_test.go b/rpc/types_contract_test.go index 87bd79d4..a3e07b91 100644 --- a/rpc/types_contract_test.go +++ b/rpc/types_contract_test.go @@ -7,8 +7,8 @@ import ( ) const ( - validDeprecatedContractCompiledPath = "./tests/contract/0x1efa8f84fd4dff9e2902ec88717cf0dafc8c188f80c3450615944a469428f7f.json" - validContractCompiledPath = "./tests/contract/0x03a8Bad0A71696fC3eB663D0513Dc165Bb42cD4b662e633e3F87a49627CF3AEF.json" + validDeprecatedContractCompiledPath = "./tests/contract/0x01b661756bf7d16210fc611626e1af4569baa1781ffc964bd018f4585ae241c1.json" + validContractCompiledPath = "./tests/contract/0x03e9b96873987da76121f74a3df71e38c44527d8ce2ad115bcfda3cba0548cc3.json" invalidContractCompiledPath = "./tests/0xFakeContract.json" ) @@ -16,14 +16,15 @@ const ( // tests the successful unmarshalling of valid JSON into a DeprecatedContractClass // object. // -// It reads the content of a file, then unmarshals the content into a +// It reads the content of a file, then unmarshals the content into a // DeprecatedContractClass object using the json.Unmarshal function. If any error // occurs during the process, the test fails. // // Parameters: // - t: The testing.T object used for reporting test failures and logging. // Returns: -// none +// +// none func TestDeprecatedContractClass_UnmarshalValidJSON_Successful(t *testing.T) { content, err := os.ReadFile(validDeprecatedContractCompiledPath) if err != nil { @@ -45,7 +46,8 @@ func TestDeprecatedContractClass_UnmarshalValidJSON_Successful(t *testing.T) { // Parameters: // - t: The testing.T object used for reporting test failures and logging. // Returns: -// none +// +// none func TestContractClass_UnmarshalValidJSON_Successful(t *testing.T) { content, err := os.ReadFile(validContractCompiledPath) if err != nil { From 12a9e7966fa80367dc2effa434b87e205cb50c71 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Thu, 15 Aug 2024 01:27:55 -0300 Subject: [PATCH 14/28] Remove ComputeHashOnElementsFelt func --- account/account.go | 10 +++++----- contracts/contracts.go | 6 +++--- curve/curve.go | 11 ----------- curve/curve_test.go | 6 +++--- hash/hash.go | 2 +- 5 files changed, 12 insertions(+), 23 deletions(-) diff --git a/account/account.go b/account/account.go index 1a28da0f..47f41a31 100644 --- a/account/account.go +++ b/account/account.go @@ -181,7 +181,7 @@ func (account *Account) TransactionHashDeployAccount(tx rpc.DeployAccountType, c case rpc.DeployAccountTxn: calldata := []*felt.Felt{txn.ClassHash, txn.ContractAddressSalt} calldata = append(calldata, txn.ConstructorCalldata...) - calldataHash := curve.ComputeHashOnElementsFelt(calldata) + calldataHash := curve.PedersenArray(calldata...) versionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { @@ -261,7 +261,7 @@ func (account *Account) TransactionHashInvoke(tx rpc.InvokeTxnType) (*felt.Felt, return nil, ErrNotAllParametersSet } - calldataHash := curve.ComputeHashOnElementsFelt(txn.Calldata) + calldataHash := curve.PedersenArray(txn.Calldata...) txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { return nil, err @@ -282,7 +282,7 @@ func (account *Account) TransactionHashInvoke(tx rpc.InvokeTxnType) (*felt.Felt, return nil, ErrNotAllParametersSet } - calldataHash := curve.ComputeHashOnElementsFelt(txn.Calldata) + calldataHash := curve.PedersenArray(txn.Calldata...) txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { return nil, err @@ -387,7 +387,7 @@ func (account *Account) TransactionHashDeclare(tx rpc.DeclareTxnType) (*felt.Fel return nil, ErrNotAllParametersSet } - calldataHash := curve.ComputeHashOnElementsFelt([]*felt.Felt{txn.ClassHash}) + calldataHash := curve.PedersenArray(txn.ClassHash) txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { @@ -408,7 +408,7 @@ func (account *Account) TransactionHashDeclare(tx rpc.DeclareTxnType) (*felt.Fel return nil, ErrNotAllParametersSet } - calldataHash := curve.ComputeHashOnElementsFelt([]*felt.Felt{txn.ClassHash}) + calldataHash := curve.PedersenArray(txn.ClassHash) txnVersionFelt, err := new(felt.Felt).SetString(string(txn.Version)) if err != nil { diff --git a/contracts/contracts.go b/contracts/contracts.go index e8c719c2..3daa9458 100644 --- a/contracts/contracts.go +++ b/contracts/contracts.go @@ -61,11 +61,11 @@ func UnmarshalCasmClass(filePath string) (*CasmClass, error) { // Returns: // - *felt.Felt: the precomputed address as a *felt.Felt func PrecomputeAddress(deployerAddress *felt.Felt, salt *felt.Felt, classHash *felt.Felt, constructorCalldata []*felt.Felt) *felt.Felt { - return curve.ComputeHashOnElementsFelt([]*felt.Felt{ + return curve.PedersenArray( PREFIX_CONTRACT_ADDRESS, deployerAddress, salt, classHash, - curve.ComputeHashOnElementsFelt(constructorCalldata), - }) + curve.PedersenArray(constructorCalldata...), + ) } diff --git a/curve/curve.go b/curve/curve.go index a86ccee4..a2ce61aa 100644 --- a/curve/curve.go +++ b/curve/curve.go @@ -555,17 +555,6 @@ func ComputeHashOnElements(elems []*big.Int) (hash *big.Int) { return HashPedersenElements(elems) } -// ComputeHashOnElementsFelt computes the hash on elements of a Felt array. -// Does the same as ComputeHashOnElements, but receives and returns felt types. -// -// Parameters: -// - feltArr: A pointer to an array of Felt objects. -// Returns: -// - *felt.Felt: a pointer to a Felt object -func ComputeHashOnElementsFelt(feltArr []*felt.Felt) *felt.Felt { - return PedersenArray(feltArr...) -} - // Pedersen is a function that implements the Pedersen hash. // NOTE: This function just wraps the Juno implementation // (ref: https://github.com/NethermindEth/juno/blob/32fd743c774ec11a1bb2ce3dceecb57515f4873e/core/crypto/pedersen_hash.go#L20) diff --git a/curve/curve_test.go b/curve/curve_test.go index 5e5810ac..711c2475 100644 --- a/curve/curve_test.go +++ b/curve/curve_test.go @@ -290,7 +290,7 @@ func TestGeneral_MultAir(t *testing.T) { } } -// TestGeneral_ComputeHashOnElements is a test function that verifies the correctness of the ComputeHashOnElements and ComputeHashOnElementsFelt functions in the General package. +// TestGeneral_ComputeHashOnElements is a test function that verifies the correctness of the ComputeHashOnElements and PedersenArray functions in the General package. // // This function tests both functions by passing in different arrays of big.Int elements and comparing the computed hash with the expected hash. // It checks the behavior of the functions when an empty array is passed as input, as well as when an array with multiple elements is passed. @@ -302,7 +302,7 @@ func TestGeneral_MultAir(t *testing.T) { // none func TestGeneral_ComputeHashOnElements(t *testing.T) { hashEmptyArray := ComputeHashOnElements([]*big.Int{}) - hashEmptyArrayFelt := ComputeHashOnElementsFelt([]*felt.Felt{}) + hashEmptyArrayFelt := PedersenArray([]*felt.Felt{}...) expectedHashEmmptyArray := utils.HexToBN("0x49ee3eba8c1600700ee1b87eb599f16716b0b1022947733551fde4050ca6804") require.Equal(t, hashEmptyArray, expectedHashEmmptyArray, "Hash empty array wrong value.") @@ -315,7 +315,7 @@ func TestGeneral_ComputeHashOnElements(t *testing.T) { } hashFilledArray := ComputeHashOnElements(filledArray) - hashFilledArrayFelt := ComputeHashOnElementsFelt(utils.BigIntArrToFeltArr(filledArray)) + hashFilledArrayFelt := PedersenArray(utils.BigIntArrToFeltArr(filledArray)...) expectedHashFilledArray := utils.HexToBN("0x7b422405da6571242dfc245a43de3b0fe695e7021c148b918cd9cdb462cac59") require.Equal(t, hashFilledArray, expectedHashFilledArray, "Hash filled array wrong value.") diff --git a/hash/hash.go b/hash/hash.go index 9ce5e7b9..0301cb54 100644 --- a/hash/hash.go +++ b/hash/hash.go @@ -41,7 +41,7 @@ func CalculateTransactionHashCommon( chainId, } dataToHash = append(dataToHash, additionalData...) - return curve.ComputeHashOnElementsFelt(dataToHash) + return curve.PedersenArray(dataToHash...) } // ClassHash calculates the hash of a contract class. From 55c86dcb3290d75f99ae2b0a52c91b4ac354995a Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Fri, 16 Aug 2024 12:28:59 -0300 Subject: [PATCH 15/28] Fixes missing tx_hash field from TransactionByHash return --- mocks/mock_rpc_provider.go | 6 ++--- rpc/mock_test.go | 5 ++-- rpc/provider.go | 2 +- rpc/transaction.go | 8 +++--- rpc/transaction_test.go | 52 ++++++++++++++++++-------------------- 5 files changed, 35 insertions(+), 38 deletions(-) diff --git a/mocks/mock_rpc_provider.go b/mocks/mock_rpc_provider.go index f7b511c9..eedfd486 100644 --- a/mocks/mock_rpc_provider.go +++ b/mocks/mock_rpc_provider.go @@ -15,7 +15,7 @@ import ( felt "github.com/NethermindEth/juno/core/felt" rpc "github.com/NethermindEth/starknet.go/rpc" - gomock "github.com/golang/mock/gomock" + gomock "go.uber.org/mock/gomock" ) // MockRpcProvider is a mock of RpcProvider interface. @@ -447,10 +447,10 @@ func (mr *MockRpcProviderMockRecorder) TransactionByBlockIdAndIndex(ctx, blockID } // TransactionByHash mocks base method. -func (m *MockRpcProvider) TransactionByHash(ctx context.Context, hash *felt.Felt) (rpc.Transaction, error) { +func (m *MockRpcProvider) TransactionByHash(ctx context.Context, hash *felt.Felt) (*rpc.BlockTransaction, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "TransactionByHash", ctx, hash) - ret0, _ := ret[0].(rpc.Transaction) + ret0, _ := ret[0].(*rpc.BlockTransaction) ret1, _ := ret[1].(error) return ret0, ret1 } diff --git a/rpc/mock_test.go b/rpc/mock_test.go index 42dbbf5d..58f7c3fc 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -264,7 +264,8 @@ func mock_starknet_getTransactionByHash(result interface{}, method string, args return errWrongArgs } - var DeclareTnxV2Example = `{ + var BlockDeclareTxnV2Example = `{ + "transaction_hash": "0xd109474cd037bad60a87ba0ccf3023d5f2d1cd45220c62091d41a614d38eda", "type": "DECLARE", "sender_address": "0x5fd4befee268bf6880f955875cbed3ade8346b1f1e149cc87b317e62b6db569", "compiled_class_hash": "0x7130f75fc2f1400813d1e96ea7ebee334b568a87b645a62aade0eb2fa2cf252", @@ -278,7 +279,7 @@ func mock_starknet_getTransactionByHash(result interface{}, method string, args "class_hash": "0x79b7ec8fdf40a4ff6ed47123049dfe36b5c02db93aa77832682344775ef70c6" }` - if err := json.Unmarshal([]byte(DeclareTnxV2Example), r); err != nil { + if err := json.Unmarshal([]byte(BlockDeclareTxnV2Example), r); err != nil { return err } return nil diff --git a/rpc/provider.go b/rpc/provider.go index 2297147a..3f1bbf30 100644 --- a/rpc/provider.go +++ b/rpc/provider.go @@ -68,7 +68,7 @@ type RpcProvider interface { Syncing(ctx context.Context) (*SyncStatus, error) TraceBlockTransactions(ctx context.Context, blockID BlockID) ([]Trace, error) TransactionByBlockIdAndIndex(ctx context.Context, blockID BlockID, index uint64) (Transaction, error) - TransactionByHash(ctx context.Context, hash *felt.Felt) (Transaction, error) + TransactionByHash(ctx context.Context, hash *felt.Felt) (*BlockTransaction, error) TransactionReceipt(ctx context.Context, transactionHash *felt.Felt) (*TransactionReceiptWithBlockInfo, error) TraceTransaction(ctx context.Context, transactionHash *felt.Felt) (TxnTrace, error) } diff --git a/rpc/transaction.go b/rpc/transaction.go index a920d7ab..7cddd6e6 100644 --- a/rpc/transaction.go +++ b/rpc/transaction.go @@ -81,15 +81,15 @@ func adaptTransaction(t TXN) (Transaction, error) { // - ctx: The context.Context object for the request. // - hash: The hash of the transaction. // Returns: -// - Transaction: The retrieved Transaction +// - BlockTransaction: The retrieved Transaction // - error: An error if any -func (provider *Provider) TransactionByHash(ctx context.Context, hash *felt.Felt) (Transaction, error) { +func (provider *Provider) TransactionByHash(ctx context.Context, hash *felt.Felt) (*BlockTransaction, error) { // todo: update to return a custom Transaction type, then use adapt function - var tx TXN + var tx BlockTransaction if err := do(ctx, provider.c, "starknet_getTransactionByHash", &tx, hash); err != nil { return nil, tryUnwrapToRPCErr(err, ErrHashNotFound) } - return adaptTransaction(tx) + return &tx, nil } // TransactionByBlockIdAndIndex retrieves a transaction by its block ID and index. diff --git a/rpc/transaction_test.go b/rpc/transaction_test.go index 0e8a9e73..0695cc1d 100644 --- a/rpc/transaction_test.go +++ b/rpc/transaction_test.go @@ -22,55 +22,51 @@ func TestTransactionByHash(t *testing.T) { type testSetType struct { TxHash *felt.Felt - ExpectedTxn Transaction + ExpectedTxn BlockTransaction } - var DeclareTxnV2Example = DeclareTxnV2{ - Type: TransactionType_Declare, - Version: TransactionV2, - MaxFee: utils.TestHexToFelt(t, "0x4a0fbb2d7a43"), - ClassHash: utils.TestHexToFelt(t, "0x79b7ec8fdf40a4ff6ed47123049dfe36b5c02db93aa77832682344775ef70c6"), - CompiledClassHash: utils.TestHexToFelt(t, "0x7130f75fc2f1400813d1e96ea7ebee334b568a87b645a62aade0eb2fa2cf252"), - Nonce: utils.TestHexToFelt(t, "0x16e"), - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x5569787df42fece1184537b0d480900a403386355b9d6a59e7c7a7e758287f0"), - utils.TestHexToFelt(t, "0x2acaeea2e0817da33ed5dbeec295b0177819b5a5a50b0a669e6eecd88e42e92"), + var BlockDeclareTxnV2Example = BlockTransaction{ + BlockDeclareTxnV2{ + utils.TestHexToFelt(t, "0xd109474cd037bad60a87ba0ccf3023d5f2d1cd45220c62091d41a614d38eda"), + DeclareTxnV2{ + Type: TransactionType_Declare, + Version: TransactionV2, + MaxFee: utils.TestHexToFelt(t, "0x4a0fbb2d7a43"), + ClassHash: utils.TestHexToFelt(t, "0x79b7ec8fdf40a4ff6ed47123049dfe36b5c02db93aa77832682344775ef70c6"), + CompiledClassHash: utils.TestHexToFelt(t, "0x7130f75fc2f1400813d1e96ea7ebee334b568a87b645a62aade0eb2fa2cf252"), + Nonce: utils.TestHexToFelt(t, "0x16e"), + Signature: []*felt.Felt{ + utils.TestHexToFelt(t, "0x5569787df42fece1184537b0d480900a403386355b9d6a59e7c7a7e758287f0"), + utils.TestHexToFelt(t, "0x2acaeea2e0817da33ed5dbeec295b0177819b5a5a50b0a669e6eecd88e42e92"), + }, + SenderAddress: utils.TestHexToFelt(t, "0x5fd4befee268bf6880f955875cbed3ade8346b1f1e149cc87b317e62b6db569"), + }, }, - SenderAddress: utils.TestHexToFelt(t, "0x5fd4befee268bf6880f955875cbed3ade8346b1f1e149cc87b317e62b6db569"), } testSet := map[string][]testSetType{ "mock": { { TxHash: utils.TestHexToFelt(t, "0xd109474cd037bad60a87ba0ccf3023d5f2d1cd45220c62091d41a614d38eda"), - ExpectedTxn: DeclareTxnV2Example, + ExpectedTxn: BlockDeclareTxnV2Example, }, }, "testnet": { { TxHash: utils.TestHexToFelt(t, "0xd109474cd037bad60a87ba0ccf3023d5f2d1cd45220c62091d41a614d38eda"), - ExpectedTxn: DeclareTxnV2Example, + ExpectedTxn: BlockDeclareTxnV2Example, }, }, "mainnet": {}, }[testEnv] for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy tx, err := testConfig.provider.TransactionByHash(context.Background(), test.TxHash) - if err != nil { - t.Fatal(err) - } - if tx == nil { - t.Fatal("transaction should exist") - } + require.NoError(t, err) + require.NotNil(t, tx) - txCasted, ok := (tx).(DeclareTxnV2) - if !ok { - t.Fatalf("transaction should be DeclareTnxV2, instead %T", tx) - } - require.Equal(t, txCasted.Type, TransactionType_Declare) - require.Equal(t, txCasted, test.ExpectedTxn) + txCasted, ok := (tx.IBlockTransaction).(BlockDeclareTxnV2) + require.True(t, ok) + require.Equal(t, txCasted, test.ExpectedTxn.IBlockTransaction) } } From 146df3b72daacca298e34a1fe60225fb0fc81596 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Mon, 19 Aug 2024 10:46:43 -0300 Subject: [PATCH 16/28] Fixes missing tx_hash field from TestTransactionByBlockIdAndIndex return --- mocks/mock_rpc_provider.go | 4 +- rpc/mock_test.go | 2 +- rpc/provider.go | 2 +- rpc/transaction.go | 80 ++------------------------------------ rpc/transaction_test.go | 27 +++++-------- 5 files changed, 17 insertions(+), 98 deletions(-) diff --git a/mocks/mock_rpc_provider.go b/mocks/mock_rpc_provider.go index eedfd486..130e9c2b 100644 --- a/mocks/mock_rpc_provider.go +++ b/mocks/mock_rpc_provider.go @@ -432,10 +432,10 @@ func (mr *MockRpcProviderMockRecorder) TraceTransaction(ctx, transactionHash any } // TransactionByBlockIdAndIndex mocks base method. -func (m *MockRpcProvider) TransactionByBlockIdAndIndex(ctx context.Context, blockID rpc.BlockID, index uint64) (rpc.Transaction, error) { +func (m *MockRpcProvider) TransactionByBlockIdAndIndex(ctx context.Context, blockID rpc.BlockID, index uint64) (*rpc.BlockTransaction, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "TransactionByBlockIdAndIndex", ctx, blockID, index) - ret0, _ := ret[0].(rpc.Transaction) + ret0, _ := ret[0].(*rpc.BlockTransaction) ret1, _ := ret[1].(error) return ret0, ret1 } diff --git a/rpc/mock_test.go b/rpc/mock_test.go index 58f7c3fc..8a37ee56 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -197,7 +197,7 @@ func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, method st return errWrongArgs } - var InvokeTxnV3example InvokeTxnV3 + var InvokeTxnV3example BlockInvokeTxnV3 read, err := os.ReadFile("tests/transactions/sepoliaTx_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") if err != nil { return err diff --git a/rpc/provider.go b/rpc/provider.go index 3f1bbf30..537d3996 100644 --- a/rpc/provider.go +++ b/rpc/provider.go @@ -67,7 +67,7 @@ type RpcProvider interface { SpecVersion(ctx context.Context) (string, error) Syncing(ctx context.Context) (*SyncStatus, error) TraceBlockTransactions(ctx context.Context, blockID BlockID) ([]Trace, error) - TransactionByBlockIdAndIndex(ctx context.Context, blockID BlockID, index uint64) (Transaction, error) + TransactionByBlockIdAndIndex(ctx context.Context, blockID BlockID, index uint64) (*BlockTransaction, error) TransactionByHash(ctx context.Context, hash *felt.Felt) (*BlockTransaction, error) TransactionReceipt(ctx context.Context, transactionHash *felt.Felt) (*TransactionReceiptWithBlockInfo, error) TraceTransaction(ctx context.Context, transactionHash *felt.Felt) (TxnTrace, error) diff --git a/rpc/transaction.go b/rpc/transaction.go index 7cddd6e6..7d2743e4 100644 --- a/rpc/transaction.go +++ b/rpc/transaction.go @@ -2,79 +2,10 @@ package rpc import ( "context" - "encoding/json" - "fmt" "github.com/NethermindEth/juno/core/felt" ) -var ( - feltZero = new(felt.Felt).SetUint64(0) - feltOne = new(felt.Felt).SetUint64(1) - feltTwo = new(felt.Felt).SetUint64(2) - feltThree = new(felt.Felt).SetUint64(3) -) - -// adaptTransaction adapts a TXN to a Transaction and returns it, along with any error encountered. -// -// Parameters: -// - t: the TXN to be adapted to a Transaction -// Returns: -// - Transaction: a Transaction -// - error: an error if the adaptation failed. -func adaptTransaction(t TXN) (Transaction, error) { - txMarshalled, err := json.Marshal(t) - if err != nil { - return nil, Err(InternalError, err) - } - switch t.Type { - case TransactionType_Invoke: - switch { - case t.Version.Equal(feltZero): - var tx InvokeTxnV0 - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - case t.Version.Equal(feltOne): - var tx InvokeTxnV1 - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - case t.Version.Equal(feltThree): - var tx InvokeTxnV3 - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - } - case TransactionType_Declare: - switch { - case t.Version.Equal(feltZero): - var tx DeclareTxnV0 - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - case t.Version.Equal(feltOne): - var tx DeclareTxnV1 - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - case t.Version.Equal(feltTwo): - var tx DeclareTxnV2 - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - } - case TransactionType_Deploy: - var tx DeployTxn - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - case TransactionType_DeployAccount: - var tx DeployAccountTxn - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - case TransactionType_L1Handler: - var tx L1HandlerTxn - err := json.Unmarshal(txMarshalled, &tx) - return tx, err - } - return nil, Err(InternalError, fmt.Sprint("internal error with adaptTransaction() : unknown transaction type ", t.Type)) - -} - // TransactionByHash retrieves the details and status of a transaction by its hash. // // Parameters: @@ -84,7 +15,6 @@ func adaptTransaction(t TXN) (Transaction, error) { // - BlockTransaction: The retrieved Transaction // - error: An error if any func (provider *Provider) TransactionByHash(ctx context.Context, hash *felt.Felt) (*BlockTransaction, error) { - // todo: update to return a custom Transaction type, then use adapt function var tx BlockTransaction if err := do(ctx, provider.c, "starknet_getTransactionByHash", &tx, hash); err != nil { return nil, tryUnwrapToRPCErr(err, ErrHashNotFound) @@ -99,16 +29,14 @@ func (provider *Provider) TransactionByHash(ctx context.Context, hash *felt.Felt // - blockID: The ID of the block containing the transaction. // - index: The index of the transaction within the block. // Returns: -// - Transaction: The retrieved Transaction object +// - BlockTransaction: The retrieved Transaction object // - error: An error, if any -func (provider *Provider) TransactionByBlockIdAndIndex(ctx context.Context, blockID BlockID, index uint64) (Transaction, error) { - var tx TXN +func (provider *Provider) TransactionByBlockIdAndIndex(ctx context.Context, blockID BlockID, index uint64) (*BlockTransaction, error) { + var tx BlockTransaction if err := do(ctx, provider.c, "starknet_getTransactionByBlockIdAndIndex", &tx, blockID, index); err != nil { - return nil, tryUnwrapToRPCErr(err, ErrInvalidTxnIndex, ErrBlockNotFound) - } - return adaptTransaction(tx) + return &tx, nil } // TransactionReceipt fetches the transaction receipt for a given transaction hash. diff --git a/rpc/transaction_test.go b/rpc/transaction_test.go index 0695cc1d..a674738a 100644 --- a/rpc/transaction_test.go +++ b/rpc/transaction_test.go @@ -66,7 +66,7 @@ func TestTransactionByHash(t *testing.T) { txCasted, ok := (tx.IBlockTransaction).(BlockDeclareTxnV2) require.True(t, ok) - require.Equal(t, txCasted, test.ExpectedTxn.IBlockTransaction) + require.Equal(t, test.ExpectedTxn.IBlockTransaction, txCasted) } } @@ -90,10 +90,10 @@ func TestTransactionByBlockIdAndIndex(t *testing.T) { type testSetType struct { BlockID BlockID Index uint64 - ExpectedTxn Transaction + ExpectedTxn BlockTransaction } - var InvokeTxnV3example InvokeTxnV3 + var InvokeTxnV3example BlockTransaction read, err := os.ReadFile("tests/transactions/sepoliaTx_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") require.NoError(t, err) err = json.Unmarshal(read, &InvokeTxnV3example) @@ -117,22 +117,13 @@ func TestTransactionByBlockIdAndIndex(t *testing.T) { "mainnet": {}, }[testEnv] for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy + tx, err := testConfig.provider.TransactionByBlockIdAndIndex(context.Background(), test.BlockID, test.Index) - if err != nil { - t.Fatal(err) - } - if tx == nil { - t.Fatal("transaction should exist") - } - txCasted, ok := (tx).(InvokeTxnV3) - if !ok { - t.Fatalf("transaction should be InvokeTxnV3, instead %T", tx) - } - - require.Equal(t, txCasted.Type, TransactionType_Invoke) - require.Equal(t, txCasted, test.ExpectedTxn) + require.NoError(t, err) + require.NotNil(t, tx) + txCasted, ok := (tx.IBlockTransaction).(BlockInvokeTxnV3) + require.True(t, ok) + require.Equal(t, test.ExpectedTxn.IBlockTransaction, txCasted) } } From 533cc1a19f78bf84c49778b7d7d27103f026177c Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Mon, 19 Aug 2024 11:03:25 -0300 Subject: [PATCH 17/28] Fix account pkg and mock error --- account/account.go | 8 ++++---- account/account_test.go | 2 +- go.mod | 1 - go.sum | 25 ------------------------- 4 files changed, 5 insertions(+), 31 deletions(-) diff --git a/account/account.go b/account/account.go index 47f41a31..f39ef8df 100644 --- a/account/account.go +++ b/account/account.go @@ -829,8 +829,8 @@ func (account *Account) TraceTransaction(ctx context.Context, transactionHash *f // - blockID: The ID of the block. // - index: The index of the transaction in the block. // Returns: -// - rpc.Transaction: The transaction and an error, if any. -func (account *Account) TransactionByBlockIdAndIndex(ctx context.Context, blockID rpc.BlockID, index uint64) (rpc.Transaction, error) { +// - rpc.BlockTransaction: The transaction and an error, if any. +func (account *Account) TransactionByBlockIdAndIndex(ctx context.Context, blockID rpc.BlockID, index uint64) (*rpc.BlockTransaction, error) { return account.provider.TransactionByBlockIdAndIndex(ctx, blockID, index) } @@ -840,9 +840,9 @@ func (account *Account) TransactionByBlockIdAndIndex(ctx context.Context, blockI // - ctx: The context.Context // - hash: The *felt.Felt hash as parameters. // Returns: -// - rpc.Transaction +// - rpc.BlockTransaction // - error -func (account *Account) TransactionByHash(ctx context.Context, hash *felt.Felt) (rpc.Transaction, error) { +func (account *Account) TransactionByHash(ctx context.Context, hash *felt.Felt) (*rpc.BlockTransaction, error) { return account.provider.TransactionByHash(ctx, hash) } diff --git a/account/account_test.go b/account/account_test.go index 0e0a36df..fef1261f 100644 --- a/account/account_test.go +++ b/account/account_test.go @@ -18,9 +18,9 @@ import ( "github.com/NethermindEth/starknet.go/mocks" "github.com/NethermindEth/starknet.go/rpc" "github.com/NethermindEth/starknet.go/utils" - "github.com/golang/mock/gomock" "github.com/joho/godotenv" "github.com/stretchr/testify/require" + "go.uber.org/mock/gomock" ) var ( diff --git a/go.mod b/go.mod index c83419ca..390696b9 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,6 @@ go 1.21 require ( github.com/NethermindEth/juno v0.3.1 github.com/ethereum/go-ethereum v1.13.8 - github.com/golang/mock v1.6.0 github.com/joho/godotenv v1.4.0 github.com/nsf/jsondiff v0.0.0-20210926074059-1e845ec5d249 github.com/pkg/errors v0.9.1 diff --git a/go.sum b/go.sum index 6d2f3cfd..b2662a24 100644 --- a/go.sum +++ b/go.sum @@ -48,8 +48,6 @@ github.com/go-ole/go-ole v1.2.5 h1:t4MGB5xEDZvXI+0rMjjsfBsD7yAgp/s9ZDkL1JndXwY= github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb h1:PBC98N2aIaM3XXiurYmW7fx4GZkL8feAMVq7nEjURHk= @@ -106,7 +104,6 @@ github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+F github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= -github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= go.uber.org/atomic v1.10.0 h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ= go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU= @@ -115,45 +112,23 @@ go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI= go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ= go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60= go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.18.0 h1:mIYleuAkSbHh0tCv7RvjL3F6ZVbLjq4+R7zbOn3Kokg= golang.org/x/net v0.18.0/go.mod h1:/czyP5RqHAH4odGYxBJ1qz0+CE5WZ+2j1YgoEo8F2jQ= -golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.15.0 h1:zdAyfUGbYmuVokhzVmghFl2ZJh5QhcfebBgmVPFYA+8= golang.org/x/tools v0.15.0/go.mod h1:hpksKq4dtpQWS1uQ61JkdqWM3LscIS6Slf+VVkm+wQk= -golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw= google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= From 33379fad370d877bea1428f3b497d39ff7e5e167 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Wed, 21 Aug 2024 13:59:30 -0300 Subject: [PATCH 18/28] Fixes BlockWithTxHashes method --- rpc/block.go | 7 +- rpc/block_test.go | 94 +++++++------------ rpc/mock_test.go | 21 ++--- .../sepoliaBlockWithHashes64159.json | 42 +++++++++ 4 files changed, 87 insertions(+), 77 deletions(-) create mode 100644 rpc/tests/blockWithHashes/sepoliaBlockWithHashes64159.json diff --git a/rpc/block.go b/rpc/block.go index ca40aab7..d0b51f89 100644 --- a/rpc/block.go +++ b/rpc/block.go @@ -98,7 +98,12 @@ func (provider *Provider) BlockWithTxHashes(ctx context.Context, blockID BlockID PendingBlockHeader{ ParentHash: result.ParentHash, Timestamp: result.Timestamp, - SequencerAddress: result.SequencerAddress}, + SequencerAddress: result.SequencerAddress, + L1GasPrice: result.L1GasPrice, + StarknetVersion: result.StarknetVersion, + L1DataGasPrice: result.L1DataGasPrice, + L1DAMode: result.L1DAMode, + }, result.Transactions, }, nil } diff --git a/rpc/block_test.go b/rpc/block_test.go index ea098424..48c27d11 100644 --- a/rpc/block_test.go +++ b/rpc/block_test.go @@ -2,7 +2,9 @@ package rpc import ( "context" + "encoding/json" "fmt" + "os" "strings" "testing" @@ -136,46 +138,16 @@ func TestBlockWithTxHashes(t *testing.T) { ExpectedPendingBlockWithTxHashes *PendingBlockTxHashes } - var blockSepolia64159 = BlockTxHashes{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964"), - ParentHash: utils.TestHexToFelt(t, "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 64159, - NewRoot: utils.TestHexToFelt(t, "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0"), - Timestamp: 1714901729, - }, - Status: "ACCEPTED_ON_L1", - Transactions: utils.TestHexArrToFelt(t, []string{ - "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", - "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", - "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", - "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", - "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", - "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", - "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", - "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", - "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", - "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", - "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", - "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", - "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", - "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", - "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", - "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", - "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", - "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", - "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", - "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", - "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b", - }), - } + var blockSepolia64159 BlockTxHashes + block, err := os.ReadFile("tests/blockWithHashes/sepoliaBlockWithHashes64159.json") + require.NoError(t, err) + require.NoError(t, json.Unmarshal(block, &blockSepolia64159)) txHashes := utils.TestHexArrToFelt(t, []string{ "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", }) - blockHash := utils.TestHexToFelt(t, "0xbeef") + fakeFelt := utils.TestHexToFelt(t, "0xbeef") testSet := map[string][]testSetType{ "mock": { @@ -184,20 +156,20 @@ func TestBlockWithTxHashes(t *testing.T) { ExpectedErr: nil, ExpectedPendingBlockWithTxHashes: &PendingBlockTxHashes{ PendingBlockHeader{ - ParentHash: &felt.Zero, + ParentHash: fakeFelt, Timestamp: 123, - SequencerAddress: &felt.Zero}, + SequencerAddress: fakeFelt}, txHashes, }, }, { - BlockID: BlockID{Hash: blockHash}, + BlockID: BlockID{Hash: fakeFelt}, ExpectedBlockWithTxHashes: &BlockTxHashes{ BlockHeader: BlockHeader{ - BlockHash: blockHash, - ParentHash: &felt.Zero, + BlockHash: fakeFelt, + ParentHash: fakeFelt, Timestamp: 124, - SequencerAddress: &felt.Zero}, + SequencerAddress: fakeFelt}, Status: BlockStatus_AcceptedOnL1, Transactions: txHashes, }, @@ -208,6 +180,10 @@ func TestBlockWithTxHashes(t *testing.T) { BlockID: WithBlockTag("latest"), ExpectedErr: nil, }, + { + BlockID: WithBlockTag("pending"), + ExpectedErr: nil, + }, { BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964")), ExpectedErr: nil, @@ -223,42 +199,38 @@ func TestBlockWithTxHashes(t *testing.T) { }[testEnv] for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy result, err := testConfig.provider.BlockWithTxHashes(context.Background(), test.BlockID) require.Equal(t, test.ExpectedErr, err, "Error in BlockWithTxHashes") switch resultType := result.(type) { case *BlockTxHashes: block, ok := result.(*BlockTxHashes) - require.True(t, ok, fmt.Sprintf("should return *BlockTxHashes, instead: %T\n", result)) + require.Truef(t, ok, "should return *BlockTxHashes, instead: %T\n", result) if test.ExpectedErr != nil { continue } - require.True(t, strings.HasPrefix(block.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", block.BlockHash) + require.Truef(t, strings.HasPrefix(block.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", block.BlockHash) require.NotEmpty(t, block.Transactions, "the number of transactions should not be 0") if test.ExpectedBlockWithTxHashes != nil { - if (*test.ExpectedBlockWithTxHashes).BlockHash == &felt.Zero { - continue - } - - require.Equal(t, block.BlockHeader.BlockHash, test.ExpectedBlockWithTxHashes.BlockHeader.BlockHash, "Error in BlockTxHash BlockHash") - require.Equal(t, block.BlockHeader.ParentHash, test.ExpectedBlockWithTxHashes.BlockHeader.ParentHash, "Error in BlockTxHash ParentHash") - require.Equal(t, block.BlockHeader.Timestamp, test.ExpectedBlockWithTxHashes.BlockHeader.Timestamp, "Error in BlockTxHash Timestamp") - require.Equal(t, block.BlockHeader.SequencerAddress, test.ExpectedBlockWithTxHashes.BlockHeader.SequencerAddress, "Error in BlockTxHash SequencerAddress") - require.Equal(t, block.Status, test.ExpectedBlockWithTxHashes.Status, "Error in BlockTxHash Status") - require.Equal(t, block.Transactions, test.ExpectedBlockWithTxHashes.Transactions, "Error in BlockTxHash Transactions") + require.Exactly(t, test.ExpectedBlockWithTxHashes, block) } case *PendingBlockTxHashes: pBlock, ok := result.(*PendingBlockTxHashes) - require.True(t, ok, fmt.Sprintf("should return *PendingBlockTxHashes, instead: %T\n", result)) - - require.Equal(t, pBlock.ParentHash, test.ExpectedPendingBlockWithTxHashes.ParentHash, "Error in PendingBlockTxHashes ParentHash") - require.Equal(t, pBlock.SequencerAddress, test.ExpectedPendingBlockWithTxHashes.SequencerAddress, "Error in PendingBlockTxHashes SequencerAddress") - require.Equal(t, pBlock.Timestamp, test.ExpectedPendingBlockWithTxHashes.Timestamp, "Error in PendingBlockTxHashes Timestamp") - require.Equal(t, pBlock.Transactions, test.ExpectedPendingBlockWithTxHashes.Transactions, "Error in PendingBlockTxHashes Transactions") + require.Truef(t, ok, "should return *PendingBlockTxHashes, instead: %T\n", result) + + if test.ExpectedPendingBlockWithTxHashes == nil { + require.NotZero(t, pBlock.ParentHash) + require.NotZero(t, pBlock.Timestamp) + require.NotZero(t, pBlock.SequencerAddress) + require.NotZero(t, pBlock.L1GasPrice) + require.NotZero(t, pBlock.StarknetVersion) + require.NotZero(t, pBlock.L1DataGasPrice) + require.NotZero(t, pBlock.L1DAMode) + } else { + require.Exactly(t, test.ExpectedPendingBlockWithTxHashes, pBlock) + } default: t.Fatalf("unexpected block type, found: %T\n", resultType) } diff --git a/rpc/mock_test.go b/rpc/mock_test.go index 8a37ee56..3f6921c3 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -995,14 +995,15 @@ func mock_starknet_getBlockWithTxHashes(result interface{}, method string, args if err != nil { return err } + fakeFelt, err := utils.HexToFelt("0xbeef") if blockId.Tag == "pending" { pBlock, err := json.Marshal( PendingBlockTxHashes{ PendingBlockHeader{ - ParentHash: &felt.Zero, + ParentHash: fakeFelt, Timestamp: 123, - SequencerAddress: &felt.Zero}, + SequencerAddress: fakeFelt}, txHashes, }) if err != nil { @@ -1013,26 +1014,16 @@ func mock_starknet_getBlockWithTxHashes(result interface{}, method string, args return err } } else { - blockHash, err := utils.HexToFelt("0xbeef") if err != nil { return err } block, err := json.Marshal( BlockTxHashes{ BlockHeader: BlockHeader{ - BlockHash: blockHash, - ParentHash: &felt.Zero, + BlockHash: fakeFelt, + ParentHash: fakeFelt, Timestamp: 124, - SequencerAddress: &felt.Zero, - L1DAMode: L1DAModeBlob, - L1GasPrice: ResourcePrice{ - PriceInWei: new(felt.Felt).SetUint64(1), - PriceInFRI: new(felt.Felt).SetUint64(1), - }, - L1DataGasPrice: ResourcePrice{ - PriceInWei: new(felt.Felt).SetUint64(1), - PriceInFRI: new(felt.Felt).SetUint64(1), - }, + SequencerAddress: fakeFelt, }, Status: BlockStatus_AcceptedOnL1, Transactions: txHashes, diff --git a/rpc/tests/blockWithHashes/sepoliaBlockWithHashes64159.json b/rpc/tests/blockWithHashes/sepoliaBlockWithHashes64159.json new file mode 100644 index 00000000..70c9e9c2 --- /dev/null +++ b/rpc/tests/blockWithHashes/sepoliaBlockWithHashes64159.json @@ -0,0 +1,42 @@ +{ + "status": "ACCEPTED_ON_L1", + "block_hash": "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964", + "parent_hash": "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5", + "block_number": 64159, + "new_root": "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0", + "timestamp": 1714901729, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0xdf0413d3c777", + "price_in_wei": "0x185f2d3eb5" + }, + "l1_data_gas_price": { + "price_in_fri": "0xa41c1219f8849", + "price_in_wei": "0x11ef315a9ab" + }, + "l1_da_mode": "BLOB", + "starknet_version": "0.13.1.1", + "transactions": [ + "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", + "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", + "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", + "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", + "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", + "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", + "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", + "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", + "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", + "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", + "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", + "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", + "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", + "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", + "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", + "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", + "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", + "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", + "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", + "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", + "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b" + ] +} \ No newline at end of file From 6c95f9921a7052f9c87b2270f3e18631b7791ad0 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Fri, 23 Aug 2024 00:44:27 -0300 Subject: [PATCH 19/28] Fixes BlockWithTxs method and makes some code improvements --- rpc/block.go | 7 +- rpc/block_test.go | 622 +-- rpc/mock_test.go | 164 +- rpc/provider_test.go | 50 +- rpc/tests/block/sepoliaBlockTxs122476.json | 213 + rpc/tests/block/sepoliaBlockTxs64159.json | 4628 ------------------ rpc/tests/block/sepoliaBlockTxs65083.json | 5108 ++++++++++++++++++++ rpc/types_block_test.go | 2 +- utils/Test.go | 3 + 9 files changed, 5582 insertions(+), 5215 deletions(-) create mode 100644 rpc/tests/block/sepoliaBlockTxs122476.json delete mode 100644 rpc/tests/block/sepoliaBlockTxs64159.json create mode 100644 rpc/tests/block/sepoliaBlockTxs65083.json diff --git a/rpc/block.go b/rpc/block.go index d0b51f89..fe659504 100644 --- a/rpc/block.go +++ b/rpc/block.go @@ -166,7 +166,12 @@ func (provider *Provider) BlockWithTxs(ctx context.Context, blockID BlockID) (in PendingBlockHeader{ ParentHash: result.ParentHash, Timestamp: result.Timestamp, - SequencerAddress: result.SequencerAddress}, + SequencerAddress: result.SequencerAddress, + L1GasPrice: result.L1GasPrice, + StarknetVersion: result.StarknetVersion, + L1DataGasPrice: result.L1DataGasPrice, + L1DAMode: result.L1DAMode, + }, result.Transactions, }, nil } diff --git a/rpc/block_test.go b/rpc/block_test.go index 48c27d11..4e677fc8 100644 --- a/rpc/block_test.go +++ b/rpc/block_test.go @@ -8,10 +8,7 @@ import ( "strings" "testing" - "github.com/NethermindEth/juno/core/felt" "github.com/NethermindEth/starknet.go/utils" - "github.com/google/go-cmp/cmp" - "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -221,13 +218,7 @@ func TestBlockWithTxHashes(t *testing.T) { require.Truef(t, ok, "should return *PendingBlockTxHashes, instead: %T\n", result) if test.ExpectedPendingBlockWithTxHashes == nil { - require.NotZero(t, pBlock.ParentHash) - require.NotZero(t, pBlock.Timestamp) - require.NotZero(t, pBlock.SequencerAddress) - require.NotZero(t, pBlock.L1GasPrice) - require.NotZero(t, pBlock.StarknetVersion) - require.NotZero(t, pBlock.L1DataGasPrice) - require.NotZero(t, pBlock.L1DAMode) + validatePendingBlockHeader(t, &pBlock.PendingBlockHeader) } else { require.Exactly(t, test.ExpectedPendingBlockWithTxHashes, pBlock) } @@ -237,11 +228,11 @@ func TestBlockWithTxHashes(t *testing.T) { } } -// TestBlockWithTxsAndInvokeTXNV0 tests the BlockWithTxsAndInvokeTXNV0 function. +// TestBlockWithTxs tests the BlockWithTxs function. // -// The function tests the BlockWithTxsAndInvokeTXNV0 function by setting up a test configuration and a test set type. -// It then initializes a fullBlockSepolia30436 variable with a Block struct and invokes the BlockWithTxs function with different test scenarios. -// The function compares the expected error with the actual error and checks if the BlockWithTxs function returns the correct block data. +// The function tests the BlockWithTxs function by setting up a test configuration and a test set type. +// It then initializes Block type variables and invokes the BlockWithTxs function with different test scenarios. +// The function checks if the BlockWithTxs function returns the correct block data. // It also verifies the block hash, the number of transactions in the block, and the details of a specific transaction. // // Parameters: @@ -249,521 +240,168 @@ func TestBlockWithTxHashes(t *testing.T) { // Returns: // // none -func TestBlockWithTxsAndInvokeTXNV0(t *testing.T) { +func TestBlockWithTxs(t *testing.T) { testConfig := beforeEach(t) + require := require.New(t) type testSetType struct { - BlockID BlockID - ExpectedError error - LookupTxnPositionInOriginal int - LookupTxnPositionInExpected int - want *Block + BlockID BlockID + ExpectedBlock *Block + ExpectedPendingBlock *PendingBlock + InvokeV0Index int //TODO: implement mainnet testcases as Sepolia doesn't contains V0 transactions + InvokeV1Index int + InvokeV3Index int + DeclareV0Index int //TODO: implement mainnet testcases as Sepolia doesn't contains V0 transactions + DeclareV1Index int + DeclareV2Index int + DeclareV3Index int //TODO: implement testcase + DeployAccountV1Index int + DeployAccountV3Index int //TODO: implement testcase + L1HandlerV0Index int } - testSet := map[string][]testSetType{ - "mock": {}, - "testnet": {}, - "mainnet": {}, - }[testEnv] - - for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - blockWithTxsInterface, err := testConfig.provider.BlockWithTxs(context.Background(), test.BlockID) - require.Equal(t, test.ExpectedError, err, "Error in BlockWithTxHashes doesn't match the expected error") - - if test.ExpectedError != nil && blockWithTxsInterface == nil { - continue - } - blockWithTxs, ok := blockWithTxsInterface.(*Block) - require.True(t, ok, fmt.Sprintf("expecting *rpv02.Block, instead %T", blockWithTxsInterface)) - - _, err = spy.Compare(blockWithTxs, false) - require.NoError(t, err, "expecting to match") - - require.True(t, strings.HasPrefix(blockWithTxs.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", blockWithTxs.BlockHash) - require.NotEmpty(t, blockWithTxs.Transactions, "the number of transactions should not be 0") - - if test.want != nil { - if (*test.want).BlockHash == &felt.Zero { - continue - } - - invokeV0Want, ok := (*test.want).Transactions[test.LookupTxnPositionInExpected].(BlockInvokeTxnV0) - require.True(t, ok, "expected invoke v0 transaction") - - invokeV0Block, ok := blockWithTxs.Transactions[test.LookupTxnPositionInOriginal].(BlockInvokeTxnV0) - require.True(t, ok, "expected invoke v0 transaction") - - require.Equal(t, invokeV0Want.TransactionHash, invokeV0Block.TransactionHash, "expected equal TransactionHash") - require.Equal(t, invokeV0Want.InvokeTxnV0.MaxFee, invokeV0Block.InvokeTxnV0.MaxFee, "expected equal maxfee") - require.Equal(t, invokeV0Want.InvokeTxnV0.EntryPointSelector, invokeV0Block.InvokeTxnV0.EntryPointSelector, "expected equal eps") - - } + var fullBlockSepolia65083 Block + read, err := os.ReadFile("tests/block/sepoliaBlockTxs65083.json") + require.NoError(err) + require.NoError(json.Unmarshal(read, &fullBlockSepolia65083)) - } -} - -// TestBlockWithTxsAndInvokeTXNV1 tests the BlockWithTxsAndInvokeTXNV1 function. -// -// The function tests the BlockWithTxsAndInvokeTXNV1 function by setting up a test configuration and a test set type. -// It then initializes a fullBlockSepolia64159 variable with a Block struct and invokes the BlockWithTxs function with different test scenarios. -// The function compares the expected error with the actual error and checks if the BlockWithTxs function returns the correct block data. -// It also verifies the block hash, the number of transactions in the block, and the details of a specific transaction. -// -// Parameters: -// - t: The t testing object -// Returns: -// -// none -func TestBlockWithTxsAndInvokeTXNV1(t *testing.T) { - testConfig := beforeEach(t) - - type testSetType struct { - BlockID BlockID - ExpectedError error - LookupTxnPositionInOriginal int - LookupTxnPositionInExpected int - want *Block - } - - var fullBlockSepolia64159 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964"), - ParentHash: utils.TestHexToFelt(t, "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 64159, - NewRoot: utils.TestHexToFelt(t, "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0"), - Timestamp: 1714901729, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - - BlockInvokeTxnV1{ - TransactionHash: utils.TestHexToFelt(t, "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc"), - InvokeTxnV1: InvokeTxnV1{ - Type: "INVOKE", - Version: TransactionV1, - Nonce: utils.TestHexToFelt(t, "0x33"), - MaxFee: utils.TestHexToFelt(t, "0x1bad55a98e1c1"), - SenderAddress: utils.TestHexToFelt(t, "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067"), - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x7bc0a22005a54ec6a005c1e89ab0201cbd0819621edd9fe4d5ef177a4ff33dd"), - utils.TestHexToFelt(t, "0x13089e5f38de4ea98e9275be7fadc915946be15c14a8fed7c55202818527bea"), - }, - Calldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e"), - utils.TestHexToFelt(t, "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126"), - utils.TestHexToFelt(t, "0x6"), - utils.TestHexToFelt(t, "0x5265706f73736573734275696c64696e67"), - utils.TestHexToFelt(t, "0x4"), - utils.TestHexToFelt(t, "0x5"), - utils.TestHexToFelt(t, "0x1b48"), - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0xe52"), - }, - }, - }, - }, - } + var fullBlockSepolia122476 Block + read, err = os.ReadFile("tests/block/sepoliaBlockTxs122476.json") + require.NoError(err) + require.NoError(json.Unmarshal(read, &fullBlockSepolia122476)) testSet := map[string][]testSetType{ - "mock": {}, - "testnet": { + "mock": { { - BlockID: WithBlockNumber(64159), - ExpectedError: nil, - want: &fullBlockSepolia64159, - LookupTxnPositionInExpected: 0, - LookupTxnPositionInOriginal: 4, + BlockID: WithBlockTag("latest"), }, { - BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964")), - ExpectedError: nil, - want: &fullBlockSepolia64159, - LookupTxnPositionInExpected: 0, - LookupTxnPositionInOriginal: 4, - }, - }, - "mainnet": {}, - }[testEnv] - - for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - blockWithTxsInterface, err := testConfig.provider.BlockWithTxs(context.Background(), test.BlockID) - require.NoError(t, err, "Unable to fetch the given block.") - - blockWithTxs, ok := blockWithTxsInterface.(*Block) - require.True(t, ok, "Failed to assert the Interface as *Block.") - require.Equal(t, blockWithTxs.BlockHash.String()[:2], "0x", "Block Hash should start with \"0x\".") - require.NotEqual(t, len(blockWithTxs.Transactions), 0, "The number of transaction should not be 0.") - - invokeV1Want, ok := (*test.want).Transactions[test.LookupTxnPositionInExpected].(BlockInvokeTxnV1) - require.True(t, ok, "Expected invoke v1 transaction.") - - invokeV1Block, ok := blockWithTxs.Transactions[test.LookupTxnPositionInOriginal].(BlockInvokeTxnV1) - require.True(t, ok, "Expected invoke v1 transaction.") - - require.Equal(t, invokeV1Want.TransactionHash.String(), invokeV1Block.TransactionHash.String(), "Expected equal TransactionHash.") - require.Equal(t, invokeV1Want.InvokeTxnV1.MaxFee.String(), invokeV1Block.InvokeTxnV1.MaxFee.String(), "Expected equal maxfee.") - require.Equal(t, invokeV1Want.InvokeTxnV1.Calldata[1].String(), invokeV1Block.InvokeTxnV1.Calldata[1].String(), "Expected equal calldatas.") - } -} - -// TestBlockWithTxsAndInvokeTXNV3 tests the BlockWithTxsAndInvokeTXNV3 function. -// -// The function tests the BlockWithTxsAndInvokeTXNV3 function by setting up a test configuration and a test set type. -// It then initializes a fullBlockSepolia52767 variable with a Block struct and invokes the BlockWithTxs function with different test scenarios. -// The function compares the expected error with the actual error and checks if the BlockWithTxs function returns the correct block data. -// It also verifies the block hash, the number of transactions in the block, and the details of a specific transaction. -// -// Parameters: -// - t: The t testing object -// Returns: -// -// none -func TestBlockWithTxsAndInvokeTXNV3(t *testing.T) { - testConfig := beforeEach(t) - - type testSetType struct { - BlockID BlockID - ExpectedError error - LookupTxnPositionInOriginal int - LookupTxnPositionInExpected int - want *Block - } - - var fullBlockSepolia52767 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x4ae5d52c75e4dea5694f456069f830cfbc7bec70427eee170c3385f751b8564"), - ParentHash: utils.TestHexToFelt(t, "0x7d3a1bc98e49c197b38538fbc351dae6ed4f0ff4e718db119ddacef3088b928"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 52767, - NewRoot: utils.TestHexToFelt(t, "0x3d86be8765b9b6ab724fb8c10a64c4e1705bcc6d39032fe9973037abedc113a"), - Timestamp: 1661450764, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - BlockInvokeTxnV3{ - TransactionHash: utils.TestHexToFelt(t, "0xb91eada292de46f4ec663bac57699c7b8f8fa454a8efad91fde7f35d941199"), - InvokeTxnV3: InvokeTxnV3{ - Type: "INVOKE", - SenderAddress: utils.TestHexToFelt(t, "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d"), - Nonce: utils.TestHexToFelt(t, "0x49f6"), - Version: TransactionV3, - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x7f14bb280b602d0c0e22e91ea5d987371554664f68c57c0acd16bf9f8be36b4"), - utils.TestHexToFelt(t, "0x22c57ce8eb211c7fe0f04e7da338f579fcbc9e8997ec432fac7738c80fd56ad"), - }, - Calldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x3b4a36565470dadabb8db607d894c2c5c74c97c1da2a02e68f7b2c1e816c546"), - utils.TestHexToFelt(t, "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8"), - utils.TestHexToFelt(t, "0x13"), - utils.TestHexToFelt(t, "0x4e8ccea93954c392e93c650e4203c4bbb14bbd49172cf11ab344f3307ad8c"), - utils.TestHexToFelt(t, "0x54c04"), - utils.TestHexToFelt(t, "0x65c358022a33f92065dbc77f4ead316ca6140b77d3b9c85aeb533f3c6f0016"), - utils.TestHexToFelt(t, "0x6600d885"), - utils.TestHexToFelt(t, "0x304010200000000000000000000000000000000000000000000000000000000"), - utils.TestHexToFelt(t, "0x4"), - utils.TestHexToFelt(t, "0x4fdfb0a7f6"), - utils.TestHexToFelt(t, "0x4fdfb0a7f6"), - utils.TestHexToFelt(t, "0x4fe0bd9fe0"), - utils.TestHexToFelt(t, "0x4fe0bd9fe0"), - utils.TestHexToFelt(t, "0xa0663181cca796872"), - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x2"), - utils.TestHexToFelt(t, "0x6b34b2fe5d97c7d5dde2bd56b8344cb40b984d88fa7b0d9cabec6bcf882e072"), - utils.TestHexToFelt(t, "0x379c65ebd06927d01ab023e275bb4e45fb9ff9da8d27bf70bea6c2e5d51839b"), - utils.TestHexToFelt(t, "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5"), - utils.TestHexToFelt(t, "0xf9c67a4272ebcfcd527c103c7ee33946645e4df836a1c8c6f95c24d1e0ff94"), - utils.TestHexToFelt(t, "0x3deb1e9016f2a77b97802dfc4f39824cbe08cafaca8adc29d0467fc119a6673"), - utils.TestHexToFelt(t, "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962"), - }, - ResourceBounds: ResourceBoundsMapping{ - L1Gas: ResourceBounds{ - MaxAmount: "0x3bb2", - MaxPricePerUnit: "0x2ba7def30000", - }, - L2Gas: ResourceBounds{ - MaxAmount: "0x0", - MaxPricePerUnit: "0x0", - }, + BlockID: WithBlockTag("pending"), + ExpectedPendingBlock: &PendingBlock{ + PendingBlockHeader{ + ParentHash: utils.RANDOM_FELT, + Timestamp: 123, + SequencerAddress: utils.RANDOM_FELT, }, - Tip: "0x0", - PayMasterData: []*felt.Felt{}, - AccountDeploymentData: []*felt.Felt{}, - NonceDataMode: DAModeL1, - FeeMode: DAModeL1, + nil, }, }, - }, - } - - testSet := map[string][]testSetType{ - "mock": {}, - "testnet": { { - BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x4ae5d52c75e4dea5694f456069f830cfbc7bec70427eee170c3385f751b8564")), - ExpectedError: nil, - LookupTxnPositionInExpected: 0, - LookupTxnPositionInOriginal: 25, - want: &fullBlockSepolia52767, + BlockID: WithBlockNumber(65083), + ExpectedBlock: &fullBlockSepolia65083, + InvokeV1Index: 1, }, { - BlockID: WithBlockNumber(52767), - ExpectedError: nil, - LookupTxnPositionInExpected: 0, - LookupTxnPositionInOriginal: 25, - want: &fullBlockSepolia52767, - }, - }, - "mainnet": {}, - }[testEnv] - - for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - blockWithTxsInterface, err := testConfig.provider.BlockWithTxs(context.Background(), test.BlockID) - require.NoError(t, err, "Unable to fetch the given block.") - - blockWithTxs, ok := blockWithTxsInterface.(*Block) - require.True(t, ok, "Failed to assert the Interface as *Block.") - require.Equal(t, blockWithTxs.BlockHash.String()[:2], "0x", "Block Hash should start with \"0x\".") - require.NotEqual(t, len(blockWithTxs.Transactions), 0, "The number of transaction should not be 0.") - - invokeV3Want, ok := (*test.want).Transactions[test.LookupTxnPositionInExpected].(BlockInvokeTxnV3) - require.True(t, ok, "Expected invoke v3 transaction.") - - invokeV3Block, ok := blockWithTxs.Transactions[test.LookupTxnPositionInOriginal].(BlockInvokeTxnV3) - require.True(t, ok, "Expected invoke v3 transaction.") - - require.Equal(t, invokeV3Want.TransactionHash.String(), invokeV3Block.TransactionHash.String(), "Expected equal TransactionHash.") - require.Equal(t, invokeV3Want.InvokeTxnV3.Nonce, invokeV3Block.InvokeTxnV3.Nonce, "Expected equal nonce.") - require.Equal(t, invokeV3Want.InvokeTxnV3.Calldata[1].String(), invokeV3Block.InvokeTxnV3.Calldata[1].String(), "Expected equal calldatas.") - } -} - -// TestBlockWithTxsAndDeployOrDeclare tests BlockWithTxs with Deploy or Declare TXN - -// TestBlockWithTxsAndDeployOrDeclare is a test function that tests the functionality of the BlockWithTxs function. -// It creates a test configuration, defines a testSetType struct, and initializes three Blocks (fullBlockSepolia65204, fullBlockSepolia65083 and fullBlockSepoliai65212). -// It then defines a testSet map with different test scenarios for the BlockWithTxs function. -// The function iterates over the testSet and performs the BlockWithTxs operation on each test case. -// It compares the returned blockWithTxs with the expected result and verifies the correctness of the operation. -// The function also checks the block hash, the number of transactions, and other properties of the returned blockWithTxs. -// The function returns an error if the actual result does not match the expected result. -// It uses the Spy object to compare the blockWithTxs with the expected result and returns an error if they don't match. -// The function also checks the block hash to ensure it starts with "0x" and verifies that the number of transactions is not zero. -// Finally, the function compares the transactions of the returned blockWithTxs with the expected transactions and returns an error if they don't match. -// -// Parameters: -// - t: *testing.T - the testing object for running the test cases -// Returns: -// -// none -func TestBlockWithTxsAndDeployOrDeclare(t *testing.T) { - testConfig := beforeEach(t) - - type testSetType struct { - BlockID BlockID - ExpectedError error - LookupTxnPositionInOriginal int - LookupTxnPositionInExpected int - ExpectedBlockWithTxs *Block - } - - var fullBlockSepolia65204 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x2b0d32dbe49e0ffdc6d5cb36896198c242276ec63a60106a17963427f7cf10e"), - ParentHash: utils.TestHexToFelt(t, "0x7c703a06d7476055adaa518cb9682621755e7a95f144a54853ace320800e82e"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 65204, - NewRoot: utils.TestHexToFelt(t, "0x1a24db193c0ebab47cb29c59ef277033d2e37dd909297073cb5c9594d892344"), - Timestamp: 1715289398, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - BlockDeployAccountTxn{ - TransactionHash: utils.TestHexToFelt(t, "0x26e30d2ed579c1ff575710d8ce29d9056e67ac08ab261a7221d384734d6ad5a"), - DeployAccountTxn: DeployAccountTxn{ - Type: TransactionType_DeployAccount, - Version: TransactionV1, - Nonce: utils.TestHexToFelt(t, "0x0"), - MaxFee: utils.TestHexToFelt(t, "0x4865413596"), - ContractAddressSalt: utils.TestHexToFelt(t, "0x5ffef5f00daec09457836121dcb7a8bcae97080716a292d3d8ee899d0b2597e"), - ClassHash: utils.TestHexToFelt(t, "0x13bfe114fb1cf405bfc3a7f8dbe2d91db146c17521d40dcf57e16d6b59fa8e6"), - ConstructorCalldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x5ffef5f00daec09457836121dcb7a8bcae97080716a292d3d8ee899d0b2597e"), - }, - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x561486f318c01d7d47434875d685a505c282804616ed3c69e91fb59731739fc"), - utils.TestHexToFelt(t, "0x1beb073a4cac8b344d22e2d2833ea30e140b3701936b3a4af69a12a2f47394b"), - utils.TestHexToFelt(t, "0x816dd0297efc55dc1e7559020a3a825e81ef734b558f03c83325d4da7e6253"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x534e5f5345504f4c4941"), - utils.TestHexToFelt(t, "0x1f58325efbae915a4ea70270c536fa1c84c48eedf8ae3b970e0c0270694ddad"), - utils.TestHexToFelt(t, "0x2c7adff34d5e2b1c4205c80638df0e3a5b6831ff1d9643f6e7b8bcbbe1f71f3"), - }, - }, - }, - }, - } - - var fullBlockSepolia65083 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x549770b5b74df90276277ff7a11af881c998dffa452f4156f14446db6005174"), - ParentHash: utils.TestHexToFelt(t, "0x4de1acdff24acba2a537ef651ec8f790e5c0321f92f1115b272a6f2f2d637e8"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 65083, - NewRoot: utils.TestHexToFelt(t, "0x7df132d80333fd54a3a059e0cc6e851bda52cc72d0437a8f13a1b0809a17499"), - Timestamp: 1715244926, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - BlockDeclareTxnV1{ - TransactionHash: utils.TestHexToFelt(t, "0x3c7817502dac2dc90198c6b64b85f3700507d74c75e08af85164e1b35e3a8b5"), - DeclareTxnV1: DeclareTxnV1{ - Type: TransactionType_Declare, - MaxFee: utils.TestHexToFelt(t, "0xde0b6b3a7640000"), - Version: TransactionV1, - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x998b12c82d208af7c4b820626f2f7e015b8ee33ef5ae44e8a04f5254977865"), - utils.TestHexToFelt(t, "0x55c341329a881afb29462ab32dcebb16d35c56021c3595bbba01b5c563f66fe"), - }, - Nonce: utils.TestHexToFelt(t, "0x713"), - ClassHash: utils.TestHexToFelt(t, "0x6c5a3f54e8bbfe07167c87f8ace70629573e05c385fe4bea69bc1d323acb8d3"), - SenderAddress: utils.TestHexToFelt(t, "0x2cc631ca0c544639f6e4403b8f3611696a3d831e8157ea1c946e35429c7ac31"), - }, + BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x549770b5b74df90276277ff7a11af881c998dffa452f4156f14446db6005174")), + ExpectedBlock: &fullBlockSepolia65083, + InvokeV1Index: 1, }, }, - } - - var fullBlockSepoliai65212 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x31b785f0f8b258f7b164d13ecc02dc4e06a1c67174f1e39f9368d1b5af43ae"), - ParentHash: utils.TestHexToFelt(t, "0x6133d377632092e31b0adad5a6496c8468cb3cb53de10f3ecdfc748f57cf9e3"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 65212, - NewRoot: utils.TestHexToFelt(t, "0x2d867e8a51807513d3372cf2658f03b0c212caba0fcad4f036e3023215b27a"), - Timestamp: 1715292305, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - BlockDeclareTxnV2{ - TransactionHash: utils.TestHexToFelt(t, "0x3e68091ecacab5a880ae8d9847d7b87408bbf05270ded34e082577acfdc3770"), - DeclareTxnV2: DeclareTxnV2{ - Type: TransactionType_Declare, - MaxFee: utils.TestHexToFelt(t, "0x1108942d5866"), - Version: TransactionV2, - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x40cedf50ffc6866050b63e9576333da68ed51e258c6ddfa7e22d5e557f71961"), - utils.TestHexToFelt(t, "0x4b33458a2005664fbd204331c078df3ac5a16288285ba0fcf1b6fd9c9d9257a"), - }, - Nonce: utils.TestHexToFelt(t, "0x2f"), - ClassHash: utils.TestHexToFelt(t, "0x190c14ee771ed5c77a006545659baa33d22c083473c8ba136cf1614f3e545b0"), - CompiledClassHash: utils.TestHexToFelt(t, "0x3bd32e501b720756105de78796bebd5f4412da986811dff38a114be296e6120"), - SenderAddress: utils.TestHexToFelt(t, "0x3b2d6d0edcbdbdf6548d2b79531263628887454a0a608762c71056172d36240"), - }, - }, - }, - } - - testSet := map[string][]testSetType{ - "mock": {}, "testnet": { { - BlockID: WithBlockTag("latest"), - ExpectedError: nil, - }, - { - BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x2b0d32dbe49e0ffdc6d5cb36896198c242276ec63a60106a17963427f7cf10e")), - ExpectedError: nil, - LookupTxnPositionInOriginal: 5, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepolia65204, - }, - { - BlockID: WithBlockNumber(65204), - ExpectedError: nil, - LookupTxnPositionInOriginal: 5, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepolia65204, + BlockID: WithBlockTag("latest"), }, { - BlockID: WithBlockNumber(65212), - ExpectedError: nil, - LookupTxnPositionInOriginal: 24, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepoliai65212, + BlockID: WithBlockTag("pending"), }, { - BlockID: WithBlockNumber(65083), - ExpectedError: nil, - LookupTxnPositionInOriginal: 26, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepolia65083, + BlockID: WithBlockNumber(65083), + ExpectedBlock: &fullBlockSepolia65083, + InvokeV1Index: 1, + InvokeV3Index: 3, + DeclareV1Index: 26, + DeclareV2Index: 25, + DeployAccountV1Index: 42, }, { - BlockID: WithBlockNumber(65212), - ExpectedError: nil, - LookupTxnPositionInOriginal: 24, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepoliai65212, - }, - { - BlockID: WithBlockNumber(65083), - ExpectedError: nil, - LookupTxnPositionInOriginal: 26, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepolia65083, + BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x56a71e0443d2fbfaa91b1000e830b516ca0d4a424abb9c970d23801957dbfa3")), + ExpectedBlock: &fullBlockSepolia122476, + L1HandlerV0Index: 4, }, }, "mainnet": {}, }[testEnv] for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy blockWithTxsInterface, err := testConfig.provider.BlockWithTxs(context.Background(), test.BlockID) - assert.Equal(t, test.ExpectedError, err, "BlockWithTxHashes doesn't match the expected error.") + require.NoError(err, "Unable to fetch the given block.") - if test.ExpectedError != nil && blockWithTxsInterface == nil { - continue - } + switch block := blockWithTxsInterface.(type) { + case *PendingBlock: + if test.ExpectedPendingBlock == nil { + validatePendingBlockHeader(t, &block.PendingBlockHeader) + } else { + require.Exactly(test.ExpectedPendingBlock, block) + } + case *Block: + if test.ExpectedBlock == nil { + require.Equal(block.BlockHash.String()[:2], "0x", "Block Hash should start with \"0x\".") + require.NotEmpty(block.Transactions, "The number of transaction should not be 0.") + } else { + require.Exactly(test.ExpectedBlock, block) - blockWithTxs, ok := blockWithTxsInterface.(*Block) - require.True(t, ok, fmt.Sprintf("Expecting *rpc.Block, instead %T", blockWithTxsInterface)) + //validates an BlockInvokeV1 transaction + if test.InvokeV1Index > 0 { + invokeV1Expected, ok := (*test.ExpectedBlock).Transactions[test.InvokeV1Index].(BlockInvokeTxnV1) + require.True(ok, "Expected invoke v1 transaction.") + invokeV1Block, ok := block.Transactions[test.InvokeV1Index].(BlockInvokeTxnV1) + require.True(ok, "Expected invoke v1 transaction.") - diff, err := spy.Compare(blockWithTxs, false) - require.NoError(t, err, "Expected to compare the BlockWithTxs.") + require.Exactly(invokeV1Expected, invokeV1Block) + } - if diff != "FullMatch" { - _, err = spy.Compare(blockWithTxs, false) - require.NoError(t, err, "Unable to compare the count.") - } + //validates an BlockInvokeV3 transaction + if test.InvokeV3Index > 0 { + invokeV3Expected, ok := (*test.ExpectedBlock).Transactions[test.InvokeV3Index].(BlockInvokeTxnV3) + require.True(ok, "Expected invoke v3 transaction.") + invokeV3Block, ok := block.Transactions[test.InvokeV3Index].(BlockInvokeTxnV3) + require.True(ok, "Expected invoke v3 transaction.") - require.True(t, strings.HasPrefix(blockWithTxs.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", blockWithTxs.BlockHash) - require.NotEmpty(t, blockWithTxs.Transactions, "the number of transactions should not be 0") + require.Exactly(invokeV3Expected, invokeV3Block) + } - if test.ExpectedBlockWithTxs != nil { - if test.ExpectedBlockWithTxs.BlockHash == &felt.Zero { - continue + //validates an BlockDeclareV1 transaction + if test.DeclareV1Index > 0 { + declareV1Expected, ok := (*test.ExpectedBlock).Transactions[test.DeclareV1Index].(BlockDeclareTxnV1) + require.True(ok, "Expected declare v1 transaction.") + declareV1Block, ok := block.Transactions[test.DeclareV1Index].(BlockDeclareTxnV1) + require.True(ok, "Expected declare v1 transaction.") + + require.Exactly(declareV1Expected, declareV1Block) + } + + //validates an BlockDeclareV2 transaction + if test.DeclareV2Index > 0 { + declareV2Expected, ok := (*test.ExpectedBlock).Transactions[test.DeclareV2Index].(BlockDeclareTxnV2) + require.True(ok, "Expected declare v2 transaction.") + declareV2Block, ok := block.Transactions[test.DeclareV2Index].(BlockDeclareTxnV2) + require.True(ok, "Expected declare v2 transaction.") + + require.Exactly(declareV2Expected, declareV2Block) + } + + //validates an BlockDeployAccountV1 transaction + if test.DeployAccountV1Index > 0 { + deployAccountV1Expected, ok := (*test.ExpectedBlock).Transactions[test.DeployAccountV1Index].(BlockDeployAccountTxn) + require.True(ok, "Expected declare v2 transaction.") + deployAccountV1Block, ok := block.Transactions[test.DeployAccountV1Index].(BlockDeployAccountTxn) + require.True(ok, "Expected declare v2 transaction.") + + require.Exactly(deployAccountV1Expected, deployAccountV1Block) + } + + //validates an BlockL1HandlerV0 transaction + if test.L1HandlerV0Index > 0 { + l1HandlerV0Expected, ok := (*test.ExpectedBlock).Transactions[test.L1HandlerV0Index].(BlockL1HandlerTxn) + require.True(ok, "Expected L1 handler transaction.") + l1HandlerV0Block, ok := block.Transactions[test.L1HandlerV0Index].(BlockL1HandlerTxn) + require.True(ok, "Expected L1 handler transaction.") + + require.Exactly(l1HandlerV0Expected, l1HandlerV0Block) + } } - require.True(t, cmp.Equal(test.ExpectedBlockWithTxs.Transactions[test.LookupTxnPositionInExpected], blockWithTxs.Transactions[test.LookupTxnPositionInOriginal]), - "the expected transaction blocks to match, instead: %s", cmp.Diff(test.ExpectedBlockWithTxs.Transactions[test.LookupTxnPositionInExpected], blockWithTxs.Transactions[test.LookupTxnPositionInOriginal])) } + } } @@ -1063,3 +701,13 @@ func TestStateUpdate(t *testing.T) { ) } } + +func validatePendingBlockHeader(t *testing.T, pBlock *PendingBlockHeader) { + require.NotZero(t, pBlock.ParentHash) + require.NotZero(t, pBlock.Timestamp) + require.NotZero(t, pBlock.SequencerAddress) + require.NotZero(t, pBlock.L1GasPrice) + require.NotZero(t, pBlock.StarknetVersion) + require.NotZero(t, pBlock.L1DataGasPrice) + require.NotZero(t, pBlock.L1DAMode) +} diff --git a/rpc/mock_test.go b/rpc/mock_test.go index 3f6921c3..78264fbd 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -44,53 +44,55 @@ func (r *rpcMock) Close() { func (r *rpcMock) CallContext(ctx context.Context, result interface{}, method string, args ...interface{}) error { switch method { case "starknet_addDeclareTransaction": - return mock_starknet_addDeclareTransaction(result, method, args...) + return mock_starknet_addDeclareTransaction(result, args...) case "starknet_addInvokeTransaction": - return mock_starknet_addInvokeTransaction(result, method, args...) + return mock_starknet_addInvokeTransaction(result, args...) case "starknet_addDeployAccountTransaction": - return mock_starknet_addDeployAccountTransaction(result, method, args...) + return mock_starknet_addDeployAccountTransaction(result, args...) case "starknet_blockNumber": - return mock_starknet_blockNumber(result, method, args...) + return mock_starknet_blockNumber(result, args...) case "starknet_call": - return mock_starknet_call(result, method, args...) + return mock_starknet_call(result, args...) case "starknet_chainId": - return mock_starknet_chainId(result, method, args...) + return mock_starknet_chainId(result, args...) case "starknet_estimateFee": - return mock_starknet_estimateFee(result, method, args...) + return mock_starknet_estimateFee(result, args...) case "starknet_estimateMessageFee": - return mock_starknet_estimateMessageFee(result, method, args...) + return mock_starknet_estimateMessageFee(result, args...) + case "starknet_getBlockWithTxs": + return mock_starknet_getBlockWithTxs(result, args...) case "starknet_getBlockTransactionCount": - return mock_starknet_getBlockTransactionCount(result, method, args...) + return mock_starknet_getBlockTransactionCount(result, args...) case "starknet_getBlockWithTxHashes": - return mock_starknet_getBlockWithTxHashes(result, method, args...) + return mock_starknet_getBlockWithTxHashes(result, args...) case "starknet_getBlockWithReceipts": - return mock_starknet_getBlockWithReceipts(result, method, args...) + return mock_starknet_getBlockWithReceipts(result, args...) case "starknet_getClass": - return mock_starknet_getClass(result, method, args...) + return mock_starknet_getClass(result, args...) case "starknet_getClassAt": - return mock_starknet_getClassAt(result, method, args...) + return mock_starknet_getClassAt(result, args...) case "starknet_getClassHashAt": - return mock_starknet_getClassHashAt(result, method, args...) + return mock_starknet_getClassHashAt(result, args...) case "starknet_getEvents": - return mock_starknet_getEvents(result, method, args...) + return mock_starknet_getEvents(result, args...) case "starknet_getNonce": - return mock_starknet_getNonce(result, method, args...) + return mock_starknet_getNonce(result, args...) case "starknet_getStateUpdate": - return mock_starknet_getStateUpdate(result, method, args...) + return mock_starknet_getStateUpdate(result, args...) case "starknet_getStorageAt": - return mock_starknet_getStorageAt(result, method, args...) + return mock_starknet_getStorageAt(result, args...) case "starknet_getTransactionByBlockIdAndIndex": - return mock_starknet_getTransactionByBlockIdAndIndex(result, method, args...) + return mock_starknet_getTransactionByBlockIdAndIndex(result, args...) case "starknet_getTransactionByHash": - return mock_starknet_getTransactionByHash(result, method, args...) + return mock_starknet_getTransactionByHash(result, args...) case "starknet_getTransactionReceipt": - return mock_starknet_getTransactionReceipt(result, method, args...) + return mock_starknet_getTransactionReceipt(result, args...) case "starknet_syncing": - return mock_starknet_syncing(result, method, args...) + return mock_starknet_syncing(result, args...) case "starknet_traceBlockTransactions": - return mock_starknet_traceBlockTransactions(result, method, args...) + return mock_starknet_traceBlockTransactions(result, args...) case "starknet_traceTransaction": - return mock_starknet_traceTransaction(result, method, args...) + return mock_starknet_traceTransaction(result, args...) default: return errNotFound } @@ -104,7 +106,7 @@ func (r *rpcMock) CallContext(ctx context.Context, result interface{}, method st // - args: Additional arguments passed to the function // Returns: // - error: An error if the result is not of type *big.Int or if the arguments count is not zero -func mock_starknet_blockNumber(result interface{}, method string, args ...interface{}) error { +func mock_starknet_blockNumber(result interface{}, args ...interface{}) error { r, ok := result.(*big.Int) if !ok || r == nil { return errWrongType @@ -125,7 +127,7 @@ func mock_starknet_blockNumber(result interface{}, method string, args ...interf // - args: a variadic parameter of type interface{} that represents the arguments of the function. // Returns: // - error: an error if there is a wrong type or wrong number of arguments. -func mock_starknet_chainId(result interface{}, method string, args ...interface{}) error { +func mock_starknet_chainId(result interface{}, args ...interface{}) error { r, ok := result.(*string) if !ok { return errWrongType @@ -146,7 +148,7 @@ func mock_starknet_chainId(result interface{}, method string, args ...interface{ // - args: a variadic parameter of type interface{} that represents the arguments of the function. // Return: // - error: an error if there is a wrong type or wrong number of arguments -func mock_starknet_syncing(result interface{}, method string, args ...interface{}) error { +func mock_starknet_syncing(result interface{}, args ...interface{}) error { // Note: Since starknet_syncing returns with bool or SyncStatus, we pass in interface{} r, ok := result.(*interface{}) if !ok { @@ -184,7 +186,7 @@ func mock_starknet_syncing(result interface{}, method string, args ...interface{ // - args: The arguments of the API call. This should be a variadic parameter that accepts a variable number of arguments // Returns: // - error: An error if the API call fails, otherwise nil -func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -224,7 +226,7 @@ func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, method st // - args: The arguments of the API call. This should be a variadic parameter that accepts a variable number of arguments // Returns: // - error: An error if the API call fails, otherwise nil -func mock_starknet_getBlockTransactionCount(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getBlockTransactionCount(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -250,7 +252,7 @@ func mock_starknet_getBlockTransactionCount(result interface{}, method string, a // - args: a variadic parameter that contains the arguments used for retrieval // Returns: // - error: an error if there is a failure in retrieving the transaction -func mock_starknet_getTransactionByHash(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getTransactionByHash(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -294,7 +296,7 @@ func mock_starknet_getTransactionByHash(result interface{}, method string, args // - args: a variadic parameter representing the arguments of the transaction receipt // Returns: // - error: an error if there is an issue with the type of the result or the number of arguments -func mock_starknet_getTransactionReceipt(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getTransactionReceipt(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -384,7 +386,7 @@ func mock_starknet_getTransactionReceipt(result interface{}, method string, args // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 2 // The function always returns nil. -func mock_starknet_getClassAt(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getClassAt(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { fmt.Printf("%T\n", result) @@ -429,7 +431,7 @@ func mock_starknet_getClassAt(result interface{}, method string, args ...interfa // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 2 // The function always returns nil. -func mock_starknet_getClassHashAt(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getClassHashAt(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { fmt.Printf("%T\n", result) @@ -453,7 +455,7 @@ func mock_starknet_getClassHashAt(result interface{}, method string, args ...int } // mock_starknet_getClass is a function that retrieves a class from the StarkNet API. -// It takes in a result interface{}, a method string, and variadic args ...interface{}. +// It takes in a result interface{} and variadic args ...interface{}. // The result interface{} should be a pointer to json.RawMessage. // The method string specifies the method to be called on the StarkNet API. // The args ...interface{} are the arguments to be passed to the method. @@ -472,7 +474,7 @@ func mock_starknet_getClassHashAt(result interface{}, method string, args ...int // - args: The variadic args ...interface{} representing the arguments to be passed to the method // Returns: // - error: An error if any of the conditions mentioned above are met -func mock_starknet_getClass(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getClass(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { fmt.Printf("%T\n", result) @@ -513,7 +515,7 @@ func mock_starknet_getClass(result interface{}, method string, args ...interface // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 1 // The function always returns nil -func mock_starknet_getEvents(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getEvents(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -567,7 +569,7 @@ func mock_starknet_getEvents(result interface{}, method string, args ...interfac // - args: The arguments to be passed to the method // Returns: // - error: An error if the transaction fails -func mock_starknet_call(result interface{}, method string, args ...interface{}) error { +func mock_starknet_call(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -598,7 +600,7 @@ func mock_starknet_call(result interface{}, method string, args ...interface{}) // - args: The arguments to be passed to the method // Return: // - error: An error if the transaction fails -func mock_starknet_addDeclareTransaction(result interface{}, method string, args ...interface{}) error { +func mock_starknet_addDeclareTransaction(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -634,7 +636,7 @@ func mock_starknet_addDeclareTransaction(result interface{}, method string, args // - args: The arguments to be passed to the method // Returns: // - error: an error if any -func mock_starknet_estimateFee(result interface{}, method string, args ...interface{}) error { +func mock_starknet_estimateFee(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -689,7 +691,7 @@ func mock_starknet_estimateFee(result interface{}, method string, args ...interf // - args: The arguments to be passed to the method // Returns: // - error: an error if any -func mock_starknet_estimateMessageFee(result interface{}, method string, args ...interface{}) error { +func mock_starknet_estimateMessageFee(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -732,7 +734,7 @@ func mock_starknet_estimateMessageFee(result interface{}, method string, args .. // - args: The arguments to be passed to the method // Returns: // - error: an error if any -func mock_starknet_addInvokeTransaction(result interface{}, method string, args ...interface{}) error { +func mock_starknet_addInvokeTransaction(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -784,7 +786,7 @@ func mock_starknet_addInvokeTransaction(result interface{}, method string, args return errors.Wrap(errWrongArgs, fmt.Sprintf("args[0] should be InvokeTxnV1 or InvokeTxnV3, got %T\n", args[0])) } } -func mock_starknet_addDeployAccountTransaction(result interface{}, method string, args ...interface{}) error { +func mock_starknet_addDeployAccountTransaction(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -825,7 +827,7 @@ func mock_starknet_addDeployAccountTransaction(result interface{}, method string // - args: The arguments to be passed to the method // Returns: // - error: an error if any -func mock_starknet_getStorageAt(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getStorageAt(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -866,7 +868,7 @@ func mock_starknet_getStorageAt(result interface{}, method string, args ...inter // - args: a variadic parameter that can accept multiple arguments. // Returns: // - error: an error if any -func mock_starknet_getStateUpdate(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getStateUpdate(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { @@ -934,7 +936,7 @@ func mock_starknet_getStateUpdate(result interface{}, method string, args ...int // - The number of arguments is not equal to 2 // - The first argument is not of type BlockID // - The second argument is not of type *felt.Felt -func mock_starknet_getNonce(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getNonce(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -965,6 +967,70 @@ func mock_starknet_getNonce(result interface{}, method string, args ...interface return nil } +// mock_starknet_getBlockWithTxs mocks the behavior of the starknet_getBlockWithTxs function. +// If successful, it populates the result parameter with the json.RawMessage containing the block with the transactions. +// +// Parameters: +// - result: the result is expected to be a pointer to json.RawMessage +// - method: the method to be called +// - args: variadic parameter that can contain any number of arguments +// Returns: +// - error: an error if any +func mock_starknet_getBlockWithTxs(result interface{}, args ...interface{}) error { + r, ok := result.(*json.RawMessage) + if !ok || r == nil { + return errWrongType + } + if len(args) != 1 { + return errWrongArgs + } + blockId, ok := args[0].(BlockID) + if !ok { + fmt.Printf("args[0] should be BlockID, got %T\n", args[0]) + return errWrongArgs + } + + fakeFeltField, err := utils.HexToFelt("0xdeadbeef") + if err != nil { + return err + } + + if blockId.Tag == "pending" { + pBlock, err := json.Marshal( + PendingBlock{ + PendingBlockHeader{ + ParentHash: fakeFeltField, + Timestamp: 123, + SequencerAddress: fakeFeltField, + }, + BlockTransactions{}, + }, + ) + if err != nil { + return err + } + + return json.Unmarshal(pBlock, &r) + } else { + var fullBlockSepolia64159 Block + read, err := os.ReadFile("tests/block/sepoliaBlockTxs65083.json") + if err != nil { + return err + } + err = json.Unmarshal(read, &fullBlockSepolia64159) + if err != nil { + return err + } + + blockBites, err := json.Marshal(fullBlockSepolia64159) + if err != nil { + return err + } + + return json.Unmarshal(blockBites, &r) + } +} + // mock_starknet_getBlockWithTxHashes mocks the behavior of the starknet_getBlockWithTxHashes function. // If successful, it populates the result parameter with the json.RawMessage containing the block with the specified transaction hashes. // @@ -974,7 +1040,7 @@ func mock_starknet_getNonce(result interface{}, method string, args ...interface // - args: variadic parameter that can contain any number of arguments // Returns: // - error: an error if any -func mock_starknet_getBlockWithTxHashes(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getBlockWithTxHashes(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -1039,7 +1105,7 @@ func mock_starknet_getBlockWithTxHashes(result interface{}, method string, args return nil } -func mock_starknet_getBlockWithReceipts(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getBlockWithReceipts(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -1148,7 +1214,7 @@ func mock_starknet_getBlockWithReceipts(result interface{}, method string, args // - args: optional arguments for the method // Returns: // - error: an error if any -func mock_starknet_traceBlockTransactions(result interface{}, method string, args ...interface{}) error { +func mock_starknet_traceBlockTransactions(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -1203,7 +1269,7 @@ func mock_starknet_traceBlockTransactions(result interface{}, method string, arg // - args: a variadic parameter that can accept multiple arguments. // Returns: // - error: an error if any -func mock_starknet_traceTransaction(result interface{}, method string, args ...interface{}) error { +func mock_starknet_traceTransaction(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType diff --git a/rpc/provider_test.go b/rpc/provider_test.go index b1e8da67..96543dcf 100644 --- a/rpc/provider_test.go +++ b/rpc/provider_test.go @@ -13,7 +13,6 @@ import ( "strings" "testing" - "github.com/NethermindEth/juno/core/felt" "github.com/joho/godotenv" "github.com/stretchr/testify/require" ) @@ -220,53 +219,6 @@ func TestSyncing(t *testing.T) { } } -func TestGetBlock(t *testing.T) { - testConfig := beforeEach(t) - type testSetType struct { - BlockID BlockID - ExpectedResp *Block - ExpectedErr *RPCError - } - - testSet := map[string][]testSetType{ - "devnet": {}, - "mock": { - { - BlockID: BlockID{Tag: "latest"}, - ExpectedResp: &Block{ - BlockHeader: BlockHeader{ - L1DAMode: L1DAModeBlob, - L1DataGasPrice: ResourcePrice{ - PriceInWei: new(felt.Felt).SetUint64(1), - PriceInFRI: new(felt.Felt).SetUint64(1), - }, - L1GasPrice: ResourcePrice{ - PriceInWei: new(felt.Felt).SetUint64(1), - PriceInFRI: new(felt.Felt).SetUint64(1), - }, - }, - }, - ExpectedErr: nil, - }, - }, - }[testEnv] - - for _, test := range testSet { - block, err := testConfig.provider.BlockWithTxHashes(context.Background(), BlockID{Tag: "latest"}) - if test.ExpectedErr != nil { - require.Equal(t, test.ExpectedErr, err) - } else { - blockCasted := block.(*BlockTxHashes) - expectdBlockHeader := test.ExpectedResp.BlockHeader - require.Equal(t, blockCasted.L1DAMode, expectdBlockHeader.L1DAMode) - require.Equal(t, blockCasted.L1DataGasPrice.PriceInWei, expectdBlockHeader.L1DataGasPrice.PriceInWei) - require.Equal(t, blockCasted.L1DataGasPrice.PriceInFRI, expectdBlockHeader.L1DataGasPrice.PriceInFRI) - require.Equal(t, blockCasted.L1GasPrice.PriceInWei, expectdBlockHeader.L1GasPrice.PriceInWei) - require.Equal(t, blockCasted.L1GasPrice.PriceInFRI, expectdBlockHeader.L1GasPrice.PriceInFRI) - } - - } -} func TestCookieManagement(t *testing.T) { // Don't return anything unless cookie is set. server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { @@ -278,7 +230,7 @@ func TestCookieManagement(t *testing.T) { }) } else { var result string - err := mock_starknet_chainId(&result, "") + err := mock_starknet_chainId(&result) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return diff --git a/rpc/tests/block/sepoliaBlockTxs122476.json b/rpc/tests/block/sepoliaBlockTxs122476.json new file mode 100644 index 00000000..2078194f --- /dev/null +++ b/rpc/tests/block/sepoliaBlockTxs122476.json @@ -0,0 +1,213 @@ +{ + "status": "ACCEPTED_ON_L1", + "block_hash": "0x56a71e0443d2fbfaa91b1000e830b516ca0d4a424abb9c970d23801957dbfa3", + "parent_hash": "0x4a1ea63e3ef611fb240bb16eead16695c636363a3024610376904e69d516322", + "block_number": 122476, + "new_root": "0x237e5c6bfe1194ec161004611f3ac9665642471751b9d1294067d628a1545a3", + "timestamp": 1724239919, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0x47066ac08715", + "price_in_wei": "0x28fb3be9e" + }, + "l1_data_gas_price": { + "price_in_fri": "0x39dbaca5e26d4", + "price_in_wei": "0x216251c284" + }, + "l1_da_mode": "CALLDATA", + "starknet_version": "0.13.2", + "transactions": [ + { + "transaction_hash": "0x641245619f0e5010cb9f074066b5503c1800cd378ffdcae19eece606b08770c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1c", + "max_fee": "0x6e9ddce36b59", + "sender_address": "0x43a18d9fd0d0f5c9a2c6d81d08154d262c0fc7a7f3f9dad3f0bdec4d7095afa", + "signature": [ + "0x1", + "0x0", + "0x7cbfb36b90ae66bd015b40b8ad8474e83cf56f579dd8ea0a24142b03c4efb51", + "0xa8b12c708ab70dbd54db4d70f12e96460836f25af0cb54c83873e70d25c6aa", + "0x236af83c1fd8dac6ce2d08af9ccb61ad6673df527bf5684d668b05025d9deb6" + ], + "calldata": [ + "0x1", + "0x55bf57fd5e7cc51e9dc3454cd739def751a49f25206e47d0ab41935eba96ac5", + "0x2c3af3bc76ccc9147c14ca5db346743531c8fc91c1b5be4ccfab190021aa828", + "0x1", + "0x4d93124831d19c120a4f4fedc1de422c77659297c594b0988bc6605a1906c13" + ] + }, + { + "transaction_hash": "0x64a8fac37485df357b317d7a8bb4aa18fb72ebc05363c7fc710af98316c2840", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x6", + "max_fee": "0x6b0555ce18bf", + "sender_address": "0x6f4baf2a23802beeab7d6cb3aa2cb36ca1b0b93d371eac0560568d689909e0e", + "signature": [ + "0x6a00cb31718dc425e29c4114b29682d7b4b9cdfe34fc42d8d67aa8e571e890b", + "0x6304c0fd58833f66192eff8d9798ce90560dc25cd10748327078b63ee21fea" + ], + "calldata": [ + "0x1", + "0x2f62fd47cbc9bb16b2e9ab22e1a9d57352aff1cab642d93256061a6cd3c6838", + "0x351e7616cb53c4e023ff48cbf54d76dfa5e4597a1e30b0d4fec4bba86d92c59", + "0x3", + "0x5", + "0x3", + "0x8" + ] + }, + { + "transaction_hash": "0xce7138ae93a21e94ac063665f7a51be346d9c3c287d918e391f98c9d9a33fd", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x3def", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x64b4dacea78c6394572f4534400abb74a872a059b68630fba80895c646aa97f", + "signature": [ + "0x509f8e6e14954b6f7bba2e4b35bc4176b751f6229730e014441cccd5e733d6e", + "0x3379aa29d6c131e5486e189f4cb43e5a09727ad4e6ea0b58199283cb0c913a8" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x8", + "0x1", + "0x2", + "0x66c5d037", + "0x44455249424954", + "0x505241474d415f4d45524b4c45", + "0x444552494249545f4f5054494f4e535f4d45524b4c455f524f4f54", + "0xa90b73a7b7b48deb9fe3ea09be50d30d", + "0x55fb4f5a4dd7c056a51f1a55e0bc09a" + ] + }, + { + "transaction_hash": "0x5cf2ffcc8c96d8c065e108bbd905e70b704ebc81e024d6a1de8c402fed65f7f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x7", + "max_fee": "0x49edb704d666", + "sender_address": "0x6f4baf2a23802beeab7d6cb3aa2cb36ca1b0b93d371eac0560568d689909e0e", + "signature": [ + "0x9e88cff23da4c7f299213beb54b13bcc4da60f668cb648e3a7bc4fa3b9705a", + "0x40a053a9e135f795533b2854ca2f554a17b675a7c5c7ca5681ce4b5c99313a2" + ], + "calldata": [ + "0x1", + "0x2f62fd47cbc9bb16b2e9ab22e1a9d57352aff1cab642d93256061a6cd3c6838", + "0x351e7616cb53c4e023ff48cbf54d76dfa5e4597a1e30b0d4fec4bba86d92c59", + "0x3", + "0x6", + "0x2", + "0x3" + ] + }, + { + "transaction_hash": "0x6c1c8408b4cdfbd64c9c994ed832b4ff1bab0fa61dbe6cb481096a089b89f77", + "type": "L1_HANDLER", + "version": "0x0", + "nonce": "0x21e6", + "contract_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", + "calldata": [ + "0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", + "0x455448", + "0xb957c7591bf8b8ad1e5b8942de6ff3b1d22d4951", + "0x74a007ad858d86d30a34b0426cc0a9b44cdb7b287a39827741b922c3f5055e8", + "0x8ac7230489e80000", + "0x0" + ], + "entry_point_selector": "0x1b64b1b3b690b43b9b514fb81377518f4039cd3e4f4914d8a6bdf01d679fb19" + }, + { + "transaction_hash": "0x5cd0758b83ad825e08acc746b18022f03b9b972beadd9697f2422349b0148b0", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x8", + "max_fee": "0x49e9df773879", + "sender_address": "0x6f4baf2a23802beeab7d6cb3aa2cb36ca1b0b93d371eac0560568d689909e0e", + "signature": [ + "0x632491df7060ab0f30b8b051237de3734dd4060d75fa3b6dea05a98acb39d26", + "0x6d6b36c0763109401072bdcaaf21dba0d1f01e50513b128bffa785c4799c7e0" + ], + "calldata": [ + "0x1", + "0x2f62fd47cbc9bb16b2e9ab22e1a9d57352aff1cab642d93256061a6cd3c6838", + "0x351e7616cb53c4e023ff48cbf54d76dfa5e4597a1e30b0d4fec4bba86d92c59", + "0x3", + "0x7", + "0x0", + "0x2" + ] + }, + { + "transaction_hash": "0x71648395117861ef59d09920696915a17d1df06a9439119376b0c894ad44ce7", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x639f39858940", + "contract_address_salt": "0x72ebef11beea5f6bc7a40867f4c13198c674d4d6b4e1bc6b534542c330b62f9", + "class_hash": "0x36078334509b514626504edc9fb252328d1a240e4e948bef8d0c08dff45927f", + "constructor_calldata": [ + "0x0", + "0x72ebef11beea5f6bc7a40867f4c13198c674d4d6b4e1bc6b534542c330b62f9", + "0x1" + ], + "signature": [ + "0x1", + "0x0", + "0x72ebef11beea5f6bc7a40867f4c13198c674d4d6b4e1bc6b534542c330b62f9", + "0x748e650647cba51ef1bd1ac2faf63d21ed4f24d228fc8586213f0d2d637046f", + "0x7da98a8a6c77fd1db081a4859683aaa420b70c0a5923a66ef272b9750eb5f92" + ] + }, + { + "transaction_hash": "0xaae8c4f108bd775e19caf0ee3c5505d4eeea9130c19965b8ecb8af47c687a0", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x533bc04f0dda", + "sender_address": "0x11de9c756a84a99b5765183625cd7ad8eb6a0206ce2904dbe478a1a1e5c0cb1", + "signature": [ + "0x1", + "0x0", + "0x72ebef11beea5f6bc7a40867f4c13198c674d4d6b4e1bc6b534542c330b62f9", + "0x5e214ddd79c80b2e79382acfd6d00e6fcef6c068ab9b38217f050309620ea9a", + "0x3078e43f6ed45c1d0380df34a662519686c50e6d4124cab4253b02e72295267" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0xa940bfe8529989ba4e7bf3a52ab68fc33e7e4a54a8dcbd905208f52a2539b8", + "0x5f5e100", + "0x0" + ] + }, + { + "transaction_hash": "0x66534071605a2bb656fb93b34da7300fd98e44d87e19356833e6abc0d5cb245", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9", + "max_fee": "0x5b300530450c", + "sender_address": "0x6f4baf2a23802beeab7d6cb3aa2cb36ca1b0b93d371eac0560568d689909e0e", + "signature": [ + "0x1c8a08103a1c0a292d9e74dba944722d7692b440ccef82a753aed52edca092a", + "0x481395eb95e87902f4dcdfe2c1b8b45682ab6fe30c4d75c2f5069e49bf65ca7" + ], + "calldata": [ + "0x1", + "0x2f62fd47cbc9bb16b2e9ab22e1a9d57352aff1cab642d93256061a6cd3c6838", + "0xebe67ecda98df0a49deaf33424f0f34c7216d3d08eac37cef51835b4707e64", + "0x2", + "0x382f32312f3230323420363a33323a313920504d", + "0x1" + ] + } + ] +} \ No newline at end of file diff --git a/rpc/tests/block/sepoliaBlockTxs64159.json b/rpc/tests/block/sepoliaBlockTxs64159.json deleted file mode 100644 index c4387b35..00000000 --- a/rpc/tests/block/sepoliaBlockTxs64159.json +++ /dev/null @@ -1,4628 +0,0 @@ -{ - "jsonrpc": "2.0", - "result": { - "status": "ACCEPTED_ON_L1", - "block_hash": "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964", - "parent_hash": "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5", - "block_number": 64159, - "new_root": "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0", - "timestamp": 1714901729, - "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "l1_gas_price": { - "price_in_fri": "0xdf0413d3c777", - "price_in_wei": "0x185f2d3eb5" - }, - "l1_data_gas_price": { - "price_in_fri": "0xa41c1219f8849", - "price_in_wei": "0x11ef315a9ab" - }, - "l1_da_mode": "BLOB", - "starknet_version": "0.13.1.1", - "transactions": [ - { - "transaction_hash": "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5b", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x4db15c20dfbd745d60d345f17c5e7f126f3e8d8b8db3af2defaf4b182203df", - "0x698845744536a2a4259aab10cfa49d10d9306c9cb719bf028ac5fed5bc6080a" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x246", - "0x53", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x5cb15a2f0e0", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x4933aba6e0", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x5c916d31e60", - "0x574254432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x56379b7f480", - "0x4254432f455552", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x2c60ee70", - "0x554e492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x80204b0", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663750c6", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5ca56ee7200", - "0x4254432f555344", - "0x0", - "0x0", - "0x663750cc", - "0x444546494c4c414d41", - "0x505241474d41", - "0x491318b940", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375095", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f54f4c", - "0x4441492f555344", - "0x0", - "0x0", - "0x663750c5", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344432f555344", - "0x0", - "0x0", - "0x66375088", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344542f555344", - "0x0", - "0x0", - "0x663750cc", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c94ab5e500", - "0x574254432f555344", - "0x0", - "0x0", - "0x663750cc", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f4cce6", - "0x574254432f425443", - "0x0", - "0x0", - "0x663750df", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551abfd640", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663750d3", - "0x444546494c4c414d41", - "0x505241474d41", - "0xca1e94", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663750e6", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5846c", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x663750e5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x663750c5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663750e7", - "0x444546494c4c414d41", - "0x505241474d41", - "0x45c5798", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x6637508a", - "0x444546494c4c414d41", - "0x505241474d41", - "0x27103a980", - "0x4450492f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x491c098ac0", - "0x4554482f555344", - "0xd9e2233df65960000", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5f4b570", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c897768", - "0x554e492f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x663752d3", - "0x4b55434f494e", - "0x505241474d41", - "0x5cafb70b400", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752ce", - "0x4b55434f494e", - "0x505241474d41", - "0x4926595000", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752ca", - "0x4b55434f494e", - "0x505241474d41", - "0xf4253", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x663752ae", - "0x4b55434f494e", - "0x505241474d41", - "0x2c5fb5f0", - "0x554e492f555344", - "0x0", - "0x0", - "0x663752b7", - "0x4b55434f494e", - "0x505241474d41", - "0x8016870", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x5cab7a367fe", - "0x4254432f555344", - "0x1e06f4d257ecaebe9df20b800", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x4925334828", - "0x4554482f555344", - "0x3214c57c904b810f49aa800", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x5f56210", - "0x4441492f555344", - "0x7e4afd54e6a4ad51000", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0xf4191", - "0x555344432f555344", - "0x3e41a3ccee09cc00", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x5ea2130", - "0x574254432f425443", - "0x0", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x2c5aef34", - "0x554e492f555344", - "0xc77502da41a59e97c800", - "0x0", - "0x663752d5", - "0x48554f4249", - "0x505241474d41", - "0x8028662", - "0x5354524b2f555344", - "0x29d90a1dcd3e1dae9e00", - "0x0", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0x5cb2136f8fd", - "0x4254432f555344", - "0x3317dd415e633a00000000", - "0x0", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x492f54f3a9", - "0x4554482f555344", - "0x1d68b02c3424cc00000000", - "0x0", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0xf41c3", - "0x555344432f555344", - "0x41b0ba79a5b0600", - "0x0", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0x2c5d3911", - "0x554e492f555344", - "0x246d4e811c7a5e000000", - "0x0", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0x8028662", - "0x5354524b2f555344", - "0x2b50a0595bd600000000", - "0x0", - "0x663752d2", - "0x4249545354414d50", - "0x505241474d41", - "0x5cb15aa9200", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752d3", - "0x4249545354414d50", - "0x505241474d41", - "0x491f6f4b00", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663752d2", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x663752d2", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x663752d3", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x663752d2", - "0x4249545354414d50", - "0x505241474d41", - "0x562676b0200", - "0x4254432f455552", - "0x0", - "0x0", - "0x663752d4", - "0x4249545354414d50", - "0x505241474d41", - "0x2c617b10", - "0x554e492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663752d5", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663752d4", - "0x535441524b4e4554", - "0x505241474d41", - "0x430677a", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5cb1dc9b3af", - "0x4254432f555344", - "0xeb56f34c978fd0", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x492bb9e912", - "0x4554482f555344", - "0x62656870346344", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4fd8c85ba348", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3b1be6c9ad87", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5c9c1ccc4a7", - "0x574254432f555344", - "0x796c529c6f0", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5633646a2a0", - "0x4254432f455552", - "0x2afd3d24ae4d", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x2c5ceaf4", - "0x554e492f555344", - "0x149867a0a27b9", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x80349ab", - "0x5354524b2f555344", - "0x1fcec6f2f8cc5", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x45ae58a", - "0x5a454e442f555344", - "0x3f531f57a5e", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x49171f4e8c", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0xf427e", - "0x555344542f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x574254432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x551a34ef44", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x25403d4d8", - "0x4450492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x494e444558434f4f50", - "0x505241474d41", - "0x2545b6bdd", - "0x4450492f555344", - "0x502aeca0740", - "0x0", - "0x663752d7", - "0x42494e414e4345", - "0x505241474d41", - "0x2553e2b89", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5c", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x605ff2c95ffae61e96ad5481b3ddf769757aa550db9059df16e55952ab4c2da", - "0x1beb5c085b6e5096c57895f6ce1e9269cdc3d2f7a944ae35ac9effc42af95ee" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x131", - "0x26", - "0x1", - "0x663752d4", - "0x42494e414e4345", - "0x505241474d41", - "0x6072a93afb6", - "0x4254432f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663752d4", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca44743880", - "0x4254432f555344", - "0x118686485c5984910000", - "0x0", - "0x1", - "0x663752d4", - "0x42494e414e4345", - "0x505241474d41", - "0x5cab2b8fb00", - "0x4254432f555344", - "0x1e34df95235227a0000", - "0x0", - "0x1", - "0x663752d4", - "0x42494e414e4345", - "0x505241474d41", - "0x5e1c7341476", - "0x4254432f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0xed2b58e2a", - "0x4254432f55534454", - "0x2d1821da35b7d73100", - "0x0", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0xf6e817a13", - "0x4254432f55534454", - "0x1350d69e5c0cc1c0", - "0x192327e7000", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0xf0effcb0f", - "0x4254432f55534454", - "0x277e234227d7cd00", - "0x1905ddbbc00", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x4c265e2090", - "0x4554482f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x49254afd9f", - "0x4554482f555344", - "0x883e9377eb162bb00", - "0x0", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x4923b001f0", - "0x4554482f555344", - "0x5a411357f980b0b000", - "0x0", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x4a3e3034b3", - "0x4554482f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663752d6", - "0x42494e414e4345", - "0x505241474d41", - "0xbe18f17f", - "0x4554482f55534454", - "0xb54a81af01dc00", - "0x1905ddbbc00", - "0x1", - "0x663752d6", - "0x42494e414e4345", - "0x505241474d41", - "0xc2f9c074", - "0x4554482f55534454", - "0x5cf8bb46d02800", - "0x192327e7000", - "0x1", - "0x663752d6", - "0x42494e414e4345", - "0x505241474d41", - "0xbb45eb82", - "0x4554482f55534454", - "0xe7e15df9c107bb00", - "0x0", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5db47c3f000", - "0x4254432f555344", - "0x1bc436074f8e01", - "0x1905ddbbc00", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5fb8073c180", - "0x4254432f555344", - "0xf9d290eecba37", - "0x192327e7000", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5d40ed44d00", - "0x4254432f555344", - "0x1ecb0482d8a70", - "0x18fcda9ac00", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x624b5483e80", - "0x4254432f555344", - "0x25516ce62a0e7", - "0x19407212400", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5cdda5d9280", - "0x4254432f555344", - "0x5368331ce0fc8", - "0x18f61842000", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5cfb8fda600", - "0x4254432f555344", - "0x229c882a03220", - "0x18f8590a400", - "0x1", - "0x663752d6", - "0x4f4b58", - "0x505241474d41", - "0xf02c9f7a0", - "0x4254432f55534454", - "0xc9b25aa2a2c", - "0x1905ddbbc00", - "0x1", - "0x663752d7", - "0x4f4b58", - "0x505241474d41", - "0xf6cfe13e0", - "0x4254432f55534454", - "0xc47328e90c4", - "0x192327e7000", - "0x1", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0xee8c27440", - "0x4254432f55534454", - "0x24a743d0318", - "0x18fcda9ac00", - "0x1", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0xfe5604100", - "0x4254432f55534454", - "0x19c84605960", - "0x19407212400", - "0x1", - "0x663752d6", - "0x4f4b58", - "0x505241474d41", - "0xed9b8a960", - "0x4254432f55534454", - "0x9615dbeb4c4", - "0x18f61842000", - "0x1", - "0x663752d6", - "0x4f4b58", - "0x505241474d41", - "0xee03f7fc0", - "0x4254432f55534454", - "0x34a194e22ff", - "0x18f8590a400", - "0x1", - "0x663752d8", - "0x4f4b58", - "0x505241474d41", - "0x4a144a6600", - "0x4554482f555344", - "0x70066a27bb5a0", - "0x1905ddbbc00", - "0x1", - "0x663752d8", - "0x4f4b58", - "0x505241474d41", - "0x4ba4d57600", - "0x4554482f555344", - "0x3eb44b4d6c260", - "0x192327e7000", - "0x1", - "0x663752d8", - "0x4f4b58", - "0x505241474d41", - "0x494dcea180", - "0x4554482f555344", - "0x37c2ffcd5c540", - "0x18f61842000", - "0x1", - "0x663752d8", - "0x4f4b58", - "0x505241474d41", - "0x4955cb4f00", - "0x4554482f555344", - "0x1a907c34de3df", - "0x18f8590a400", - "0x1", - "0x663752d9", - "0x4f4b58", - "0x505241474d41", - "0xbdc563f0", - "0x4554482f55534454", - "0x808fe02b9e4", - "0x1905ddbbc00", - "0x1", - "0x663752d9", - "0x4f4b58", - "0x505241474d41", - "0xc24cc0d0", - "0x4554482f55534454", - "0x2e86f16ef7c", - "0x192327e7000", - "0x1", - "0x663752d9", - "0x4f4b58", - "0x505241474d41", - "0xbb89cbd0", - "0x4554482f55534454", - "0x4487bc67970", - "0x18f61842000", - "0x1", - "0x663752d9", - "0x4f4b58", - "0x505241474d41", - "0xbbb0b4c0", - "0x4554482f55534454", - "0x2b742abf39f", - "0x18f8590a400", - "0x1", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5cb1ba07300", - "0x4254432f555344", - "0xa8ae41b3d818c80000", - "0x0", - "0x1", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0xed3ea74a0", - "0x4254432f55534454", - "0x12f33035f69b20", - "0x0", - "0x1", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x49234f1d40", - "0x4554482f555344", - "0x17a3dd3899337d000", - "0x0", - "0x1", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0xbb2cb7b0", - "0x4554482f55534454", - "0x42186eabcfd7c", - "0x0" - ] - }, - { - "transaction_hash": "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x32", - "max_fee": "0x4b5b075cca932", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x14c577c4dcbe6857e4d097fb0770289820019d4d67819501e813bd0daf0a540", - "0x4bfe882403bb9adad0fafdf740df449311ce47c7e79bcb94ba09ee366e432df" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x6c6d617ab2d657532de8fe2648428fc912dbc5cfea7ba7440d23e1387e3d8b", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x1eba00000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5d", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x6fc52a609784800f3aa0848121b9d328568e4c518a0a80cc51913716be863ed", - "0x52eda1b2ad692dc861089dff441a760740e0d1ff4688682e0a0980fb07c3acd" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x246", - "0x53", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x5cacdd019a0", - "0x4254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x49294c9f60", - "0x4554482f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x5c8faf5a280", - "0x574254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x562fe09f7c0", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x2c627510", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x8038b50", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637520f", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5cad419e700", - "0x4254432f555344", - "0x0", - "0x0", - "0x663751fa", - "0x444546494c4c414d41", - "0x505241474d41", - "0x49190e9a40", - "0x4554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5814c", - "0x4441492f555344", - "0x0", - "0x0", - "0x663751fe", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344432f555344", - "0x0", - "0x0", - "0x663751b4", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c82c9bb500", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f325c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x663751e5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551ba4b800", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0xcaafe4", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637531d", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5e100", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375339", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x663751f8", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375338", - "0x444546494c4c414d41", - "0x505241474d41", - "0x464b500", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375310", - "0x444546494c4c414d41", - "0x505241474d41", - "0x26f2aa3c0", - "0x4450492f555344", - "0x0", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x6637537d", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x491c098ac0", - "0x4554482f555344", - "0xd9e2233df65960000", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5f5e100", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5f4b570", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c897768", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x66375375", - "0x4b55434f494e", - "0x505241474d41", - "0x5caef84f200", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375379", - "0x4b55434f494e", - "0x505241474d41", - "0x492a1a9dc0", - "0x4554482f555344", - "0x0", - "0x0", - "0x6637536f", - "0x4b55434f494e", - "0x505241474d41", - "0xf424a", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637530d", - "0x4b55434f494e", - "0x505241474d41", - "0x2c5a10a0", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637534b", - "0x4b55434f494e", - "0x505241474d41", - "0x802c800", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x5ca78865e45", - "0x4254432f555344", - "0x1e073d4339087b8544de91900", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x49246cf141", - "0x4554482f555344", - "0x322097b0742185696c0dd00", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x5f56210", - "0x4441492f555344", - "0x7e6acfb874eaeba7000", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x5ea2130", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x2c6080ce", - "0x554e492f555344", - "0xc7a83b0e7d53c1bc6000", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x804478b", - "0x5354524b2f555344", - "0x29e22bcf5ef7ba6be500", - "0x0", - "0x6637537b", - "0x4f4b58", - "0x505241474d41", - "0x5caabceea48", - "0x4254432f555344", - "0x3310afa265fea000000000", - "0x0", - "0x6637537b", - "0x4f4b58", - "0x505241474d41", - "0x492645e7de", - "0x4554482f555344", - "0x1d661b252653ad00000000", - "0x0", - "0x6637537a", - "0x4f4b58", - "0x505241474d41", - "0xf41c3", - "0x555344432f555344", - "0x41c49f02452e080", - "0x0", - "0x6637537a", - "0x4f4b58", - "0x505241474d41", - "0x2c5ebfa5", - "0x554e492f555344", - "0x24671f409590fa000000", - "0x0", - "0x6637537a", - "0x4f4b58", - "0x505241474d41", - "0x803bed8", - "0x5354524b2f555344", - "0x2b4f26a557053c000000", - "0x0", - "0x66375378", - "0x4249545354414d50", - "0x505241474d41", - "0x5cb3f63b900", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375378", - "0x4249545354414d50", - "0x505241474d41", - "0x492302d200", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375378", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66375379", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x66375378", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375379", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x66375379", - "0x4249545354414d50", - "0x505241474d41", - "0x56291242900", - "0x4254432f455552", - "0x0", - "0x0", - "0x66375377", - "0x4249545354414d50", - "0x505241474d41", - "0x2c6714a8", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637537b", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637537b", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637537b", - "0x535441524b4e4554", - "0x505241474d41", - "0x430677a", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x5cabc867876", - "0x4254432f555344", - "0xeb4b7968bdfcd8", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x49220309e7", - "0x4554482f555344", - "0x6275e47ad2d734", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4ff00e2ba109", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3b1ac7862f12", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x5c9aabc5ad8", - "0x574254432f555344", - "0x7745201c165", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x56344bae440", - "0x4254432f455552", - "0x2ae33791bd5e", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x2c5fbd85", - "0x554e492f555344", - "0x149905a590614", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x8040cf5", - "0x5354524b2f555344", - "0x1fd439accefa4", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x45af912", - "0x5a454e442f555344", - "0x3f710285042", - "0x0", - "0x6637537a", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x4917199e4c", - "0x4554482f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0xf427e", - "0x555344542f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x574254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x551ab282ec", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x25403d4d8", - "0x4450492f555344", - "0x0", - "0x0", - "0x6637537c", - "0x494e444558434f4f50", - "0x505241474d41", - "0x254b3cdaf", - "0x4450492f555344", - "0x4ff69c4fbde", - "0x0", - "0x6637537d", - "0x42494e414e4345", - "0x505241474d41", - "0x25560c033", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x33", - "max_fee": "0x1bad55a98e1c1", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x3fd4d5bc46ca2a9b30073178c06fc5b4298e1ac6cc568dc40afeb808b3ad9f6", - "0x44901ac2ce0e794578e2df07e4d9c40fa247de2bd5002cb0d13afd88dcc11af" - ], - "calldata": [ - "0x1", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x6", - "0x5265706f73736573734275696c64696e67", - "0x4", - "0x5", - "0x1b48", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x9a6", - "max_fee": "0x7bee46410b33b", - "sender_address": "0x788722c9ffad95d40738a65d733135c03c9b169505d34fb4dc32b5fe8bcc113", - "signature": [ - "0x4c02fc283807264be825c8c0e58215703564d9f81ceb63ff6074cde42605536", - "0xab864400abe211c9590ea3873666db371a8e07439b29b4f99aeccdff5cc408" - ], - "calldata": [ - "0x2", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x5", - "0x5265736f6c766552616e646f6d4576656e74", - "0x3", - "0x0", - "0x1", - "0xead", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x6", - "0x5265636569766544656c6976657279", - "0x4", - "0x9", - "0x14cb0", - "0x1", - "0xead" - ] - }, - { - "transaction_hash": "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x34", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x57fb1e1d6de3c6610001f798a415af1ee1ede9acdd410fe8a2320056f275c2a", - "0x75a3762f19db243125fdf04ce1aa051c66b5d8cb2752af099da977f43ef795f" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x738061707d1ba5a73ca4419bd49f470d3eb5860cef23dc1d91212646e57d161", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x4300000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x76", - "max_fee": "0x18bfe6fa45de5", - "sender_address": "0x682e5c40cbf3c1c008d615d3d02ecccf859b37f888ef1d4b694d5b8da38f808", - "signature": [ - "0x75726195a9d84eb19825d3e8119ab1929f6e586654c8e27cb03e27528ee0ec5", - "0x4bcb815945933bd90c1b53f8c1df6de34f4bca14325ef796d80792bbddd4e3c" - ], - "calldata": [ - "0x1", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "0x3", - "0x3aa8a8337ac33d85a6677ca2212a58dbabeb6888decb48a8dd152521adb0a5e", - "0x6f05b59d3b20000", - "0x0" - ] - }, - { - "transaction_hash": "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5e", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x3e52c022d30c2f70d677901da82141c034f763a59ce6650c61d32855475344f", - "0x316d21bc3061f59c26642339e01d25ce0e6e6f254747e4bd1d2f1b7aa1df43d" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x238", - "0x51", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca674afba0", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x491f2aa0e0", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5c8f715d040", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x562b6f5dca0", - "0x4254432f455552", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x2c5f67d0", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x8038b50", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637520f", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5cad419e700", - "0x4254432f555344", - "0x0", - "0x0", - "0x663751fa", - "0x444546494c4c414d41", - "0x505241474d41", - "0x49190e9a40", - "0x4554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5814c", - "0x4441492f555344", - "0x0", - "0x0", - "0x663751fe", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344432f555344", - "0x0", - "0x0", - "0x663751b4", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c82c9bb500", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f325c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x663751e5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551ba4b800", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0xcaafe4", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637531d", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5e100", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375339", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x663751f8", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375338", - "0x444546494c4c414d41", - "0x505241474d41", - "0x464b500", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375310", - "0x444546494c4c414d41", - "0x505241474d41", - "0x26f2aa3c0", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x491c098ac0", - "0x4554482f555344", - "0xd9e2233df65960000", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c897768", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753b5", - "0x4b55434f494e", - "0x505241474d41", - "0x5ca67065180", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b5", - "0x4b55434f494e", - "0x505241474d41", - "0x491f9d11c0", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753a8", - "0x4b55434f494e", - "0x505241474d41", - "0xf4253", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637537a", - "0x4b55434f494e", - "0x505241474d41", - "0x2c60c760", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637534b", - "0x4b55434f494e", - "0x505241474d41", - "0x802c800", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x5ca2b497301", - "0x4254432f555344", - "0x1e0598dbf5b7a0ce2c162ac00", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x491b564495", - "0x4554482f555344", - "0x321ce01d2debf04b547ad00", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x7e636d4c86e6b857000", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0xf4191", - "0x555344432f555344", - "0x3e42e2fa2f239dc0", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x5ea9660", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x2c5c9cd6", - "0x554e492f555344", - "0xc78c66f13a84a6d8f600", - "0x0", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5ca631984e9", - "0x4254432f555344", - "0x330d354cdd3ce400000000", - "0x0", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x491c337e21", - "0x4554482f555344", - "0x1d61d10dbbdd5f00000000", - "0x0", - "0x663753b4", - "0x4f4b58", - "0x505241474d41", - "0xf41c3", - "0x555344432f555344", - "0x41c37c01c709980", - "0x0", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0x2c5bb27e", - "0x554e492f555344", - "0x24601581819082000000", - "0x0", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x80397c9", - "0x5354524b2f555344", - "0x2b41b84ca9c5da000000", - "0x0", - "0x663753b5", - "0x4249545354414d50", - "0x505241474d41", - "0x5cafdd30e00", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b6", - "0x4249545354414d50", - "0x505241474d41", - "0x492302d200", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753b6", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753b6", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x663753b7", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x663753b5", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753b7", - "0x4249545354414d50", - "0x505241474d41", - "0x562499d9d00", - "0x4254432f455552", - "0x0", - "0x0", - "0x663753b6", - "0x4249545354414d50", - "0x505241474d41", - "0x2c6714a8", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663753b8", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663753b8", - "0x535441524b4e4554", - "0x505241474d41", - "0x430677a", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5ca6dad9da0", - "0x4254432f555344", - "0xeb5b0c136256b8", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x4918a7b54d", - "0x4554482f555344", - "0x6269b77b9cc298", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4ff0079dcaa7", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3b08d76ab1d1", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5c985a2f223", - "0x574254432f555344", - "0x7756c918be7", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x562d9ae1b40", - "0x4254432f455552", - "0x2adddb21da5c", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x2c5c1423", - "0x554e492f555344", - "0x14974a35cdbac", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x80349ab", - "0x5354524b2f555344", - "0x1fd149a8c3774", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x4584d90", - "0x5a454e442f555344", - "0x3f75543491b", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x491719a810", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753b9", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0xf427e", - "0x555344542f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x551f3408e0", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x25403d4d8", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753ba", - "0x494e444558434f4f50", - "0x505241474d41", - "0x254bee0f3", - "0x4450492f555344", - "0x4ff65da76b1", - "0x0", - "0x663753bd", - "0x42494e414e4345", - "0x505241474d41", - "0x25535d2a1", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5f", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x3d50997904c49fe06a6e3fffc73a7a03d5f00dc69ab7649255f425c927faaaa", - "0x4ae8019d94da76d3af01ed39d55ce9c069905de4324fc56f5c2e11f679a4baf" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x131", - "0x26", - "0x1", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca273f6a00", - "0x4254432f555344", - "0x1e32082a190864c0000", - "0x0", - "0x1", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x606a16b8bd3", - "0x4254432f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5c9bb0d9b26", - "0x4254432f555344", - "0x1184e665e4ffbaa7cc00", - "0x0", - "0x1", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5e1459a3c18", - "0x4254432f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0xf0d7efb7b", - "0x4254432f55534454", - "0x285fe1bc1b6f25c0", - "0x1905ddbbc00", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0xed13b041c", - "0x4254432f55534454", - "0x2d0e55b55b365dfc00", - "0x0", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0xf6d2251db", - "0x4254432f55534454", - "0x134f1f137bd26bc0", - "0x192327e7000", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0x4a2f863561", - "0x4554482f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0x49149ad136", - "0x4554482f555344", - "0x5a2e76a01e557e6e00", - "0x0", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0x4c1d366f5c", - "0x4554482f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0x491a1df35e", - "0x4554482f555344", - "0x8829c25db594a1600", - "0x0", - "0x1", - "0x663753ba", - "0x42494e414e4345", - "0x505241474d41", - "0xbdea2ab5", - "0x4554482f55534454", - "0xb51de5a2857400", - "0x1905ddbbc00", - "0x1", - "0x663753ba", - "0x42494e414e4345", - "0x505241474d41", - "0xc2da0254", - "0x4554482f55534454", - "0x5ce9987031e800", - "0x192327e7000", - "0x1", - "0x663753ba", - "0x42494e414e4345", - "0x505241474d41", - "0xbb15e496", - "0x4554482f55534454", - "0xe7dda7fa30df2080", - "0x0", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5dac8362100", - "0x4254432f555344", - "0x1bc1cf3e36edf0", - "0x1905ddbbc00", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5fb3db1e980", - "0x4254432f555344", - "0xf9a60bf1a7948", - "0x192327e7000", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5d40ed44d00", - "0x4254432f555344", - "0x1ecb0482d8a70", - "0x18fcda9ac00", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x624b5483e80", - "0x4254432f555344", - "0x2552015cdbadf", - "0x19407212400", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5cdda5d9280", - "0x4254432f555344", - "0x53627aa7f6388", - "0x18f61842000", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5cfb8fda600", - "0x4254432f555344", - "0x229b82532e8e0", - "0x18f8590a400", - "0x1", - "0x663753ba", - "0x4f4b58", - "0x505241474d41", - "0xf02c9f7a0", - "0x4254432f55534454", - "0xc97e79f4ecc", - "0x1905ddbbc00", - "0x1", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0xf6bd60ea0", - "0x4254432f55534454", - "0xc453e6f40c0", - "0x192327e7000", - "0x1", - "0x663753ba", - "0x4f4b58", - "0x505241474d41", - "0xee869f400", - "0x4254432f55534454", - "0x24ba366fd00", - "0x18fcda9ac00", - "0x1", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0xfe4c9311f", - "0x4254432f55534454", - "0x198bcf7966a", - "0x19407212400", - "0x1", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0xed9b8a960", - "0x4254432f55534454", - "0x9606e3c8b60", - "0x18f61842000", - "0x1", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0xee03f7fc0", - "0x4254432f55534454", - "0x3492962b658", - "0x18f8590a400", - "0x1", - "0x663753bc", - "0x4f4b58", - "0x505241474d41", - "0x4a0535ecc0", - "0x4554482f555344", - "0x6fed10b96f758", - "0x1905ddbbc00", - "0x1", - "0x663753bc", - "0x4f4b58", - "0x505241474d41", - "0x4b91c2a600", - "0x4554482f555344", - "0x3eaa9abf8a95f", - "0x192327e7000", - "0x1", - "0x663753ba", - "0x4f4b58", - "0x505241474d41", - "0x493fbd8e80", - "0x4554482f555344", - "0x37bf83124e79f", - "0x18f61842000", - "0x1", - "0x663753bb", - "0x4f4b58", - "0x505241474d41", - "0x4955cb4f00", - "0x4554482f555344", - "0x1a907c34de3df", - "0x18f8590a400", - "0x1", - "0x663753bb", - "0x4f4b58", - "0x505241474d41", - "0xbd84b170", - "0x4554482f55534454", - "0x805d8800b20", - "0x1905ddbbc00", - "0x1", - "0x663753bb", - "0x4f4b58", - "0x505241474d41", - "0xc235b660", - "0x4554482f55534454", - "0x2e81e949068", - "0x192327e7000", - "0x1", - "0x663753be", - "0x4f4b58", - "0x505241474d41", - "0xbb6776c0", - "0x4554482f55534454", - "0x4477353a3e0", - "0x18f61842000", - "0x1", - "0x663753b4", - "0x4f4b58", - "0x505241474d41", - "0xbbb0b4c0", - "0x4554482f55534454", - "0x2b742abf39f", - "0x18f8590a400", - "0x1", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5ca7daca880", - "0x4254432f555344", - "0xa891a2123920900000", - "0x0", - "0x1", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0xed2084720", - "0x4254432f55534454", - "0x12f067c1ee213b", - "0x0", - "0x1", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x4918483d00", - "0x4554482f555344", - "0x17a3401551876d000", - "0x0", - "0x1", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0xbb111960", - "0x4554482f55534454", - "0x4226da64cfda7", - "0x0" - ] - }, - { - "transaction_hash": "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x35", - "max_fee": "0x1bad55a98e1c1", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x6bd997de8e01fb712c4c53a57883ce6246eec6ffb60519e021c89d0830bf19", - "0x7e9d72cdaacdceacbb584cfc792947fb235023555ff228bc8b656d6c2434002" - ], - "calldata": [ - "0x1", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x6", - "0x5265706f73736573734275696c64696e67", - "0x4", - "0x5", - "0x9cd", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", - "type": "INVOKE", - "version": "0x3", - "nonce": "0x5", - "sender_address": "0x1bef1d205c047ee5d24ed873f1fa8c6c6cc37d0d3808266e2fe9a64b6ff9474", - "signature": [ - "0x61d74b8b1a72be739b8e62e579975e05f6185ab11f5d24ad23873e923c079ab", - "0x5d69947a53907d0113a5e9713afbfd03d286771995fb4b92f059b614a7df6ac" - ], - "calldata": [ - "0x1", - "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", - "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", - "0x5", - "0x47b774d6ee3573805f590bc556f500022d6d8f2b01a741239ff93ca22e6dddb", - "0x7e3c89140da097d5e30b51d617ea9ed4e8bbb0a9172e8a9359910d43dba9daa", - "0x1", - "0x1", - "0x3" - ], - "resource_bounds": { - "l1_gas": { - "max_amount": "0x1aa6", - "max_price_per_unit": "0x14e861dbd4065" - }, - "l2_gas": { - "max_amount": "0x0", - "max_price_per_unit": "0x0" - } - }, - "tip": "0x0", - "paymaster_data": [], - "account_deployment_data": [], - "nonce_data_availability_mode": "L1", - "fee_data_availability_mode": "L1" - }, - { - "transaction_hash": "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b60", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0xbb14f68cc2b09ef26c6519378ce709b12b2f4848a58476b3d4a83a9ea53e2b", - "0x3fa506dd6617ffa68628473ef4aa1d5d3c5bac2603294b450b2bacd93de5fb2" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x215", - "0x4c", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5cacdd019a0", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x4927645760", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5c8f4c2b880", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x56319c14e00", - "0x4254432f455552", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x2c627510", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x8038b50", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637520f", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5cad419e700", - "0x4254432f555344", - "0x0", - "0x0", - "0x663751fa", - "0x444546494c4c414d41", - "0x505241474d41", - "0x49190e9a40", - "0x4554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5814c", - "0x4441492f555344", - "0x0", - "0x0", - "0x663751fe", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344432f555344", - "0x0", - "0x0", - "0x663751b4", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c82c9bb500", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f325c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x663751e5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551ba4b800", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0xcaafe4", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637531d", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5e100", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375339", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x663751f8", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375338", - "0x444546494c4c414d41", - "0x505241474d41", - "0x464b500", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375310", - "0x444546494c4c414d41", - "0x505241474d41", - "0x26f2aa3c0", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c899bd1", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753f3", - "0x4b55434f494e", - "0x505241474d41", - "0x5cadf6d1280", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f5", - "0x4b55434f494e", - "0x505241474d41", - "0x4927e60a80", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753ed", - "0x4b55434f494e", - "0x505241474d41", - "0xf4253", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637537a", - "0x4b55434f494e", - "0x505241474d41", - "0x2c60c760", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753ec", - "0x4b55434f494e", - "0x505241474d41", - "0x803d970", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x5ca78865e45", - "0x4254432f555344", - "0x1e0713252483d0bb17b81bb00", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x4923fa840a", - "0x4554482f555344", - "0x322e2a71a8fa4214c083200", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0xf4191", - "0x555344432f555344", - "0x3e42e2fa2f239dc0", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x5ea2130", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x2c600ba2", - "0x554e492f555344", - "0xc7984bc76ed7e5188400", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x8046e9a", - "0x5354524b2f555344", - "0x29dcb94040e873c2be00", - "0x0", - "0x663753f6", - "0x4f4b58", - "0x505241474d41", - "0x5cad455984a", - "0x4254432f555344", - "0x330e62d5920cfe00000000", - "0x0", - "0x663753f5", - "0x4f4b58", - "0x505241474d41", - "0x4925610d71", - "0x4554482f555344", - "0x1d6650b66c35b200000000", - "0x0", - "0x663753f2", - "0x4f4b58", - "0x505241474d41", - "0xf41c3", - "0x555344432f555344", - "0x41bc187e931cc00", - "0x0", - "0x663753f4", - "0x4f4b58", - "0x505241474d41", - "0x2c61cccc", - "0x554e492f555344", - "0x24650515e37f30000000", - "0x0", - "0x663753f4", - "0x4f4b58", - "0x505241474d41", - "0x80349ab", - "0x5354524b2f555344", - "0x2b3748b2407dd2000000", - "0x0", - "0x663753f3", - "0x4249545354414d50", - "0x505241474d41", - "0x5cafdd30e00", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0x492302d200", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x663753f5", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753f3", - "0x4249545354414d50", - "0x505241474d41", - "0x56261752100", - "0x4254432f455552", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0x2c6714a8", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663753f6", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663753f6", - "0x535441524b4e4554", - "0x505241474d41", - "0x424e9bc", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5cad6de032b", - "0x4254432f555344", - "0xeb69d7e377f2b0", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x492179ba0c", - "0x4554482f555344", - "0x62717719716b88", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4fe1f98f8b33", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3afc7f8ccdae", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5c9872f9ff1", - "0x574254432f555344", - "0x7756e90cbef", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x563555476e0", - "0x4254432f455552", - "0x2ae1b339642a", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x2c5e9896", - "0x554e492f555344", - "0x1498755a1f8f5", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x80349ab", - "0x5354524b2f555344", - "0x1fd318cd32464", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x4584d90", - "0x5a454e442f555344", - "0x3f6e8a3b60b", - "0x0", - "0x663753f6", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x4916f9f600", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753f6", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753f7", - "0x494e444558434f4f50", - "0x505241474d41", - "0x254d1535e", - "0x4450492f555344", - "0x4ff9749858f", - "0x0", - "0x663753fa", - "0x42494e414e4345", - "0x505241474d41", - "0x2557f1f20", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b61", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x31d41de7f6ecf88bd1b4c4e06fd6f8465bc537f5e0d41991448558c2fcdabc7", - "0x29514feef0d8b315207f99773fa60bf2f4559e4acdcc20fbfc576be0c364962" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x131", - "0x26", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x6070411dec2", - "0x4254432f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca23abe300", - "0x4254432f555344", - "0x1186230e753b64860000", - "0x0", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca869d7a00", - "0x4254432f555344", - "0x1e33f98b5b24f2c0000", - "0x0", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5e1a9aab622", - "0x4254432f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0xed246d6c0", - "0x4254432f55534454", - "0x2d0a72d7e8e9434000", - "0x0", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0xf6e1ee611", - "0x4254432f55534454", - "0x13505b3a82bae340", - "0x192327e7000", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0xf0e7f25a9", - "0x4254432f55534454", - "0x277cd1dee1875b00", - "0x1905ddbbc00", - "0x1", - "0x663753f7", - "0x42494e414e4345", - "0x505241474d41", - "0x4c252edece", - "0x4554482f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663753f7", - "0x42494e414e4345", - "0x505241474d41", - "0x49209135c0", - "0x4554482f555344", - "0x8835c613814f4c000", - "0x0", - "0x1", - "0x663753f7", - "0x42494e414e4345", - "0x505241474d41", - "0x491da58780", - "0x4554482f555344", - "0x5a399efc591c5d8000", - "0x0", - "0x1", - "0x663753f7", - "0x42494e414e4345", - "0x505241474d41", - "0x4a360bab9a", - "0x4554482f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663753f8", - "0x42494e414e4345", - "0x505241474d41", - "0xc2ee91cb", - "0x4554482f55534454", - "0x5cf36640fe4600", - "0x192327e7000", - "0x1", - "0x663753f8", - "0x42494e414e4345", - "0x505241474d41", - "0xbdfaff27", - "0x4554482f55534454", - "0xb52df27d0d7c00", - "0x1905ddbbc00", - "0x1", - "0x663753f8", - "0x42494e414e4345", - "0x505241474d41", - "0xbb2d53f0", - "0x4554482f55534454", - "0xe7fab3519a367400", - "0x0", - "0x1", - "0x663753f5", - "0x4f4b58", - "0x505241474d41", - "0x5dadab05a80", - "0x4254432f555344", - "0x1bc1e98adebe70", - "0x1905ddbbc00", - "0x1", - "0x663753f5", - "0x4f4b58", - "0x505241474d41", - "0x5fb149158ff", - "0x4254432f555344", - "0xf9a05b12626b4", - "0x192327e7000", - "0x1", - "0x663753f3", - "0x4f4b58", - "0x505241474d41", - "0x5d40ed44d00", - "0x4254432f555344", - "0x1ecb0482d8a70", - "0x18fcda9ac00", - "0x1", - "0x663753f0", - "0x4f4b58", - "0x505241474d41", - "0x624b5483e80", - "0x4254432f555344", - "0x2552015cdbadf", - "0x19407212400", - "0x1", - "0x663753f5", - "0x4f4b58", - "0x505241474d41", - "0x5cdda5d9280", - "0x4254432f555344", - "0x53627aa7f6388", - "0x18f61842000", - "0x1", - "0x663753f3", - "0x4f4b58", - "0x505241474d41", - "0x5cfb8fda600", - "0x4254432f555344", - "0x229b82532e8e0", - "0x18f8590a400", - "0x1", - "0x663753f8", - "0x4f4b58", - "0x505241474d41", - "0xf01a80ce0", - "0x4254432f55534454", - "0xc994403025c", - "0x1905ddbbc00", - "0x1", - "0x663753f8", - "0x4f4b58", - "0x505241474d41", - "0xf6bd60ea0", - "0x4254432f55534454", - "0xc4532975094", - "0x192327e7000", - "0x1", - "0x663753f7", - "0x4f4b58", - "0x505241474d41", - "0xee869f400", - "0x4254432f55534454", - "0x24ba366fd00", - "0x18fcda9ac00", - "0x1", - "0x663753f8", - "0x4f4b58", - "0x505241474d41", - "0xfe4c9311f", - "0x4254432f55534454", - "0x19767306a5a", - "0x19407212400", - "0x1", - "0x663753f7", - "0x4f4b58", - "0x505241474d41", - "0xed9b8a960", - "0x4254432f55534454", - "0x9606e3c8b60", - "0x18f61842000", - "0x1", - "0x663753f7", - "0x4f4b58", - "0x505241474d41", - "0xee03f7fc0", - "0x4254432f55534454", - "0x3492962b658", - "0x18f8590a400", - "0x1", - "0x663753f9", - "0x4f4b58", - "0x505241474d41", - "0x4a0d8e27c0", - "0x4554482f555344", - "0x6ffb85a7780e3", - "0x1905ddbbc00", - "0x1", - "0x663753f9", - "0x4f4b58", - "0x505241474d41", - "0x4b91c2a600", - "0x4554482f555344", - "0x3eaa8ba263a7f", - "0x192327e7000", - "0x1", - "0x663753fa", - "0x4f4b58", - "0x505241474d41", - "0x493fbd8e80", - "0x4554482f555344", - "0x37bf83124e79f", - "0x18f61842000", - "0x1", - "0x663753f9", - "0x4f4b58", - "0x505241474d41", - "0x4955cb4f00", - "0x4554482f555344", - "0x1a907c34de3df", - "0x18f8590a400", - "0x1", - "0x663753fb", - "0x4f4b58", - "0x505241474d41", - "0xbd941ac0", - "0x4554482f55534454", - "0x8069fbe97b0", - "0x1905ddbbc00", - "0x1", - "0x663753f8", - "0x4f4b58", - "0x505241474d41", - "0xc2421270", - "0x4554482f55534454", - "0x2e84fe10b5f", - "0x192327e7000", - "0x1", - "0x663753f9", - "0x4f4b58", - "0x505241474d41", - "0xbb722520", - "0x4554482f55534454", - "0x447e27f8720", - "0x18f61842000", - "0x1", - "0x663753fb", - "0x4f4b58", - "0x505241474d41", - "0xbbb0b4c0", - "0x4554482f55534454", - "0x2b742abf39f", - "0x18f8590a400", - "0x1", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5caaa60c000", - "0x4254432f555344", - "0xa89278340a1db80000", - "0x0", - "0x1", - "0x663753f5", - "0x4259424954", - "0x505241474d41", - "0xed32290c0", - "0x4254432f55534454", - "0x12f116f27aafc7", - "0x0", - "0x1", - "0x663753f5", - "0x4259424954", - "0x505241474d41", - "0x491b8f78c0", - "0x4554482f555344", - "0x17a3d48e0b9e87000", - "0x0", - "0x1", - "0x663753f5", - "0x4259424954", - "0x505241474d41", - "0xbb2871f0", - "0x4554482f55534454", - "0x422ef453ced0c", - "0x0" - ] - }, - { - "transaction_hash": "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x36", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x310c8db8723e82a5fa8a67be11ec0e278d5c7b07c740c8056d57b828ca01b71", - "0x21a882f6e43760d7bd37537d9dc32d77b30089e4b8d91879417f9e9602e981e" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x3e93ff1b03257b5f1c64d855faa0c05c455009646d29ffdb3a1d9539eefe5cc", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x20aef00000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x37", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x201c65a2165307bc5b701cbc47c72a0acb57e2e8d35f08e49af745fb1324baf", - "0x309af65acd47084a3d50102d57fde61bae96971928954a1e112b0391667f45f" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0xa6ae2db8bdba1315c709191512215b41d5616adc09d1b8ad9ee28dadd5c39f", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x212a500000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x38", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x2d350d6649616cba65f1c1822ac1c63a05f0f8fd6898a198cfd12fe332b5203", - "0x3f3cc80bcb01d1b02e32c58ab2202417398fa14d6b0ec2fd6d21f589eadc332" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x787bab7274e19042fdaf5adc8c42d564fe74232cf82cdcc971ca78fd240a577", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x20eca00000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x39", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x38b2ee98be328d5ac9fdec64bb4653f157bd48616e4aab9ebb0b65b2a628296", - "0x73d9091938d27d703be698e1a609e89147190b5f7fe986cb6b1b2b4a4dcc117" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x1455f27ec8855f53e4e41e8e0de0429aa788e17b3506281ed984c62d9c71f27", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x204b200000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b62", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x50b1559e426ec214c16e539afdeecf06b0f5ce92b4079cc81a5eb0329f5ba8f", - "0x3c7dce0695b70fdecd47deac06f2cecabbc4d7ae9e37074883a7ad708d68dc0" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x23f", - "0x52", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca56f61320", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x4927bfe4e0", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x5c8f267ffa0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x5627ea24e60", - "0x4254432f455552", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x2c61b1c0", - "0x554e492f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x8038b50", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375334", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5ca987f1d00", - "0x4254432f555344", - "0x0", - "0x0", - "0x6637531c", - "0x444546494c4c414d41", - "0x505241474d41", - "0x49155c8ec0", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752e3", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f56270", - "0x4441492f555344", - "0x0", - "0x0", - "0x6637531c", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf416a", - "0x555344432f555344", - "0x0", - "0x0", - "0x663752dc", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf41bb", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375335", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c8c19eae00", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375335", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f3fc60", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637530b", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551801eec0", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66375298", - "0x444546494c4c414d41", - "0x505241474d41", - "0xca7bf0", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637531d", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5e100", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375339", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637532b", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375338", - "0x444546494c4c414d41", - "0x505241474d41", - "0x464b500", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375310", - "0x444546494c4c414d41", - "0x505241474d41", - "0x26f2aa3c0", - "0x4450492f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x491c098ac0", - "0x4554482f555344", - "0xd9e2233df65960000", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5f4b570", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c899bd1", - "0x554e492f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375433", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x66375430", - "0x4b55434f494e", - "0x505241474d41", - "0x5ca6ec5f600", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375430", - "0x4b55434f494e", - "0x505241474d41", - "0x4925282300", - "0x4554482f555344", - "0x0", - "0x0", - "0x6637541f", - "0x4b55434f494e", - "0x505241474d41", - "0xf4253", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637537a", - "0x4b55434f494e", - "0x505241474d41", - "0x2c60c760", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753ec", - "0x4b55434f494e", - "0x505241474d41", - "0x803d970", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x5c9f62f9142", - "0x4254432f555344", - "0x1e047088dae1651a3e77ee400", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x492409c5cd", - "0x4554482f555344", - "0x32348c22440a49e0cddd800", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x5f56210", - "0x4441492f555344", - "0x7e4e2787f52456be000", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0xf4191", - "0x555344432f555344", - "0x3e4292f4ac4f77c0", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x5ea2130", - "0x574254432f425443", - "0x0", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x8046e9a", - "0x5354524b2f555344", - "0x29d34f2f7e89628eb800", - "0x0", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5ca42eacd8c", - "0x4254432f555344", - "0x330a0731e423ca00000000", - "0x0", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x4926646b65", - "0x4554482f555344", - "0x1d67be2c5a036f00000000", - "0x0", - "0x66375433", - "0x4f4b58", - "0x505241474d41", - "0xf415f", - "0x555344432f555344", - "0x41c80d50af7a000", - "0x0", - "0x6637542e", - "0x4f4b58", - "0x505241474d41", - "0x2c604638", - "0x554e492f555344", - "0x2461129d5e39c0000000", - "0x0", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x8040cf5", - "0x5354524b2f555344", - "0x2b2fd209d931a0000000", - "0x0", - "0x6637542f", - "0x4249545354414d50", - "0x505241474d41", - "0x5cb45599a00", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375430", - "0x4249545354414d50", - "0x505241474d41", - "0x492302d200", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375430", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66375431", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x66375431", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375430", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x66375431", - "0x4249545354414d50", - "0x505241474d41", - "0x562794ca500", - "0x4254432f455552", - "0x0", - "0x0", - "0x66375430", - "0x4249545354414d50", - "0x505241474d41", - "0x2c6714a8", - "0x554e492f555344", - "0x0", - "0x0", - "0x66375433", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66375433", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375433", - "0x535441524b4e4554", - "0x505241474d41", - "0x424e9bc", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x5ca45827a30", - "0x4254432f555344", - "0xeb56584a892858", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x49228c59c2", - "0x4554482f555344", - "0x62706f56fcf3a0", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4fe1a08b75f2", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3af543c9131a", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x5c9888e8877", - "0x574254432f555344", - "0x75db15a09c3", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x563093e9ec0", - "0x4254432f455552", - "0x2ac8338d1b4f", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x2c5d6020", - "0x554e492f555344", - "0x1495bd926ffd3", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x804d03f", - "0x5354524b2f555344", - "0x1fcc1a9855ced", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x4570192", - "0x5a454e442f555344", - "0x3f4b7d786aa", - "0x0", - "0x66375432", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375433", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x4916f9f790", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375432", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x66375433", - "0x50524f50454c4c4552", - "0x505241474d41", - "0xf427e", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375432", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375433", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x552806cb74", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66375432", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x25403d4d8", - "0x4450492f555344", - "0x0", - "0x0", - "0x66375433", - "0x494e444558434f4f50", - "0x505241474d41", - "0x254ded54e", - "0x4450492f555344", - "0x4ff9749858f", - "0x0", - "0x66375435", - "0x42494e414e4345", - "0x505241474d41", - "0x255aacb36", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b63", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x415b0722a91e5df5a5940b15a31348cf88b36c03503c092280197789ec15cb3", - "0x6afb18ab77404451de102eae94ec7f64ff02dbdae7a84be30723a822c6fa3f7" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x131", - "0x26", - "0x1", - "0x66375432", - "0x42494e414e4345", - "0x505241474d41", - "0x606a55937fa", - "0x4254432f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x66375432", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca0d3e6700", - "0x4254432f555344", - "0x1e31808b137e1620000", - "0x0", - "0x1", - "0x66375432", - "0x42494e414e4345", - "0x505241474d41", - "0x5e148016179", - "0x4254432f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x66375432", - "0x42494e414e4345", - "0x505241474d41", - "0x5c9b28eb680", - "0x4254432f555344", - "0x1184ccaeee74a10d0000", - "0x0", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0xf6d41b3fc", - "0x4254432f55534454", - "0x134f465bc8774300", - "0x192327e7000", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0xed13a8ed9", - "0x4254432f55534454", - "0x2d03bb2fdd1a0f7e00", - "0x0", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0xf0d9a6cb8", - "0x4254432f55534454", - "0x277a7a05ae532800", - "0x1905ddbbc00", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x4a3761d4c5", - "0x4554482f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x491cc0a5c0", - "0x4554482f555344", - "0x5a38848b84f0b8c000", - "0x0", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x4c27441db1", - "0x4554482f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x4920a07800", - "0x4554482f555344", - "0x8835e27f767580000", - "0x0", - "0x1", - "0x66375434", - "0x42494e414e4345", - "0x505241474d41", - "0xbdfe6b16", - "0x4554482f55534454", - "0xb53135d8071800", - "0x1905ddbbc00", - "0x1", - "0x66375434", - "0x42494e414e4345", - "0x505241474d41", - "0xbb2ae2f0", - "0x4554482f55534454", - "0xe7f7acb86659b400", - "0x0", - "0x1", - "0x66375434", - "0x42494e414e4345", - "0x505241474d41", - "0xc2f3e193", - "0x4554482f55534454", - "0x5cf5eea5ea5600", - "0x192327e7000", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5da62e23000", - "0x4254432f555344", - "0x1bbfc449a2c900", - "0x1905ddbbc00", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5fb40144380", - "0x4254432f555344", - "0xf9a7cdcdc57f0", - "0x192327e7000", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5d40ed44d00", - "0x4254432f555344", - "0x1ecb0482d8a70", - "0x18fcda9ac00", - "0x1", - "0x6637542f", - "0x4f4b58", - "0x505241474d41", - "0x624b5483e80", - "0x4254432f555344", - "0x2551b5df6baaf", - "0x19407212400", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5cdda5d9280", - "0x4254432f555344", - "0x53627aa7f6388", - "0x18f61842000", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5cfb8fda600", - "0x4254432f555344", - "0x229b82532e8e0", - "0x18f8590a400", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xf01a80ce0", - "0x4254432f55534454", - "0xc994403025c", - "0x1905ddbbc00", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xf6bd60ea0", - "0x4254432f55534454", - "0xc43d72e7634", - "0x192327e7000", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xee869f400", - "0x4254432f55534454", - "0x24ba366fd00", - "0x18fcda9ac00", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xfe4c9311f", - "0x4254432f55534454", - "0x19767306a5a", - "0x19407212400", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xed95ea280", - "0x4254432f55534454", - "0x9606302693f", - "0x18f61842000", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xee03f7fc0", - "0x4254432f55534454", - "0x3492962b658", - "0x18f8590a400", - "0x1", - "0x66375437", - "0x4f4b58", - "0x505241474d41", - "0x4a1a8c9240", - "0x4554482f555344", - "0x7151f7acb43e0", - "0x1905ddbbc00", - "0x1", - "0x66375437", - "0x4f4b58", - "0x505241474d41", - "0x4ba82bf400", - "0x4554482f555344", - "0x3ebf71dc70fc0", - "0x192327e7000", - "0x1", - "0x66375437", - "0x4f4b58", - "0x505241474d41", - "0x494dbf5f40", - "0x4554482f555344", - "0x37cc35b8f1a1c", - "0x18f61842000", - "0x1", - "0x66375437", - "0x4f4b58", - "0x505241474d41", - "0x4955cb4f00", - "0x4554482f555344", - "0x1a907c34de3df", - "0x18f8590a400", - "0x1", - "0x66375439", - "0x4f4b58", - "0x505241474d41", - "0xbdae3270", - "0x4554482f55534454", - "0x8087c016a44", - "0x1905ddbbc00", - "0x1", - "0x66375438", - "0x4f4b58", - "0x505241474d41", - "0xc25ee940", - "0x4554482f55534454", - "0x2e8c052574f", - "0x192327e7000", - "0x1", - "0x66375438", - "0x4f4b58", - "0x505241474d41", - "0xbb722520", - "0x4554482f55534454", - "0x447e27f8720", - "0x18f61842000", - "0x1", - "0x66375438", - "0x4f4b58", - "0x505241474d41", - "0xbbb0b4c0", - "0x4554482f55534454", - "0x2b742abf39f", - "0x18f8590a400", - "0x1", - "0x66375432", - "0x4259424954", - "0x505241474d41", - "0x5ca68d01500", - "0x4254432f555344", - "0xa882c83eb74ed80000", - "0x0", - "0x1", - "0x66375432", - "0x4259424954", - "0x505241474d41", - "0xed198e380", - "0x4254432f55534454", - "0x12ec8c102e2cf0", - "0x0", - "0x1", - "0x66375432", - "0x4259424954", - "0x505241474d41", - "0x4920542cc0", - "0x4554482f555344", - "0x17a5c48ac1b602000", - "0x0", - "0x1", - "0x66375432", - "0x4259424954", - "0x505241474d41", - "0xbb28c010", - "0x4554482f55534454", - "0x42344be59e7d0", - "0x0" - ] - }, - { - "transaction_hash": "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x3a", - "max_fee": "0x1bad55a98e1c1", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x7f1d7eb58b1467c75dad461953ba6d931c7b46b51ee2055996ebaa595583985", - "0x34fb6291f60e2a7ec088a92075bb977d89eb779e8f51fa638799d27a999d9fe" - ], - "calldata": [ - "0x1", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x6", - "0x5265706f73736573734275696c64696e67", - "0x4", - "0x5", - "0xa25", - "0x1", - "0xe52" - ] - } - ] - }, - "id": 1 -} \ No newline at end of file diff --git a/rpc/tests/block/sepoliaBlockTxs65083.json b/rpc/tests/block/sepoliaBlockTxs65083.json new file mode 100644 index 00000000..31a76468 --- /dev/null +++ b/rpc/tests/block/sepoliaBlockTxs65083.json @@ -0,0 +1,5108 @@ +{ + "status": "ACCEPTED_ON_L1", + "block_hash": "0x549770b5b74df90276277ff7a11af881c998dffa452f4156f14446db6005174", + "parent_hash": "0x4de1acdff24acba2a537ef651ec8f790e5c0321f92f1115b272a6f2f2d637e8", + "block_number": 65083, + "new_root": "0x7df132d80333fd54a3a059e0cc6e851bda52cc72d0437a8f13a1b0809a17499", + "timestamp": 1715244926, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0xf04d9d9bbe0", + "price_in_wei": "0x199bad1bb" + }, + "l1_data_gas_price": { + "price_in_fri": "0xb32d49ed2b", + "price_in_wei": "0x13181962" + }, + "l1_da_mode": "BLOB", + "starknet_version": "0.13.1.1", + "transactions": [ + { + "transaction_hash": "0x2db07ed11b1f6c678de9fc19ef0dfb8e71631e1cff236a34e68f51528a21282", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c0c", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x6b67b53231b0ad782b651cb529004258ac79f8bd069042127e0f58edd40fd89", + "0x36cc9eaeb31b0b3d990624cf105aa0cea86590452e188dadb75edc02ddeea51" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192603", + "0xd34ba8c515a574cd724301a5b50e997abcfd377f705e70a8330c706f3ccf34", + "0x663c8f59", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5444abc7", + "0x54497b21", + "0x54497b21", + "0x54497b21", + "0xb6d5fbd139a7d956f", + "0x1", + "0x2", + "0x723516b6471960da09efa937c31abd5c46590e7b9df4773a5a6111497541508", + "0x385effc19083082f432ed7ab855de96b575e14a21b0a6d7a4395ff4d99e30f6", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0xb5eb2dec854e82a991956a933cd3b20b888bcb1737427e829efc5cd7e241e7", + "0xb71581436348419b44d939dc2af69a310c7a4b7d4f16b07f71d1957e9d5ceb", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x60", + "max_price_per_unit": "0x13ac02cbe617" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x2ddcbfc269505fbe3647d621c75b3e8611640d24e111e655cc3dcdd685d4b6a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150bf", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x416a61e2383ceb2c49c18cc1e680a087d8671c27019a600d1e563883caed857", + "0x68f02691f2b930e05d303b6dd619447ac7d3b7a6399bf0895df31329122a034" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c8f78", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594674aabde", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f78", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458da32daa", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x59429b77c16", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b5b7", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5323ba9064e", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50ece4fbb1", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e6", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b932256", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f7a", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4fd07", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8f7a", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4040", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8f7a", + "0x464f55524c454146", + "0x464f55524c454146", + "0x76ef2b1", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f7a", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3964f30", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x68fb35d0f683860da2b48f2e717481e33caba55168638b05286072f9bcb4953", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x88", + "max_fee": "0x1a014ef2b5e2", + "sender_address": "0x1a819d1a8a6eba088350bb2536dbc3ada7df5040540b7a55aac9263d9acf90b", + "signature": [ + "0x1a550126630d19ae4478ccae5390f4f6d4e2d6fc315d29bb2a361e727b4d57b", + "0x701f64b1abf9961ed9e194359a3f4152cf572196e2232fa582aa74cbd636192" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x27a1dd8be8df5e0a21e0d382086255ea431d8916e7f95846f0ad76221196c13", + "0x6f05b59d3b20000", + "0x0" + ] + }, + { + "transaction_hash": "0x5dad0f26e1f2bf58954d1cd609abc4ebb132b83053cd7e2d4034f2d031ed0e6", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c0d", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x118ccc317cddaf28568a261f9eb3b7aa12be3d185124f8d4a15a4e387062fa7", + "0x3208e4bc2b6820cbe9b0af08ade8670997d4775040ad277ec25c2fc3db5a157" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191803", + "0x49afa6204a4016439f0d4376faef03630edd318d30aeb8ef654092c2dd85d8", + "0x663c8f41", + "0x104030200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x201c8a020", + "0x201e20e02", + "0x201e20e02", + "0x201e9070c", + "0xb6dafc81d832211b6", + "0x1", + "0x2", + "0x1221ca04928e8a6359d8057470fcfff570cf6f68b2cf428b78d408724f3fd47", + "0x2a9a9dda4b724a128c6457bcc05a587934ab450f4ea9f16a00f6e94337d7304", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x1d10b5a2d653396e798e675c56cc32b254bd0c573f8bec59fc6987fac8fb7d", + "0x1ec99bc00cadc31c47e3626d0b141a4c5af78c4780b88a8cd75740f1757bc82", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x280cd6f93e9a774273a62b596ab7f14c8979af1bf682b9d3d6f34510d53ea7d", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c0e", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x7fa8d7e297b946f6712cc4ef7a5f84d34830abd771e63ac30780e9c4f367764", + "0x506e0fcb5b2f0814441bff6ae8b012fc2ecef8ac994fe0dfc8a9a47c53c571e" + ], + "calldata": [ + "0x1", + "0x132303a40ae2f271f4e1b707596a63f6f2921c4d400b38822548ed1bb0cbe0", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x46f1db039a8aa6edb473195b98421579517d79bbe026e74bbc3f172af0798", + "0x18ff04", + "0xb26c6010f6e3a5ee446292a17c877bd5cf5a562fd78b26ebfb692ad7a04f65", + "0x663c8f74", + "0x103040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x4564547500", + "0x4564a3cd80", + "0x456b1e9fa3", + "0x456b1e9fa3", + "0xb6dc58408e2e8e602", + "0x1", + "0x2", + "0x30b50fb37bdf93deaee4999e66b1ba765aa97516bba8a74992e50d4c5b1abcd", + "0x2439ff7c23e1e8d32f8d239582aa9cfaa1573b126f6de9c93cdf39d6d5cb932", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x45586d7dfd19c00222753f41ec23acb30a43743ae2c9cb4d32b5591dcfcccec", + "0x309ead40956c7507ef48282c17d01fe5678913f31338a9ea369fe3ae6bb11db", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x3953a293f25a9c1a7aaf17b2c42d6868623256dc32e9324a757e12c1b3e877e", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x1101f", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x17a06d112e6075e187dd2fb19a22fff6ac7ee5dae09644186eea34cd95724de", + "0x7c6a0bd95b17de56da253e3631e5009626f8590186efda10112246471a33244" + ], + "calldata": [ + "0x1", + "0x1730b20846e904de106ec706a41d7153c8fce8f670006e239989f76539659af", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4128bc4d1ff1a2c4b3eac393be3c77fb1fe39b69e026e425c1cda857ef9b2", + "0x191705", + "0xd05051af50f6c0d03d9aa1740fc8063f26ca96710d1c5fb5a5459902e6aed1", + "0x663c8f59", + "0x402030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5beae", + "0x5f5c350", + "0x5f5c350", + "0x5f5e6c8", + "0xb6d96967d008444b9", + "0x1", + "0x2", + "0x75eba7a4e8f7804591e990b3966be05cb1fe1e42a8414062dfcced02519cf0a", + "0x351736b78e661b934c00254b424cbb2e002d77e99e80793326ee874d6b14ff7", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x5b0cf2a688cd4ba80ff98818a3e3a9ad8a927044c611bb34f4be175d9a8a49c", + "0xe015daa4d0b8b6e89ca7468d5d44b3fffd8be0e30bfb4042ce03dd18a4f667", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x7ad89de3a2f25d575583890494a40dbcef5f9faeeb4848ab4dd116cd14d46a5", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c0f", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x492cde0fb7b373e26eb0f7a74651fc21c8b09cd23889d49d00742dbcf298369", + "0x48d44522d49551b7249d9bd4b9038109e596eee6dd0b5480ef36ac2e2493557" + ], + "calldata": [ + "0x1", + "0x79c0bc2a03570241c27235a2dca7696a658cbdaae0bad5762e30204b2791aba", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4dde495a4a4736dcb99c96c0b31aee80ebf4d130d2fcc1af087d0b4ee1da8", + "0x193a02", + "0x81959c26e1fef5dc76eced99df8f7962f938faeec8f7291b753b7bb9e1614f", + "0x663c8f5f", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5928b8eb1c5", + "0x592b94e98e0", + "0x592d7be41ec", + "0x592d7be41ec", + "0xb6dc2644e5148388f", + "0x1", + "0x2", + "0x377d12cae77537e21ceee526ddb97fdb43b2d18dbf050cae32782a35628ad2c", + "0x3b52f198ff7ee4ff7504c37909d12b806c71ff0939f52f8b84d02c166da22d5", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x7e67c7bedd77f23a625e45481d960a8c72a1f7bd0ca4b593b1cd62a277fcfb8", + "0x7e52270ecf777c7fac70bab132778b10a93c3e4f01c619066a09f45c6f1534", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x4a77a30e2f8e966701916198d487a419d9404b8ffefc1316503fd0b89d66e39", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11020", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0xa74760e4e264c08910452bb3e5630832e967ef09228072557bd1b12c45cb46", + "0x2ae855ea7eda053ca600396b3366ac34dc5f41bbb3ab6e326f777fd96b18d2f" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191804", + "0x3ca3982dd83b00d0718f5e5d6b8355ff13a0f60654b44bcb14151234b0d418", + "0x663c8f9b", + "0x403010200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x201b4ce31", + "0x201b4ce31", + "0x201bae480", + "0x201c8ea58", + "0xb6dc365a5dd0d97a2", + "0x1", + "0x2", + "0x4ef1b230cca03b6e0d6b6c50470c8e8a04a34bffd9374819d1264666fe6335a", + "0x124eb28f8f9b34fd57550e4c9ade6c0f68b5187ee86cfd9d4c5886a1c10cfb2", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x582e9704024ce75f3436bc033832744f869dc28591dcbd6ad1d368069fe656c", + "0x280443e120c74e92a7adc9f2cfe9302205ff41856336d2af1f0b0e0b7a3c884", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x717a96ee79c7580e7d8edb658a213caacf95009eb3db53b017d5f857ed8b8d3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17d64", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x2ef4cb3a3483ea3c0525ba1d9f3887af0ead57d75fb099d719155ddb3f687fd", + "0x38f9b6669743bb77116de1032c280b8dbd58b4da963441d40faec1e337764f2" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x23f", + "0x52", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x59275c970e0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x456d5c29e0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0xf4401", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x59369fcb320", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x5f592e0", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x5310f326fa0", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x2b9476b0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x7710f50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f5d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x592c34d7f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f5d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x45610d3940", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8e48", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8f60", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4198", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8e56", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf3f51", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5925803ad00", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f56e42", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f5f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x50d15e4580", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8f2b", + "0x444546494c4c414d41", + "0x505241474d41", + "0xc334a7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8f3a", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f1b440", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2b922cc0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f4c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7735940", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f45", + "0x444546494c4c414d41", + "0x505241474d41", + "0x38b9ae0", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8f2c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x22d7b7440", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5967c33c1c0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x457aae80c0", + "0x4554482f555344", + "0xcf10712c2b7460000", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5967c33c1c0", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f5e100", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x510bc7e280", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc51bf1", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5bbb9b0", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2bbb7156", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x76cdafe", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x23ac62a00", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4b55434f494e", + "0x505241474d41", + "0x59283869780", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f9e", + "0x4b55434f494e", + "0x505241474d41", + "0x456d083d80", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8f86", + "0x4b55434f494e", + "0x505241474d41", + "0xf43e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c7ff0", + "0x4b55434f494e", + "0x505241474d41", + "0x5911b838180", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c7c32", + "0x4b55434f494e", + "0x505241474d41", + "0x5f21458", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8d00", + "0x4b55434f494e", + "0x505241474d41", + "0x538ab861a80", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8ec4", + "0x4b55434f494e", + "0x505241474d41", + "0x2b931720", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f2a", + "0x4b55434f494e", + "0x505241474d41", + "0x7713660", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8c6f", + "0x4b55434f494e", + "0x505241474d41", + "0x376b02f", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0x5934e505c52", + "0x4254432f555344", + "0x630c107c79ebc49ea968d800", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0xf45a6", + "0x555344432f555344", + "0x212c817a4cb7d500", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0x5eba7d0", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0x2ba08701", + "0x554e492f555344", + "0xcf1cd8fdc641f4413b00", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0x771228c", + "0x5354524b2f555344", + "0x297b7b364c7c9b394800", + "0x0", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x59360885891", + "0x4254432f555344", + "0x31ef01c906f8f000000000", + "0x0", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0x457ab127b2", + "0x4554482f555344", + "0x217579adfee5c600000000", + "0x0", + "0x663c8f9a", + "0x4f4b58", + "0x505241474d41", + "0xf45d8", + "0x555344432f555344", + "0x3a6f057654b3000", + "0x0", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0x2b998131", + "0x554e492f555344", + "0x1ea9da3bad2053000000", + "0x0", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x77197cc", + "0x5354524b2f555344", + "0x2c30ef09dabb3c000000", + "0x0", + "0x663c8f9e", + "0x4249545354414d50", + "0x505241474d41", + "0x591e6c3fa00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f9d", + "0x4249545354414d50", + "0x505241474d41", + "0x4563f8e780", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8f9e", + "0x4249545354414d50", + "0x505241474d41", + "0x5ed8460", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8f9e", + "0x4249545354414d50", + "0x505241474d41", + "0xf4092", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8f9d", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f9e", + "0x4249545354414d50", + "0x505241474d41", + "0x53129091f00", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8f9f", + "0x4249545354414d50", + "0x505241474d41", + "0x2b907f10", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x535441524b4e4554", + "0x505241474d41", + "0xc59856", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x535441524b4e4554", + "0x505241474d41", + "0x7688d9c", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x535441524b4e4554", + "0x505241474d41", + "0x3624904", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x5934d3d8f3d", + "0x4254432f555344", + "0xfb8fc8210c3360", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x45779eeb28", + "0x4554482f555344", + "0x76bb12469bccd8", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x5f6719b", + "0x4441492f555344", + "0x20ac775f402a", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0xf460a", + "0x555344432f555344", + "0x5c0f33b8aace", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x592febae995", + "0x574254432f555344", + "0x36fc0fcd3f0", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x5f592e0", + "0x574254432f425443", + "0x15a46d16", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x53295291040", + "0x4254432f455552", + "0x456ae923e818", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x2b9a3111", + "0x554e492f555344", + "0x19d3556457874", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x7720d0b", + "0x5354524b2f555344", + "0x19b6ae659167a", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x3997feb", + "0x5a454e442f555344", + "0x38fd335253d", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x59099a376ac", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x45566769d4", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5c02f", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf4062", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x59099a376ac", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x50d35cc5c8", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x2367f7367", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x494e444558434f4f50", + "0x505241474d41", + "0x23473bd54", + "0x4450492f555344", + "0x7a9f1ef53ab", + "0x0", + "0x663c8fa4", + "0x42494e414e4345", + "0x505241474d41", + "0x2352cc582", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x9c515210d7c959c4659563e4a41ea3470358a9a50e9e41ec5732a040c9e2ad", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17d65", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x351976cf42ac9d6df12642299270e7e1063ec72377c93872817627e244d4bfa", + "0x1830dd6ca734d15df28e8f2924a0ef02237df6087d203b2e51bcf37f320a9a3" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663c8f9f", + "0x42494e414e4345", + "0x505241474d41", + "0x591e5bd78a6", + "0x4254432f555344", + "0x11c44c7f7f130f1a1600", + "0x0", + "0x1", + "0x663c8f9f", + "0x42494e414e4345", + "0x505241474d41", + "0x5cc12986304", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663c8f9f", + "0x42494e414e4345", + "0x505241474d41", + "0x59165bcc287", + "0x4254432f555344", + "0x213007d7ddb52ba7000", + "0x0", + "0x1", + "0x663c8f9f", + "0x42494e414e4345", + "0x505241474d41", + "0x5a6ba568b64", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0xe77a573b3", + "0x4254432f55534454", + "0x2437b09e8c8f1380", + "0x1905ddbbc00", + "0x1", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0xe42520050", + "0x4254432f55534454", + "0x2dc90f3f7d181ccc00", + "0x0", + "0x1", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0xed73fb5db", + "0x4254432f55534454", + "0x2b5830eac39150c0", + "0x192327e7000", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0x455fccca00", + "0x4554482f555344", + "0x9b103f0cddd3c0000", + "0x0", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0x466d75eba7", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0x48419565e7", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0x4567f73e40", + "0x4554482f555344", + "0x5dba2d144377ca8000", + "0x0", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0xb8f9d061", + "0x4554482f55534454", + "0x794794727520c0", + "0x192327e7000", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0xb1adfe10", + "0x4554482f55534454", + "0xf340555b383ee000", + "0x0", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0xb44b6b51", + "0x4554482f55534454", + "0xd6ed8c1d5e3d00", + "0x1905ddbbc00", + "0x1", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x59f5ab8cf00", + "0x4254432f555344", + "0xd5ffc7a8e0e70", + "0x1905ddbbc00", + "0x1", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x5bc20a9f600", + "0x4254432f555344", + "0x14bfc01ca35f60", + "0x192327e7000", + "0x1", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0x599f1828d00", + "0x4254432f555344", + "0x1075d6fff54e0", + "0x18fcda9ac00", + "0x1", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x5e3c58bf980", + "0x4254432f555344", + "0x2dc58b39da478", + "0x19407212400", + "0x1", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0x5937027fc00", + "0x4254432f555344", + "0x30478fe537180", + "0x18f61842000", + "0x1", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x594d3fef480", + "0x4254432f555344", + "0x2012474bb9450", + "0x18f8590a400", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xe6d2feec0", + "0x4254432f55534454", + "0x96a707f0ba0", + "0x1905ddbbc00", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xecc294980", + "0x4254432f55534454", + "0xc30f4e21d10", + "0x192327e7000", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xe5a759f00", + "0x4254432f55534454", + "0x21f4da3ae7f", + "0x18fcda9ac00", + "0x1", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0xf4165cca0", + "0x4254432f55534454", + "0x28fe4aaae08", + "0x19407212400", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xe47d0ac00", + "0x4254432f55534454", + "0x4debf489c00", + "0x18f61842000", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xe4dfd7b80", + "0x4254432f55534454", + "0x34647f29be0", + "0x18f8590a400", + "0x1", + "0x663c8fa4", + "0x4f4b58", + "0x505241474d41", + "0x4629067600", + "0x4554482f555344", + "0x60f7cb984183f", + "0x1905ddbbc00", + "0x1", + "0x663c8fa4", + "0x4f4b58", + "0x505241474d41", + "0x47ba48a100", + "0x4554482f555344", + "0x598d74f7b3350", + "0x192327e7000", + "0x1", + "0x663c8fa4", + "0x4f4b58", + "0x505241474d41", + "0x4577f09940", + "0x4554482f555344", + "0x1932574675a10", + "0x18f61842000", + "0x1", + "0x663c8fa4", + "0x4f4b58", + "0x505241474d41", + "0x4582d8f500", + "0x4554482f555344", + "0x1431a563862b0", + "0x18f8590a400", + "0x1", + "0x663c8fa7", + "0x4f4b58", + "0x505241474d41", + "0xb3d68360", + "0x4554482f55534454", + "0x9f274c20dd8", + "0x1905ddbbc00", + "0x1", + "0x663c8fa7", + "0x4f4b58", + "0x505241474d41", + "0xb8570270", + "0x4554482f55534454", + "0x2e842039f07", + "0x192327e7000", + "0x1", + "0x663c8fa7", + "0x4f4b58", + "0x505241474d41", + "0xb1da8c50", + "0x4554482f55534454", + "0x2ffc5af4fbf", + "0x18f61842000", + "0x1", + "0x663c8fa7", + "0x4f4b58", + "0x505241474d41", + "0xb1fb5ac0", + "0x4554482f55534454", + "0x2ff986ccb50", + "0x18f8590a400", + "0x1", + "0x663c8f9f", + "0x4259424954", + "0x505241474d41", + "0x5912807da00", + "0x4254432f555344", + "0x9f0c200412f5480000", + "0x0", + "0x1", + "0x663c8f9f", + "0x4259424954", + "0x505241474d41", + "0xe4257ea40", + "0x4254432f55534454", + "0x14569d0a5b7e50", + "0x0", + "0x1", + "0x663c8f9f", + "0x4259424954", + "0x505241474d41", + "0x45622f2400", + "0x4554482f555344", + "0x1864c51c9c195c000", + "0x0", + "0x1", + "0x663c8f9f", + "0x4259424954", + "0x505241474d41", + "0xb1ad13b0", + "0x4554482f55534454", + "0x4db4b5c07051c", + "0x0" + ] + }, + { + "transaction_hash": "0x1c1d77d9ff6ae6b7a0e6bf52c29265392a3f95deb6ce06602b46ee09f7ba519", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11021", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x78f4e0e4477aa8e993730ab28abc58b8ea38df4c7c4d5fc276b9dc0f4276138", + "0x4e8858bfe8bf85f5bb08ff20dc9a8e9e042e63fdbe7b02afe9f6b12942d4c81" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192604", + "0x8d0e0193b197b11be3befb6419183ffffc127058feb8c0e26c220d916cdf8d", + "0x663c8fb3", + "0x204010300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x543d316d", + "0x543d4e17", + "0x54447917", + "0x54447917", + "0xb6e833cd130afbca9", + "0x1", + "0x2", + "0x430c974d6f9fc1360a10323d3b7951f793b0f59ec22a14b5b4e8aeb2e41c110", + "0x38cd86e1768b43dbac7889fb680257289cefe470dbbff8d5dcb5381558a1a19", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x8c5a65f8d8cec43ab08b3e486cc7b1454ba36a25d7329630967e05dbf078ea", + "0x20d5f790edb17fd5ac6d9a13c6dea43dd02722e1dd639ab7dde336fdfa2ba76", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x691bc5c777a9fa04b26d25733a10b57107a36955bececb986fa0651f366a251", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c10", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x43e9bf5c87c37b5d43c9322b7535de1448bd27d8a2cb518204a15d0c2f6c2d6", + "0x2c3f053ecffa700e404c3103be036e93a3948dcfb228a0dc03174fc82f56ce8" + ], + "calldata": [ + "0x1", + "0x12b0847cf221531f729090c10161692401c94994a033467c496db63a3d5facb", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x44b4d39504a21b1495d082177bb8455dd2116642deabdc35353b5785642dd", + "0x18f801", + "0x70d81fe5fa4256bb396a57b488d1b2cda9f414acfe64619f454d55d1cea51a", + "0x663c8f82", + "0x104020300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f4e0c0", + "0x5f57ff9", + "0x5f57ff9", + "0x5f5a4a2", + "0xb6e3fc957c38d00cc", + "0x1", + "0x2", + "0x712fd106ef99d137ec8379ca20289fe78a8d51a38ab1ec0ccc4e63065f7d1f2", + "0x27705132d4ea145e00b5190c719ca8a376e8e1c19bb9aac6c423287674467fe", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x2ba4d78448208598e33e5a4edeae52603bd41faac6bc4daaeac2dffeb982db2", + "0x2e0c93f2c273f778d9bbf52552849a8478019feaaa15a5a273ed051c631a28a", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x11ea42dfff1086fd0b5de05f7d65b0cb875e8b01a78ac922c9bc55132f703c0", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c0", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x5785764004ae42fb34b11eabef2ff415a51b8d865a697fae248391901b19e5c", + "0x14300b13d92debb37fc6afce77e994347db481ed8d5e5dfb29eda6bc5477162" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c8fc6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x59442e9fcc9", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fc6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458da3f782", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fc6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594236bce71", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b58a", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x53234fce6c1", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f1177e60", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41f2", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b935804", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4fc3a", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fc8", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4041", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8fc8", + "0x464f55524c454146", + "0x464f55524c454146", + "0x76f1225", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fc8", + "0x464f55524c454146", + "0x464f55524c454146", + "0x39617ff", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x3b593eb47d7dc1de0461bcb84c9564bd8dd91142f6f4c8760dbecfbfe252a89", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1065", + "max_fee": "0x1bddda0c34f", + "sender_address": "0xaa5c7c9554d61184c83cb8a35580d4cb4a0379cee16229af361695576a2dbe", + "signature": [ + "0x6ea6ab679905df268fb0267fe69404158cfec6966991b6c6fc08a890e841c9a", + "0x20cee180ef0a4bb4d79bdaa64b9a2cd425123c9ce9a10683578fc2a159addc6" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265636569766544656c6976657279", + "0x4", + "0x9", + "0x151dc", + "0x1", + "0x1dd" + ] + }, + { + "transaction_hash": "0x2b9b2cabc3734c1fd752fb3c4c69785653caf10824640a3cc887cc62be05fc7", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c11", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0xb30856fe0ae6895bd00fcbe9155334bab81f3621d237a6212fdbf995f3491a", + "0x41860da79b9dff4080b0e6cff67ef2cacefd9cddf62273cf15f69f318e67f51" + ], + "calldata": [ + "0x1", + "0x79c0bc2a03570241c27235a2dca7696a658cbdaae0bad5762e30204b2791aba", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4dde495a4a4736dcb99c96c0b31aee80ebf4d130d2fcc1af087d0b4ee1da8", + "0x193a03", + "0x83cfa7e35d2cccab1f223672ce59f5f106ef03fae515d02053d47524c514ae", + "0x663c8fb9", + "0x403010200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x59255cae384", + "0x592a144ba40", + "0x592abcdb218", + "0x592abcdb218", + "0xb6dc234fa9b2f4612", + "0x1", + "0x2", + "0x30e504ad058e0aa04c241e15e5519787fc7e276c848c59915f619d4f7930781", + "0x249b8de7d6b14df63d686eabb90d372b9274c1aeef16668c54dbcfb3fa8faf4", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x795637e95524432c204022f348842f365410303ebe0613ed15fb4b506f6e1d0", + "0x374493d2d8cfc076e01e784b4b0f1b9ca18f486fc7743a93e688c7ad9c1f72c", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x77354e0e7eeae144341b6a72a2fe1e96f8304ae5d37d5cbcda325cab57ca176", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c12", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x56780cbaa5f6aeb9f245ed7f620edfdba494f603dd1f920946b8a41baf75070", + "0x4f3c81938252f805976d224aa630103da8288686a85907067128288388493a5" + ], + "calldata": [ + "0x1", + "0x12b0847cf221531f729090c10161692401c94994a033467c496db63a3d5facb", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x44b4d39504a21b1495d082177bb8455dd2116642deabdc35353b5785642dd", + "0x18f802", + "0x34f317ece123a18da3d130ab4bd97704b984a166c22956dbc7f8b921c8f115", + "0x663c8fdc", + "0x102040300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f4f7cc", + "0x5f52d87", + "0x5f56684", + "0x5f5aff2", + "0xb6e3fc957c38d00cc", + "0x1", + "0x2", + "0x494febfbd82731f626ccaeae54536b04ab48616c0f515436bd2e250134ae76d", + "0x465a40cf940fece559cb71c7d38b36f4aa4df309f23b602b3ec18492b0dd4b", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x3495286b85df7fc9930b187e5e43b41b17a7894c1c7300c2b861f10bc6f8cc9", + "0xf0e100d4bdc1f40bf6e48f229df2e440d5bc057453e0d63c8454498d390d1f", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x13183366dba4b9c2e50822eb69b7d73ddeb81791c1907c1a7423c076f9bfab3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17d66", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x693764798141ead8cd09fd820f2dabcc706c6323ea66c0653da72e0aed95480", + "0x3bea4c4d8ee61efd1c7ce400069ff837655a9951f44866794d16124d5334b72" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x246", + "0x53", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x592ee7c7d20", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x4576d64fa0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0xf4401", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x59377308580", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x5f592e0", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x5317382fa60", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x2b99cde0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x77295f0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f5d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x592c34d7f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f5d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x45610d3940", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8e48", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8f60", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4198", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8e56", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf3f51", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5925803ad00", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f56e42", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f5f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x50d15e4580", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8f2b", + "0x444546494c4c414d41", + "0x505241474d41", + "0xc334a7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8f3a", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f1b440", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2b922cc0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f4c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7735940", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f45", + "0x444546494c4c414d41", + "0x505241474d41", + "0x38b9ae0", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8f2c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x22d7b7440", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5967c33c1c0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x457aae80c0", + "0x4554482f555344", + "0xcf10712c2b7460000", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5967c33c1c0", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f5e100", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x510bc7e280", + "0x5753544554482f555344", + "0x1e3126912f2928000", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc51bf1", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5bbb9b0", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2bbb7156", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x76cdafe", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x23ac62a00", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8fdc", + "0x4b55434f494e", + "0x505241474d41", + "0x59316bfcd00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fdb", + "0x4b55434f494e", + "0x505241474d41", + "0x4578987200", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fdc", + "0x4b55434f494e", + "0x505241474d41", + "0xf43e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c7ff0", + "0x4b55434f494e", + "0x505241474d41", + "0x5911b838180", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c7c32", + "0x4b55434f494e", + "0x505241474d41", + "0x5f21458", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8d00", + "0x4b55434f494e", + "0x505241474d41", + "0x538ab861a80", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8ec4", + "0x4b55434f494e", + "0x505241474d41", + "0x2b931720", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f2a", + "0x4b55434f494e", + "0x505241474d41", + "0x7713660", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8c6f", + "0x4b55434f494e", + "0x505241474d41", + "0x376b02f", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x593bffabe66", + "0x4254432f555344", + "0x62fc8e68977fba8e2a934000", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x457f505393", + "0x4554482f555344", + "0x2200a712b80a3157c818c00", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x5f81f84", + "0x4441492f555344", + "0x87bc925d28a3ed78800", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0xf45a6", + "0x555344432f555344", + "0x212c817a4cb7d500", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x2ba46b9d", + "0x554e492f555344", + "0xcf297e88dbe70f1e6900", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x7720d0b", + "0x5354524b2f555344", + "0x298099cad4ba11a61e00", + "0x0", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0x593c6827350", + "0x4254432f555344", + "0x31e9328a4227a800000000", + "0x0", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0x45818cd429", + "0x4554482f555344", + "0x216ec2da9cde2400000000", + "0x0", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0xf45d8", + "0x555344432f555344", + "0x3a6de227fac3800", + "0x0", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0x2b9f9c81", + "0x554e492f555344", + "0x1eaa700997bb99000000", + "0x0", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x7731ea0", + "0x5354524b2f555344", + "0x2c33acf7142dbc000000", + "0x0", + "0x663c8fdc", + "0x4249545354414d50", + "0x505241474d41", + "0x592cf394100", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fdb", + "0x4249545354414d50", + "0x505241474d41", + "0x4572470380", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fdc", + "0x4249545354414d50", + "0x505241474d41", + "0x5ed8460", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fdd", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8fdc", + "0x4249545354414d50", + "0x505241474d41", + "0xf4092", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8fdb", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fdb", + "0x4249545354414d50", + "0x505241474d41", + "0x531ac2a7500", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8fdd", + "0x4249545354414d50", + "0x505241474d41", + "0x2b907f10", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x535441524b4e4554", + "0x505241474d41", + "0xc51153", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x535441524b4e4554", + "0x505241474d41", + "0x769061e", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x535441524b4e4554", + "0x505241474d41", + "0x3624904", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x593bffabe66", + "0x4254432f555344", + "0xfb7c1472a8f470", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x457e89dbe7", + "0x4554482f555344", + "0x76a168c78dbfb4", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x5f6719b", + "0x4441492f555344", + "0x20a0dc0dca5e", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0xf460a", + "0x555344432f555344", + "0x5bccea21ac97", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x59371c46e27", + "0x574254432f555344", + "0x37007e8b0f5", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x5f57f58", + "0x574254432f425443", + "0x15a42627", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x532bcdb6ac0", + "0x4254432f455552", + "0x456cfb519e08", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x2b9e2938", + "0x554e492f555344", + "0x19d73005bd40c", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x77393df", + "0x5354524b2f555344", + "0x19aead03b51d6", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x3997feb", + "0x5a454e442f555344", + "0x38b19aad2b9", + "0x0", + "0x663c8fde", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x590f74b729f", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4560e0d8b4", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5c02f", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf4062", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x590f74b729f", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x50df927978", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x2367f7367", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8fe0", + "0x494e444558434f4f50", + "0x505241474d41", + "0x2347cda91", + "0x4450492f555344", + "0x7aa8cef263a", + "0x0", + "0x663c8fe1", + "0x42494e414e4345", + "0x505241474d41", + "0x2358d465f", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x439e956d7742d1d11f4415ff178816687a79ec90176f25ece3e85877cd4280a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17d67", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x411a02f6267aaedeebe888a21a45414bbd9bcbe454db629d959b4e450305933", + "0x1c657bddc30c734f2093d759f4a9123cdf0672f2e08a1a19df7fca330ca6db6" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663c8fde", + "0x42494e414e4345", + "0x505241474d41", + "0x59203603200", + "0x4254432f555344", + "0x2133b3710165f200000", + "0x0", + "0x1", + "0x663c8fde", + "0x42494e414e4345", + "0x505241474d41", + "0x5ccad2aedbf", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663c8fde", + "0x42494e414e4345", + "0x505241474d41", + "0x59277a741e8", + "0x4254432f555344", + "0x11c61dedd98076102800", + "0x0", + "0x1", + "0x663c8fde", + "0x42494e414e4345", + "0x505241474d41", + "0x5a76149d40a", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0xe792d1087", + "0x4254432f55534454", + "0x243b84fafc5d5580", + "0x1905ddbbc00", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0xed8a7a2b4", + "0x4254432f55534454", + "0x2b5c4c1fddbb0500", + "0x192327e7000", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0xe43a48e80", + "0x4254432f55534454", + "0x2dc9e7b80c08c8e000", + "0x0", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x4676e8f27c", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x456b10b340", + "0x4554482f555344", + "0x9b296d180dac38000", + "0x0", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x4572470380", + "0x4554482f555344", + "0x5dc819df3f4f6b0000", + "0x0", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x484a88403c", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663c8fe0", + "0x42494e414e4345", + "0x505241474d41", + "0xb90f7c95", + "0x4554482f55534454", + "0x7955ca21ee27c0", + "0x192327e7000", + "0x1", + "0x663c8fe0", + "0x42494e414e4345", + "0x505241474d41", + "0xb1c5f8e1", + "0x4554482f55534454", + "0xf32196086a769080", + "0x0", + "0x1", + "0x663c8fe0", + "0x42494e414e4345", + "0x505241474d41", + "0xb462747b", + "0x4554482f55534454", + "0xd7090215049f00", + "0x1905ddbbc00", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x5a027c30b00", + "0x4254432f555344", + "0xd6219cf0953f0", + "0x1905ddbbc00", + "0x1", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0x5bcc9585580", + "0x4254432f555344", + "0x14c16168bdf4a8", + "0x192327e7000", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x599027ece80", + "0x4254432f555344", + "0x1077e7dd4de98", + "0x18fcda9ac00", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x5e3ece2c680", + "0x4254432f555344", + "0x2dc6e12314f20", + "0x19407212400", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x5937027fc00", + "0x4254432f555344", + "0x30472244a3d80", + "0x18f61842000", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x594d3fef480", + "0x4254432f555344", + "0x1ff10ee930210", + "0x18f8590a400", + "0x1", + "0x663c8fe1", + "0x4f4b58", + "0x505241474d41", + "0xe6d2feec0", + "0x4254432f55534454", + "0x96a656aad78", + "0x1905ddbbc00", + "0x1", + "0x663c8fe0", + "0x4f4b58", + "0x505241474d41", + "0xecc294980", + "0x4254432f55534454", + "0xc30da5dba7f", + "0x192327e7000", + "0x1", + "0x663c8fe0", + "0x4f4b58", + "0x505241474d41", + "0xe5a759f00", + "0x4254432f55534454", + "0x21f4da3ae7f", + "0x18fcda9ac00", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0xf4165cca0", + "0x4254432f55534454", + "0x28fe4aaae08", + "0x19407212400", + "0x1", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0xe46a28c40", + "0x4254432f55534454", + "0x4e54117dce0", + "0x18f61842000", + "0x1", + "0x663c8fe1", + "0x4f4b58", + "0x505241474d41", + "0xe4dfd7b80", + "0x4254432f55534454", + "0x34647f29be0", + "0x18f8590a400", + "0x1", + "0x663c8fe2", + "0x4f4b58", + "0x505241474d41", + "0x4624f8dd00", + "0x4554482f555344", + "0x60e0a3eb3fb30", + "0x1905ddbbc00", + "0x1", + "0x663c8fe3", + "0x4f4b58", + "0x505241474d41", + "0x47ba48a100", + "0x4554482f555344", + "0x5960fabeb7070", + "0x192327e7000", + "0x1", + "0x663c8fe3", + "0x4f4b58", + "0x505241474d41", + "0x4577f09940", + "0x4554482f555344", + "0x18ea418c39fc8", + "0x18f61842000", + "0x1", + "0x663c8fe3", + "0x4f4b58", + "0x505241474d41", + "0x4582d8f500", + "0x4554482f555344", + "0x142de2052c7d0", + "0x18f8590a400", + "0x1", + "0x663c8fe2", + "0x4f4b58", + "0x505241474d41", + "0xb3d68360", + "0x4554482f55534454", + "0x9ec0ad66dc0", + "0x1905ddbbc00", + "0x1", + "0x663c8fe0", + "0x4f4b58", + "0x505241474d41", + "0xb8570270", + "0x4554482f55534454", + "0x2e7b99a462f", + "0x192327e7000", + "0x1", + "0x663c8fe4", + "0x4f4b58", + "0x505241474d41", + "0xb1da8c50", + "0x4554482f55534454", + "0x2f07b1ff2ac", + "0x18f61842000", + "0x1", + "0x663c8fe1", + "0x4f4b58", + "0x505241474d41", + "0xb1fb5ac0", + "0x4554482f55534454", + "0x2fe12a50c40", + "0x18f8590a400", + "0x1", + "0x663c8fde", + "0x4259424954", + "0x505241474d41", + "0x5924f12db80", + "0x4254432f555344", + "0x9f2d35031b98900000", + "0x0", + "0x1", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0xe43139920", + "0x4254432f55534454", + "0x1459cfe52961ac", + "0x0", + "0x1", + "0x663c8fde", + "0x4259424954", + "0x505241474d41", + "0x456c512280", + "0x4554482f555344", + "0x1867e51e19d8a0000", + "0x0", + "0x1", + "0x663c8fde", + "0x4259424954", + "0x505241474d41", + "0xb1c556a0", + "0x4554482f55534454", + "0x4dbd8efc67fe8", + "0x0" + ] + }, + { + "transaction_hash": "0x63118b98e1fa1b8c0bbede61734dfa49c98603b3065d3f180eb9cdd9b6cf27b", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11022", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x6ccd95255b8356178221f93df498f44c47946de608b879ddc5b129e273565c2", + "0x66b89ebdaae3dade2aad10b1c482f5f97fa194a171c7479539423bc390f0e78" + ], + "calldata": [ + "0x1", + "0x224d3c33d3dd10789e7d1075f12c4e279e2c6e81baa6c74801b5e6262f70c83", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x40fe731a9782af40749728ac28aae03aab3146a5cccc9ff52764e84fa2955", + "0x193c05", + "0x5bb3fffe5dcfd736ed629a3c89d111d1f1be80d14dbef25206953813b009c5", + "0x663c8fab", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f51906", + "0x5f519c8", + "0x5f519c8", + "0x5f52ed5", + "0xb6db316481464ff09", + "0x1", + "0x2", + "0x70a37726c3585606e61409213c33c528d7a374825ce3d8dd6db7811337e354c", + "0x2798d56596ae584d49ecc2575be8a3f7292a7381d293be8e5521b4862ac216b", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x5d2dfe0f1275f70c43f634b5aeb0bccdb27bcc2d765ae5e2957f2954ef739a", + "0x3e7ac02635c2b367e667a5d1d6f90ba757a097d52901fbba826ae4cb83fc4f8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x4c903a64d7bf3ccc47bfa8461a950a5e1acde63bc7447caea079074708fbe05", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x87", + "max_fee": "0x1a014ef2b5e2", + "sender_address": "0x61fa009f87866652b6fcf4d8ea4b87a12f85e8cb682b912b0a79dafdbb7f362", + "signature": [ + "0x715195ad1af9bcc7efe975c80cc012ac1707bc826835ebabe504bba2194b4db", + "0x7813eed354d25ac3e039d9f1d84cc3ee406e862d3ede489fcbd357bf65088c5" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x17497dfa48bc9c22c84d40f3d72630b05e88d9fe8c6c715b29f3e7a78d79764", + "0x6f05b59d3b20000", + "0x0" + ] + }, + { + "transaction_hash": "0x40db9475799950f6b3b7587d97ad7c2518e57626bf7696fc3d66dfd008465a3", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11023", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x740773ff4f053ac98c617a976920790e9a5c6bf1b64a28ead091c188bcec574", + "0x7a319ebca96302b8ee221d1475ee92277723bdab3c94773b434dad9e7981866" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191805", + "0xb1685d4742758f234ec20100cde1b662b91a7c2dc19e93809edb1aea1899e7", + "0x663c8ff5", + "0x304010200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x201c4dc69", + "0x2022d84d8", + "0x2023396f0", + "0x20234f6e4", + "0xb6e4c254930a0e2d6", + "0x1", + "0x2", + "0x22e56cb4db120466a910e189be7c5d02e80c74f0c9d3786c0668d3d1452f135", + "0x35f624a874fbda36652a71d6f4f6e1860e7364c738ecd1da8c5a7e494b4d4d9", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0xda185753b1c4743b0f16ccc2ed2d0bd9a256e26745f0d95c22a4ac47e7ccb9", + "0xf44b7b890637dd0655d9c8afad5081e763f1d184e627c21f406a282d9d840b", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x3fa15235a0009c3af071a628c5b4bcfebb0c313b1753791b14d8c34b2b2fc7b", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1131", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x2dc660294a14d876fb7fde3ea1ac9214cdd179e07b4a11440b0a026c08493db", + "0x7eb0bb73d5b1ed368c4564acbad547a219fab9ccea3d7ce6641ac736433aed2" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x3a41f5419a2ee09f26831bdcece473aa128c95d1d6dd27c0d252eeae98e642c", + "0x40d176e1231ee58d8d48f00031aa54882c876eaa71b4d302c1922cf158fd978", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x23501a801f551cbf66d384addd5a84e80ade7eab9fa754e8a3962b7b9f1f50d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1132", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x510536b71bf5e43b7d8c59022f05f2955fe3d1b5347808b42db9bbbb889ba16", + "0x2c653cb2a7c88ee3e86ae4b74be62cfb26e53a2d1eac2a2e1e58ef2efeab80a" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x12d99b0b309cbdb9af5df96cd81c5d035033584230f0cee5ec5c69a380e1916", + "0x3007799279334ed917b85b7827744e24db0644bcb871f012be8058a6e372d9c", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x60d674b58a32094f12b60981ba5e749bc39de65930c8b385a538b41a0bc4713", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c13", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x347681e3087ea9284f12cf588d981f5cc2c311e67627f72e99369969f20e8cb", + "0x2b4abd48edeb3da7a122220dd71fd8f5aa5b2381b507561b263f844ecb2cfc7" + ], + "calldata": [ + "0x1", + "0x132303a40ae2f271f4e1b707596a63f6f2921c4d400b38822548ed1bb0cbe0", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x46f1db039a8aa6edb473195b98421579517d79bbe026e74bbc3f172af0798", + "0x18ff05", + "0x65e22cfe46aa52d25352934be40131059c6e5f573e05ab1dbf94091a097059", + "0x663c8fce", + "0x301040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x456f50de6d", + "0x457030f4c0", + "0x45713348d4", + "0x45713348d4", + "0xb6df36fb073549d39", + "0x1", + "0x2", + "0x12b7cca2922d8aa8d615fac98257c4dc148f66dc57e7787c8c8947e826e6d8", + "0x34a0e04841c10a194cf63ee4127461034e263aefa02b0b4fb30b22507d6ba15", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x4bf4f0f400833d9a3e39b842ed5fc660464a05f9d5e9c2ec661a3a048d2d908", + "0xbb9c3b6143246a7c19f7dd19fcc95ca024050d46a3cbbf6301b7e486923aba", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x4e2405b00b65c89a8610070aba205c62d15008a25eb333e091ea889d738a6de", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xaf9", + "max_fee": "0xde0b6b3a7640000", + "sender_address": "0x56a817d8cbc2834f7b00aa3a0bf6a16ae0d060445d65f31b4a2bf0140b14afd", + "signature": [ + "0x75c049ee58fdfa9ce72b464ff70fc248034b9c9d45ae929d52959c24559b7a8", + "0xaa2b51ba1826710aeb41e59ed4e556c0fcc27c5e8dcc125ef2b1da6672cc57" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x1234", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x71c4fd75be60d7cbe11ea53dd4eb986f472b2c71158cf0a46893650b84f48c7", + "type": "DECLARE", + "version": "0x2", + "nonce": "0x6f2", + "max_fee": "0xde0b6b3a7640000", + "class_hash": "0x7004683f0ff76767107f4fffa35384507e8e86644d46297bd4f1082a95f3f1a", + "sender_address": "0xaf46a3d75c1abc204cbe7e08f220680958bd8aca2c3cfc2ef34c686148ecf7", + "signature": [ + "0x6209802ee2e18b6fca530b278c7799b42422aca71964ca6c3bdd147625eb4ca", + "0x1d17add09124a88eb6c29a6c54ca7a69049eadaecd67e10f21bdfe4301f6129" + ], + "compiled_class_hash": "0x5047109bf7eb550c5e6b0c37714f6e0db4bb8b5b227869e0797ecfc39240aa7" + }, + { + "transaction_hash": "0x3c7817502dac2dc90198c6b64b85f3700507d74c75e08af85164e1b35e3a8b5", + "type": "DECLARE", + "version": "0x1", + "nonce": "0x713", + "max_fee": "0xde0b6b3a7640000", + "class_hash": "0x6c5a3f54e8bbfe07167c87f8ace70629573e05c385fe4bea69bc1d323acb8d3", + "sender_address": "0x2cc631ca0c544639f6e4403b8f3611696a3d831e8157ea1c946e35429c7ac31", + "signature": [ + "0x998b12c82d208af7c4b820626f2f7e015b8ee33ef5ae44e8a04f5254977865", + "0x55c341329a881afb29462ab32dcebb16d35c56021c3595bbba01b5c563f66fe" + ] + }, + { + "transaction_hash": "0x28b1b7d3d9cffd976b132f9bab0449d3504ea806e0e57cc232ae655d35bd744", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1133", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x448be464409ed22109fda440dabd68277df8d933cb94067486ce1aba6e493d3", + "0x79f0b5c11c02207cb4a1aefa015fc1868770bce365fb95032a69ef0534c06a5" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x16ad322870822200b6ad2bb0b0e337aa7ce9b24fc85d43da040ee2b4020def4", + "0x6ae545b3aa0ed55bff22bee5ee2eb9995d01167ae0fc43a02e62605c3a55663", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x454b02f55ca60c92915ac59d78ad99c6995a14362006579da48c9861f387731", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c1", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x554cede9332285e085719ed94724fb84ec97efd7eb2d90d3c570578a1d6a136", + "0x3ed04c35061c178badb0bf31159682c84749d982f178dbe6b18600e50999473" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c9021", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594390b0893", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c9021", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458d60a0da", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c9021", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594128f7baa", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c9021", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b560", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x531cd7a6c33", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f0e87ecd", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41f5", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b94db96", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f51d3e", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c9023", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4043", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c9023", + "0x464f55524c454146", + "0x464f55524c454146", + "0x76f7c0d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c9023", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3954f3a", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x51a67a0b88b1e1fa686ffc1e502639af10de12f5723ba1a845296a3193f7470", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11024", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x4395bede33cd26b9c85677fe5e573d470c7931e89c72d6bc20e5f760576839b", + "0xdfcd08644eb43bb688433cf36490135a3a6bc63a9c673bd6e580c333ddbd6c" + ], + "calldata": [ + "0x1", + "0x224d3c33d3dd10789e7d1075f12c4e279e2c6e81baa6c74801b5e6262f70c83", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x40fe731a9782af40749728ac28aae03aab3146a5cccc9ff52764e84fa2955", + "0x193d01", + "0x2519343f761d8112af7c037a0a4bec1d2c60067f2c6a752250f15ff9add74d", + "0x663c9005", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f51977", + "0x5f519c8", + "0x5f519c8", + "0x5f53879", + "0xb6e02de0204412666", + "0x1", + "0x2", + "0x2611a2f3066b59102f4e51551e276bd4c6db833ebad3cbd7dfca27c45b286af", + "0x2a5749410a00b2c244725626a1455971069531098fe7bb0245af44b257b2db9", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x5338cf45790c414b664a0300dca71dd6f2ee3866b50c0420964a6401ec935d0", + "0x201c295500a2d18ad8546694af6d0c63d2296c654bbca4a92bec2043aaf865a", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x70144fc22866ac5a2a6e277e611f1068c70a8bc8721768dc5416bcdfa9baa01", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x13ff", + "max_fee": "0x431868e791", + "sender_address": "0x4337e199aa6a8959aeb2a6afcd2f82609211104191a041e7b9ba2f4039768f0", + "signature": [ + "0x7fa468e1a046e6d25996e38d76adc4e67e301de62ed748bc69376d6e84b7756", + "0x106d2436b49a0f7dfea02dcc40465a4f766d76ece8827c34f671555c9633699" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7d8b7316000f9b6a8bc6ebcd31209873a7996d2731c30c8d04beb3eb9117a0e", + "0x71afd498d0000", + "0x0" + ] + }, + { + "transaction_hash": "0x8e244ceb4835fa67dde317b51fd68c6cd51141de6b7b151ce809e476432f4c", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c14", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x6192acb3c40ab233d382a38dd28abff5392e67235af55bfe58d762e120b478d", + "0x6acfc537c5a83c6f06d6b1830c4df56c6ced1942ab3ec7ab5546fd018db9fc6" + ], + "calldata": [ + "0x1", + "0x132303a40ae2f271f4e1b707596a63f6f2921c4d400b38822548ed1bb0cbe0", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x46f1db039a8aa6edb473195b98421579517d79bbe026e74bbc3f172af0798", + "0x190001", + "0xce40a05ed4683a264d4240e3d303868b0a9efad915238a6b3935c400d7ffd9", + "0x663c9028", + "0x102040300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x456fb06a09", + "0x456fb06a09", + "0x456fdbf6f0", + "0x45701e1351", + "0xb6dc58408e2e8e602", + "0x1", + "0x2", + "0x46f8b36c853ecffccf5b035e732c98589bc95b524c57a91de4840c39ac45b4", + "0x1813157a419c3612e957dc02cb7e1ae456324fc62708a703262f7f160d7074b", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x774d31f5b91b0f0ba6c6901d3b0c29592eeebe534ea2e2d79cdcf223249af49", + "0x1d786a140c31b44dc0b4d91c1876042b2b43bdc6af5f528e7d0c28cd7e1aa99", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x6ee051c34338a1f5920ab3c36d807068ed423d3cc54702faf9eba497aacedd", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c15", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x58d3893380456ec0ea1114425904e485c53a70d300cd5c0eeafdaa468c2f670", + "0x65c9af3471bd5e1e34abe7f2fa7f33d1f0e1efe7d6f0d4545fe377871a08d0e" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192605", + "0x5e92ef0e88d315b1e696f3efcfb9f9521cf3c572a61391d38b7a60c8bbbca4", + "0x663c900d", + "0x402030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x544bfebf", + "0x547f3547", + "0x5488b63e", + "0x5488b63e", + "0xb6e2f0ac79cda2dca", + "0x1", + "0x2", + "0x33d789f46e3d35f0d61bbeae3bb95d8e36f7fdf0fde9a5b8867eeb3dae09401", + "0xaaa2796d95044a78a1802e98698e5cf823d037b901a9e3ed2092d0a896013e", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x73a799aaac8888cdb2809423cb4f8b529849af0780f8215d720cfde31cb92c5", + "0x34f8b52fa3f065e78b1de920f615f7db797faa08e22dba11d7d0dedf20ba6f8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x1d3a82107c61410a0fc412e80af0642ed32191b3a8f5e9e2e515493d3aa85c1", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1134", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x2038bc58e3594773b06fd14adbcaca16a6c850f4bc908c0f9c1e5120eeebd61", + "0x3c0b4201ba7683a2a5a1b3545d699b1a50635596a91323f50fb316a26455a10" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x2cbe2e8145b35db6fbb61a8697385f81f16b8fb294b2d88ec7400bfc7edcbda", + "0x1719619dff5115817d628923dbdfe2ce19908e727d1ad57e91192f47b762add", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0xd43179a581d35efeabcb0bd41015acb584364ae193b08b7cfaf92403ce694", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c2", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x1e409552dd66984becd12d413ff372ea8436d59b12caaa4041e8211e99b1f05", + "0x42fb801b31e79b0d4cd564d617cbb93d56026a5804fbbc427599d452f24ad23" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c902d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5943658689c", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c902d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458d5c9a88", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5941279baf0", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b560", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x531cf4a24e7", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f0e8bba8", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41f6", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b950159", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c902f", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f51d37", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c902f", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4043", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c902f", + "0x464f55524c454146", + "0x464f55524c454146", + "0x76f8ff8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c902f", + "0x464f55524c454146", + "0x464f55524c454146", + "0x39549d3", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x29684514fe4a2a0ee5cd6241f6b89f0d42211175709d013f834899cf54ff6ce", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11025", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x4346c6c996c63396bad0f0c9718183a63297b81a23f469797d8072b50526f24", + "0x54c99c852d88b805403a3764c74be043f1df6a98c230d1026cf4dbf5ec23c88" + ], + "calldata": [ + "0x1", + "0x79c0bc2a03570241c27235a2dca7696a658cbdaae0bad5762e30204b2791aba", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4dde495a4a4736dcb99c96c0b31aee80ebf4d130d2fcc1af087d0b4ee1da8", + "0x193a04", + "0x9ba50ae2c364320e1db973dd08f94721d23dc9952c4c75101490d0f46dde18", + "0x663c9013", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5928f11966d", + "0x592b73b9760", + "0x592d5cd77f0", + "0x592d5cd77f0", + "0xb6dc234fa9b2f4612", + "0x1", + "0x2", + "0xf0b7bdc3b4ebf1fc867c55609d48389ba6655de4be2fab2ef9142c7f0b684", + "0x213b0954b6b3509d88613740ef6b0ce6508c4316c3fd9dd1d0b010b5208b401", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x34d13af7e7390545443210b7492b096ffcd4d31734cf5bb31c47ac7c4083e2f", + "0x4d6bb61f21d7cccbfb4870e5b3463e86f824dc9e86006502d58f656bf33a15", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x3c9bbf4a91179428f5391c337b374ba64d95bc045de12a8ee13cec4d2d8099", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xf6a", + "max_fee": "0x431868e791", + "sender_address": "0x4dafa0cc30eb25dd697be6b711d55eb3f7632e281ab47d451351cf5e24d5df0", + "signature": [ + "0x7f5a9bec7570e6ee12483035ae0ada78eecee5a14a326bc5908d5a78ef1e30b", + "0x6d1a4b5f744a6059d56a4c25c0e673dcaffa67e3849daf9154509a8e4bd3667" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7d8423b1fdd6035ef998d6160887a17938b066ae831ce6c86e84ef1c48305a", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0x4754b3d17b4e3bedaaabd4b737a4bcde16647802a61ae6d49f147a4aed0500a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9db", + "max_fee": "0x431868e791", + "sender_address": "0x723b0bb9291fad40e3ad9d36a08e82d9aa1981b25f9d6751afed600cd0479d6", + "signature": [ + "0x6c6dde0dee8be58299c3368d2ec74cc2a03aa1bfea8690024b6d3f8ea7ac93d", + "0x6a6038bdee0df4ec8664a3283ae6b6fc20eeddfb2010cf55c72d2c6bd54e425" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x28950b6d6872606038c06d36def1dc6d15180762e190d6f0ff1f63da1364e07", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0xf077816ace13d5b37cae884155cfd6777f85353c0f9d8e68b93616e485e769", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1135", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x7e3416e679955359639a3acfb18f8725582531214d174692da982b38a5559bf", + "0x13fa6d957541ea579c5fcd0611101d0af6b6c227660ba22396d174a0345dd13" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x348f560344334951bcbccd27aff05a9f6bedeaefc36315fe20e842163adae3d", + "0x4d0c6c97869d1f0bee11f147af2d0a389e3e354103cabd50e7204bea6a71d60", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x64e123a00595b7e849a82bfc719c95fcf49611d82182786e7e4872e54bc5a7c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1066", + "max_fee": "0x3c96691d889", + "sender_address": "0xaa5c7c9554d61184c83cb8a35580d4cb4a0379cee16229af361695576a2dbe", + "signature": [ + "0x7024ab983ceb4af55a98463e7adfa7f708415448d24cb9f34b95643ca39cbe8", + "0x5e831dc821c3f93023ef54ed20f51a618c63bd76a3faa7f588fe8bcc72509f1" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x436f6e737472756374696f6e5374617274", + "0x4", + "0x5", + "0x25fa", + "0x1", + "0x1dd" + ] + }, + { + "transaction_hash": "0x6171d53d908efad9861c02e7ab0a0388f3d560adea53dad3e8ee42df8f21a96", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18f7", + "max_fee": "0x431868e791", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x8761eb114cb2a77db9a49e4fe65cd3393fbd20262ad4693365f763d2febe2f", + "0x66e94bba33f9a068e456590686723391440be6602ed1d5f379e73260d7d3509" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x410d0d31e1d66a08470e3292eb3b787dbefc692f95baff893e7ef18c4e6b2f3", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x265c9365597f98f5fcbb99ab468bc9d6ea2bb25c5ada088167a8ab9b4fdb20a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9dc", + "max_fee": "0x431868e791", + "sender_address": "0x723b0bb9291fad40e3ad9d36a08e82d9aa1981b25f9d6751afed600cd0479d6", + "signature": [ + "0x2885f3808aba108f817ff79676c122c5cf59b025118611506ba3ed6133908b2", + "0x6bf9754f09802d7ac9e5637f5b443a88be7a26f5ee940cb3d901e35b9579140" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7460bfcca5d11c3ded7463548f1c3b80ebcd4e8e20917413b99078972d35a28", + "0x71afd498d0000", + "0x0" + ] + }, + { + "transaction_hash": "0x47f549aea4ef454814fd127f27654c13de886b67c4b794f7916bd0d754b1e46", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x3ac37ca280", + "contract_address_salt": "0x2edb7d6268e82937b02e32aa0c86b8e085d7869b39dfa5453a5221ed4cc26c1", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x2edb7d6268e82937b02e32aa0c86b8e085d7869b39dfa5453a5221ed4cc26c1", + "0x0" + ], + "signature": [ + "0x700f15f61e1012d174c3db3ab65d9179029a1aa9f772e128c272ee06dc2072d", + "0x3c4eb7e69ad6a7372250560a4e25493f470838533ff29b2167b23c8dfa3d7a" + ] + }, + { + "transaction_hash": "0x685566a806ea92570ca39f2bba5cebf9a820e24f8311d59900e511bcdad5764", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1136", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x46aae101077c12001070deec78dec5c6e71becad66a80f92462d87c9df9f5f2", + "0x405e20f73528bc8e7b8e941a2822fea680cd7b5bc4efa31bd11dd6533fbce26" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x2cbe2e8145b35db6fbb61a8697385f81f16b8fb294b2d88ec7400bfc7edcbda", + "0x3d02f9e8ae59852de8321201bf99086a286af6423d002c67bf806df9b1a08ad", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x5870bc49190555504c0369ce9300127a608a8ec3ce2ead1b6b0bb411ee97d2a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1400", + "max_fee": "0x516a7bf111", + "sender_address": "0x4337e199aa6a8959aeb2a6afcd2f82609211104191a041e7b9ba2f4039768f0", + "signature": [ + "0x734515d3da632f69e2f9a1fcd864924778c1c95ff661b3ad7ea97a53122ff8b", + "0x638d3bbc36ebd50e050df59e882aae1888d207cc4f97117008b00be4b0b4253" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7d8423b1fdd6035ef998d6160887a17938b066ae831ce6c86e84ef1c48305a", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x59bacc61ba0b53d7c6d13811952522a96ba0ebb19f73a42eb3c756a9a533cba", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9dd", + "max_fee": "0x431868e791", + "sender_address": "0x723b0bb9291fad40e3ad9d36a08e82d9aa1981b25f9d6751afed600cd0479d6", + "signature": [ + "0x5289b56898df47f794a418423f3929d1e66ee5a9f474397f2ca14e0febd45d4", + "0x4d8a3323c4d138e1e302939b053f178c1b4f85c683457d092672787e35c2caa" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x759778fff5e38e78abdae4674a359a7140ebd245166da59dc3ac729784250e2", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0x30a23234b63c563e33b202f6802181c3b8103c82052e957b48498972f918aae", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1137", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0xb628041d3a51d8ceb97cf2501be7bf54676422c95852f4eeed751aae04908a", + "0x33f686e1390982ac5c54bee2ee1e59f2e168236561b9e2384ab93eb3525d5d" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x362398bec32bc0ebb411203221a35a0301193a96f317ebe5e40be9f60d15320", + "0x1", + "0x64" + ] + }, + { + "transaction_hash": "0x3e2fdc4fded8e42d196fdcc4cfbd8cb5e9e588271ff0d3f039e40aef2c3b5e0", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x3ac37ca280", + "contract_address_salt": "0x44bc657b3bbc09f44ef60aa96a387e2417b9adfaf4e0cecd4805eb12ccbbcb1", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x44bc657b3bbc09f44ef60aa96a387e2417b9adfaf4e0cecd4805eb12ccbbcb1", + "0x0" + ], + "signature": [ + "0x200ce1c6df3795e93d129e3d8d59c1c82b89ac62777f8f739ba104a5480eb69", + "0x1e0c7a364cb035317f1652fda46dc6034cfe01564ec161582ac27f962da9705" + ] + }, + { + "transaction_hash": "0x532c30764fe78b7a387e636431066bd21fd2c837768afcbb7dd9f13f7216b4d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x8162b7e8ec", + "sender_address": "0x7d8b7316000f9b6a8bc6ebcd31209873a7996d2731c30c8d04beb3eb9117a0e", + "signature": [ + "0x2c81a8c4b8d3fc36f69d3f718235898647d0c169ddafb4054111e1135034737", + "0x21ac200fd89a44f397357b41de030d62e2b6c648cb69b70198d71f70b7efcbc" + ], + "calldata": [ + "0x1", + "0x7d8b7316000f9b6a8bc6ebcd31209873a7996d2731c30c8d04beb3eb9117a0e", + "0x309e00d93c6f8c0c2fcc1c8a01976f72e03b95841c3e3a1f7614048d5a77ead", + "0x1", + "0x222c2f741930cdeadb1bf6585d68f47ab7c8066adf32bb3b8aace46bc14b32c" + ] + }, + { + "transaction_hash": "0x4dc7ed3c082d25dbb3d5351fd8f964a805acf75e99bc9e94d1c5717e19aea41", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x689", + "max_fee": "0x92fbb63b0b9", + "sender_address": "0x386b08cdb00692197f60f5bd31184d7f1f53da308c5f1d21de48cd7fac4055a", + "signature": [ + "0x6f6567d830c573742f37806058ea098431edaf205b98e91477d4a26100ca3df", + "0x26663cafa80f8c4719ed5f94f62c0ef6b5e806ac3db65022474077fbeeec405" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x11", + "0x50726f6365737350726f64756374735374617274", + "0xf", + "0x5", + "0x20b0", + "0x1", + "0x59", + "0x5b", + "0xff3b645a", + "0x0", + "0x5", + "0x247f", + "0x2", + "0x5", + "0x1e30", + "0x2", + "0x1", + "0x1003" + ] + }, + { + "transaction_hash": "0x11ac20bed9df3a53a08bdb23f03d21ca4b32ccd4620830c28775aa1c05b0c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9de", + "max_fee": "0x516a7bf111", + "sender_address": "0x723b0bb9291fad40e3ad9d36a08e82d9aa1981b25f9d6751afed600cd0479d6", + "signature": [ + "0x2945438fc8d2aa5c68bace2b7bc8c1f58960429beefd68a6388e644cceb7d23", + "0x35c3a95f810372912ec6a8e0d73f3a0544e47a6926ddc133f3c60a41efcb65d" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x759778fff5e38e78abdae4674a359a7140ebd245166da59dc3ac729784250e2", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x3bdba77237a5c22ab6f9e5ec20746798583c7701b75bb42287fcd4ada7ece91", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1d73", + "max_fee": "0xaa87bee538000", + "sender_address": "0x279fde026e3e6cceacb9c263fece0c8d66a8f59e8448f3da5a1968976841c62", + "signature": [ + "0x21e0bc5df953d31e21b79951a568e5c1ae9dae8f29a20298eaa3a85e7e12a3e", + "0x2774ffa85d7e373562bf3630b2180dc6cd006ecc93b3c1eb54bf6d6aba6036b" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x4e", + "0xb", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x456c512280", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x767e385", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x59047a634cd", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x50ea1ec5f5", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0xc5cfa2", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x2fb10323", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0xf3b2f", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x5e406b2", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0xf341d", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x4c7add8e1b", + "0x524554482f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x4817a", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x1eb4dc3bce5cc98391d4cfe8bca95aa609730bbbf6a422ee5b136c46ced647d", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11026", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0xac970b65e3c098a8c5652f1b1cea66b1458a711dfdc03a4075fa4f34cdb09a", + "0x421bf4cea9f5ca9b6abedc99d5ee2f01106080a3fe6ea050a2ea7171216337b" + ], + "calldata": [ + "0x1", + "0x1730b20846e904de106ec706a41d7153c8fce8f670006e239989f76539659af", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4128bc4d1ff1a2c4b3eac393be3c77fb1fe39b69e026e425c1cda857ef9b2", + "0x191901", + "0x17c0a9489c5a15019f09a97fe921a1f4582446fcb12c185ae5afbe5a5303a6", + "0x663c9049", + "0x304020100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5c042", + "0x5f5daf4", + "0x5f5dcfe", + "0x5f5eb82", + "0xb6d96967d008444b9", + "0x1", + "0x2", + "0x4fe258bc38bd0a89f358810420730cf2ffdf89cd16639722e01a5f7902beb43", + "0x36e86e6cd4b243d10532c3c4d6711cde18e4d05ec4bcd86901430882275141f", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x4c22539575f880707f4a05cd9fb950de78c231d10c67dcff50e3303bb254771", + "0x39676beadc90cab733d6a2a30c1fd1af8b6a0e1cb781a12b8f59cf1d34e6cb8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x376cc7a859a71641813a455f06689b0c7389de8c78a9c3cbeae4fa967b1a4eb", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1138", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x745d135e14e374e09309d34eb1dcf428b887ba6209eaf47b7622718ca5ae3d5", + "0xfbf9b387cdd6866e99c125afb1ad02668812b15548f0fa133f03d8ea1b6936" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x362398bec32bc0ebb411203221a35a0301193a96f317ebe5e40be9f60d15320", + "0x1", + "0x64" + ] + }, + { + "transaction_hash": "0x29881088c9b9071a5c60ebc798dccb570c6190d2bdd498f1e4833778d244c86", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18f8", + "max_fee": "0x516a7bf111", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x35e1213522b13458296dc9c2482fe11b225c988105dffeeb88b1fde74a2b6d4", + "0x350fded527445b5967b1bcf2aeb5850bbf5a47e26ef3f7bbcc28c71affb16a5" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x28950b6d6872606038c06d36def1dc6d15180762e190d6f0ff1f63da1364e07", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x3a05b2a66d9de255eee0ad4e7be398f86d53a82114c0f8d0eab980d88f59650", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c16", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x3a435814045fd65b336790507d4f5d5a87c57331dbac72092b66336a9b9ca30", + "0x46672f3742231c553f9a4ac287e7e2b05d9d2e7e0297a0aa72dd250cb824411" + ], + "calldata": [ + "0x1", + "0x12b0847cf221531f729090c10161692401c94994a033467c496db63a3d5facb", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x44b4d39504a21b1495d082177bb8455dd2116642deabdc35353b5785642dd", + "0x18f803", + "0x7d64ced76d7ec11e149afb0360449b46e68333c50ee824b275088b12aec7e4", + "0x663c9036", + "0x102040300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f4d5d0", + "0x5f540ec", + "0x5f565b8", + "0x5f5ab2b", + "0xb6e3fc957c38d00cc", + "0x1", + "0x2", + "0x4da5bafd4f70ad1e9ec79df1262c4b2edc99a9e71124b6bf962ccf27f201a17", + "0x1d0f7bd5d3d63e5fcbcd16d219b76b60f5f235fe3864a5a2a54af989fb42d8", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x7ae19ee3927f6db2e188b14ec8714e50abfd3a02cbd526aa7020fc3b34740d3", + "0x3e261231117174590eae6bc9d3719fe6c1f51603cffd91a30a43350ade8d464", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x768addaff39179e9ab90dcd2c553a715bd1413694855075a893c95adbc26bb3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1067", + "max_fee": "0x3344c4a74ca", + "sender_address": "0xaa5c7c9554d61184c83cb8a35580d4cb4a0379cee16229af361695576a2dbe", + "signature": [ + "0x257f9d99e2ccb616ed52cfef7052a8c52d09c313cfa8dd3a17f336350106059", + "0x4a15c0171b677291c7522c1ac138de975af8dea5ca643de3612468530c9e639" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x2a7dd90100", + "0x65888559ae70ba4fcda91d689ff92d57877d030115d0b4deefe2965728ca307", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x18f54f00000001", + "0x1", + "0x1", + "0xba4", + "0x2819a0", + "0x1", + "0xba4" + ] + }, + { + "transaction_hash": "0x9b58f4070fdfcc7fc7ebec65439ecfe6e685b485a4d30ae8762cc8604877d2", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1139", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x6672e17abf61835f003da5faaf50d4506b0cc8439e5dbdcae04291c02262697", + "0x413a62b97df0e157878d8aa145486605916396791c4b22923efe0e69bd7f749" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x20cbe051691c714b9bcc3f3a599bbd419b5b1c0b239544efddd99e94217317b", + "0x1", + "0xff" + ] + }, + { + "transaction_hash": "0x27086e19f056c5c747db2a506f7488515398e9f8a217822002010cb8d72d1ab", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c3", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x5c984ca7772a61c1aa7ebaa69b2287908dde5403d6c23aedc3aab74ce4b0cd3", + "0x67b4923976af7db56105d2ad5ff37a5bbedb67f5a1948573d3eca43bc448bec" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c907c", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5942768d8b1", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c907c", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458cf157e4", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c907c", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594048b89db", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c907c", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b560", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x531cfd0f771", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f1f3a43c", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41f4", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b9583e8", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f51b78", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c907e", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4043", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c907e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x7701543", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c907e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3953fe3", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x6bcce0337959bbdf561ead0be5208e0ceeb9a11d812c098214669de12719494", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xf6b", + "max_fee": "0x431868e791", + "sender_address": "0x4dafa0cc30eb25dd697be6b711d55eb3f7632e281ab47d451351cf5e24d5df0", + "signature": [ + "0xbd101f40ba59c99510f355818eea4c0f2b569c621c06506d5cfdd28434786b", + "0x7221b247d1345b8430625d74825731b36c140e5f6cc0a06a76a6fefc25cb4" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x36e72f0943543dc5150b9095dde64dc451fece86a6f6186af469938258cf9bf", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x595e57a9c3804851b13bcf0581aee58e689cb1282d38af9249d5aa488fbb8a2", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x70896f2056", + "contract_address_salt": "0x4259fba114978a4105cbfee9721eea65a208cf4aa50aff8d15e4e7e3a5b872", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x4259fba114978a4105cbfee9721eea65a208cf4aa50aff8d15e4e7e3a5b872", + "0x0" + ], + "signature": [ + "0xf819ae9ef9c1f6e37f7f9f29d222521ae2c57cd8341f6fcac40c0a4331ba08", + "0x734227adea827c4a3f9d0d88f6927ffb4a55274deb35fc7483b97b7a03283c6" + ] + }, + { + "transaction_hash": "0x6a73b609025b845b41b32877ffcdd9c84503fefde735e8fe44ed7d1490dccbd", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x862f905a0e", + "sender_address": "0x28950b6d6872606038c06d36def1dc6d15180762e190d6f0ff1f63da1364e07", + "signature": [ + "0x7c7951f78f03c0dd03521cb04e0d9008f7e1db208608dedf19a059e379200d2", + "0x6dc200dbf99d78d1f87015453d1c5f4a09748fe1ce712e79ce2cc830347546d" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "0x1ff973cafa8000", + "0x0" + ] + }, + { + "transaction_hash": "0x2e99ccd7c97be4afac75eebf72d65cac1bd6d16f5df44a713acaf6202b1424a", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11027", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x198443b0972edd66492d80514969874895bc33f7cfe6cc52f50542aa3b2139f", + "0x40ad729f5d30d1b1ccdbbe433e948395ee284e30c9b7449989138613dbd8979" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192701", + "0x2f57bd84043788f1ef906d270f553eaccde4287b2962537d01861e0a92452a", + "0x663c9067", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5488123c", + "0x54889524", + "0x549728ad", + "0x549728ad", + "0xb6e2f0ac79cda2dca", + "0x1", + "0x2", + "0x7ad6fd3c60e5dc301cd525d9ee5578cca28820f62fae2a4ae164d412e8aee1c", + "0x113a2beb25d27e6ce20beba6ba2bf40e7a4111727576c1417ec94bf86192d1f", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x425042ab3f99bfadda34c7e850c0d5f4cfafd96522ba09928cf23dde8f9c6e4", + "0x3d1cb83f7498c28d327f0a308154f1090b63d762542a63ec18ae0b9035723a8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x6637a6cabdaf6822d4f984cbf2c2716177e6698c2cb5b368cfdd4d2b102857", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x7089fb0e6a", + "contract_address_salt": "0x6535e40dd8015aaceaf0b39c808741ce885da9e7fb30daeeba3ec831683ef20", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x6535e40dd8015aaceaf0b39c808741ce885da9e7fb30daeeba3ec831683ef20", + "0x0" + ], + "signature": [ + "0x20bbd0123e5b9c418896b364c620be045dfba45abaada6f2b8012bd0c267d0e", + "0x6005a4f10093dad066bf653bc026e41e6bbd110551c834b4ed925d42b7dbf9" + ] + }, + { + "transaction_hash": "0x1438c7206688aa9b096537114aefe361a1ea5fd2fed89b5c105dae8de6f6039", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113a", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x282e38ca937b8d96136759c67fa3573101ebb1adf8436aa90b16a7f2aeb506e", + "0x1a6771f69ae39604c91d32e742ba8fdb7f46ae9afd20a6ad4a958eb9aa6f912" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x39cc14c53224e0c3959f62b52de46909ab05c7b8196add5e69255fd8cdcdd96", + "0x1", + "0x1" + ] + }, + { + "transaction_hash": "0x2b70812630a11cc1c62ee9cfbf4cb025552a02d076815cc636a0514db3878f3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x862fde1ac8", + "sender_address": "0x759778fff5e38e78abdae4674a359a7140ebd245166da59dc3ac729784250e2", + "signature": [ + "0x274ddca49759b790637d9c81bc5d9efc800af94b124df0e054bd48dd41a3f0d", + "0x10403d26c6d997f1f19be2c9749c02646f08a600850d8337cfec6aedf01a56d" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "0x2385e30a269e11", + "0x0" + ] + }, + { + "transaction_hash": "0x5f3928bf16cb1ec0134d8ee232e44035e4f1bdecdf883553a072ad50ec9074", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c17", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x35723bc5e016098355af7f96e5631d1fc3080377135ed0f0c1385994f2018fe", + "0x1dd06270c0271c4f7e2daafe33cf2461877308f973f45147a7d7c2710af2609" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191901", + "0x526d47ce3564bf7219599f06ec6ba4c3f8886c2e9a313975106509e99496b7", + "0x663c904f", + "0x302040100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x20205e8e0", + "0x20212acc4", + "0x202193120", + "0x202193120", + "0xb6dc365a5dd0d97a2", + "0x1", + "0x2", + "0x59b39ae7a6d761d7b16fd9ea67dae7d9c82329a24b56ce9f297db62eaba31e0", + "0x3fe263ebe91c5a8e6ba1cda482bf1fbee6bd8244eafd75791f0a1eed9371578", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x5446a7d0d41e0b9a016f082fc0b5504240d82a4eb3cc55c6c145e824f72c22f", + "0x9c7a5618cd62bef88154de4ea9008ae3f8667452ae240c2c92965b933e4c79", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x1da0485b4749456d985a96e2a7b22869200aab5403a1c368321b6f1211c4007", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x7089b458d2", + "contract_address_salt": "0x6b5ea50a65d300099ef3ed48ff81b9593357f721967974fb547bbee1f308d73", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x6b5ea50a65d300099ef3ed48ff81b9593357f721967974fb547bbee1f308d73", + "0x0" + ], + "signature": [ + "0x3ecaea4af1ec86e3bb12265c20e8bb58b88e90e12ffa3daa20179690b60b0e", + "0x13c922bb9dcd08f5db014bf48d31b478f4648e30352aa0e8d56996c2d305b87" + ] + }, + { + "transaction_hash": "0xb250945441e4ebed09c383dd60b6542f3e707c81c949578d889e10fcf6667f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x862f1e96f6", + "sender_address": "0x7d8423b1fdd6035ef998d6160887a17938b066ae831ce6c86e84ef1c48305a", + "signature": [ + "0x3ef1a720da66be9812a2a9186cd75e45971dda1f7f04d0d2ba8d51b8f971e62", + "0x5cb428cef5a1990946b5dcbebac26f1200e9fff59fabdc599795d3bab193d19" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x1609fe6b78cd9d0d9f7afb8e500ee0b774653b2ed7b2267340f892f958d8dbd", + "0x2385e30af0a823", + "0x0" + ] + }, + { + "transaction_hash": "0x5a6b257fee658ded7b01f149f037bae0d4d84fc2920c1a3ef976c7d1c72f1d2", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x68a", + "max_fee": "0x95af2607fec", + "sender_address": "0x386b08cdb00692197f60f5bd31184d7f1f53da308c5f1d21de48cd7fac4055a", + "signature": [ + "0x1f1f64ea125fa42521a5014a29b6241491f16955f8fcab540b2aec19c55ea0c", + "0x1b7b4c1c01745031e47d56eed0d5e1df59836ad90abe1f73b4329837389019d" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x11", + "0x50726f6365737350726f64756374735374617274", + "0xf", + "0x5", + "0x25c8", + "0x1", + "0xb0", + "0x40", + "0x548f5c28f", + "0x0", + "0x5", + "0x247f", + "0x2", + "0x5", + "0x1e30", + "0x2", + "0x1", + "0xfe7" + ] + }, + { + "transaction_hash": "0x1d6f46dd98578817f87df795ce0a2622feacc0bbc604fac8ca4b95a0018c927", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113b", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x3169ff1eabc3d6fc3e934cee3a9962a11d940188c6c4a1e080d4569743c46e7", + "0x36c2862cf6e65b2a9c7da1c323d6d78c9c758c412d87f20c3e793e4ea51ba9c" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x39cc14c53224e0c3959f62b52de46909ab05c7b8196add5e69255fd8cdcdd96", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x1af9156d0c94088d63e55d8e6d0ba511955c72630116fd935dd52a3bcf8cfc7", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11028", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x251516d2136511c78cd03653be698943fec26d2779d29cda59869628f9ba0d3", + "0x50f76e65750fc2b6436ebdfcad3f441e178323cdbe09a001af9ce93661012ec" + ], + "calldata": [ + "0x1", + "0x224d3c33d3dd10789e7d1075f12c4e279e2c6e81baa6c74801b5e6262f70c83", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x40fe731a9782af40749728ac28aae03aab3146a5cccc9ff52764e84fa2955", + "0x193d02", + "0x5f94e12173b304f3b0563f562c4447c73e84f854fa803a58bcfcc5e4cc1e38", + "0x663c905f", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f51843", + "0x5f519c8", + "0x5f519c8", + "0x5f52775", + "0xb6e02de0204412666", + "0x1", + "0x2", + "0x538ba409f053a576b6591244d8ffe8e86720bb84ab954ea17df315e44f62980", + "0xbac676ea28c38fce7e29192e4567da57a62a5cd57e1ede2a50006181f8ead6", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0xa1f8d929561ade664957b7585b00ce93651b5afc616e336f50211567398413", + "0x229c3d2756b6f2bad270d7b00196f3cd86d271d315f09d77750bd199ecb9be3", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x5587fe95b898809fa3c4f300d2d80cf4a56f190dc1a054e683fa28949d37e9d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18f9", + "max_fee": "0x431868e791", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x13a0b29d2bce95e3939c78ea76a0790bcb258924d030dc8baad0fbfe3b821ae", + "0x1502ef2d94704ed248c26f7155a51a7e1b13e1c383e97e92454b130bf628ede" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x28f4c3f9b516cede942c7b58845dc6bf4a26171af49a5f2cf56dc56faeddb88", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x5251568e4c4dc5e925950d7d90c096f1573e160fd7a6959879baeb024a3df2c", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c18", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x7ba4cd6504d0356dd3076461947e41e6805e9c92f5f822c7ac2391317ecfa1c", + "0x48f9abf4f98ad15ff40ea45cff5433078e1bba1b53823fe72e53d6189cad6d" + ], + "calldata": [ + "0x1", + "0x1730b20846e904de106ec706a41d7153c8fce8f670006e239989f76539659af", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4128bc4d1ff1a2c4b3eac393be3c77fb1fe39b69e026e425c1cda857ef9b2", + "0x191902", + "0xf4adcc2cda12ebcd70e78dbd1238f773405db4fcf22a1aff38eb9a42d8a16a", + "0x663c90a3", + "0x301040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5bfcc", + "0x5f5d30b", + "0x5f5d47e", + "0x5f5dcfe", + "0xb68a2b4012c1801bd", + "0x1", + "0x2", + "0x1b268f4cf131932c007e8ddb676a5a4d048dd13b85d99b16f43ce711b3dd50c", + "0x415b88b3dd25e9e3a8b5ccc326f4b9f16432c85c214c79ba2a35e2b3c43fde", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x79cb73aa7e642bce0193698ffaae018fe8d6d3e5b9fe285dd9e16c6165860bc", + "0x3c2c98a15f40b0451be66c99c09d7a99ca61bd3315ab840b5256e172b5035b8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x69e5d729b357ca9f883d621ffeee7494fdd0321c89edcf6ecc41323eea7c2e3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113c", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x4c4342205b11192e1e74ab7ca5f8256ecc57adcbe109aab019c5f060b2eb6ec", + "0x558c7b9cd8cecc855e00753edf46249c94fc71ebb9a44381719ec07d3af6e8b" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x39cc14c53224e0c3959f62b52de46909ab05c7b8196add5e69255fd8cdcdd96", + "0x1", + "0x1" + ] + }, + { + "transaction_hash": "0x647eeea01568af856779428fd67aee15b9103770a51b3d9184988c3772dca10", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x3ac37ca280", + "contract_address_salt": "0x6ee0abca4092c6628a330118ce58e1708f74f7d98551173f1421c0b62e7f811", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x6ee0abca4092c6628a330118ce58e1708f74f7d98551173f1421c0b62e7f811", + "0x0" + ], + "signature": [ + "0x3a2c79468399c8525d029cc18bd0a915c050fb91c9e170844716d8bd20b993", + "0x3313af7fb7f65951e4fcae5567532be01df0966d3bf3205f9fb79e4a002f48c" + ] + }, + { + "transaction_hash": "0x8eb91683e4cc8f43842bda57255b6d5948771bccbe7242e2e001a1b08f6095", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1401", + "max_fee": "0x431868e791", + "sender_address": "0x4337e199aa6a8959aeb2a6afcd2f82609211104191a041e7b9ba2f4039768f0", + "signature": [ + "0x2af685b94001ccb1b85f9e167c3c0f5da6728d3b14c4594133bbd8f1a7057a5", + "0x361dcddc5726f8bd7051fe3e6dc3de11804db77797c6a5870aff7f071948205" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4297ef9d32c91cfeb7c7a5d992f6857b8d84957acbe00aefb27e6b8ed34ebff", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0x5aec664a35cfa112a9a7ad2569b354506282df6641ce5010c5d71decb8cd4c1", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c19", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x3aafa3a2ef3682eadbb44ff1cdac5b14c8c3bb167fc8079c2849a66d3ccdae2", + "0x3950c86c23b82fa12250019ade676168bb8bb545b651162f463b327bbb883f4" + ], + "calldata": [ + "0x1", + "0x12b0847cf221531f729090c10161692401c94994a033467c496db63a3d5facb", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x44b4d39504a21b1495d082177bb8455dd2116642deabdc35353b5785642dd", + "0x18f804", + "0x7176b743fed02c98c80f9f9c8d58b2336053b0b74b4f984302ffa78e095648", + "0x663c9090", + "0x102040300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f4d508", + "0x5f538c2", + "0x5f58d16", + "0x5f5bcc8", + "0xb6606cb206bf4a407", + "0x1", + "0x2", + "0x5232d4ac07f303851a09f6163f57e5cc6140a06c6e7b4c61a2fd86ee04bc7ed", + "0x2ee5614becd19903c8712751d3a02bdb0968b1beea1d0490571903b2b6b06ed", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x4ce3237e941d7a0ac45892777fc0a0115c00a2ddac62b6febbfe844b168647a", + "0x36ec18f6c6e69476678341343e2865d5f482d21270e603140cd79fa024dcebd", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x2411dddbe7d17c6e57f9ae5ece5f2bb65078977213edb7c5e4a6cc6f6f74c9c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113d", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x14a03fa7b4ca29a27cf2f83566adaa85383a7dbcf3315d579f391673ee949d5", + "0x5f46f6dde230af658270e96139caa3bd64ddaad228ec313c160876a2c3d40a0" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x2e7cee56dde1a85a9f26d9d3d7b4204fa30dcfa87f7cfa41de45d553bc9bd73", + "0x1", + "0x7b" + ] + }, + { + "transaction_hash": "0x4cf50020576c6800247e73b4ce4de5f0334f4f7502448e3b54261fa409c21f2", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18fa", + "max_fee": "0x431868e791", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x65c4bd9197da2b3d4af73801dcfdf451be34d1d539dc6c7cf939e409d27744b", + "0x2599846f8eb4d4d02a1bb9f3b1eaa47db849e74557d3d756d474419e0f23321" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x566ad22f0f913dfe7dfd44b62c917bdd931bb6b0770ae25b89f0f262acbfe3b", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0x2316ed749eaeb1c3e5cbb8416fc72e739ec5a373e2035cea82b1f4042295ed6", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c1a", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x90a3382857cb2410b9dd7099b0fe4e767ef520367e19bba9804036a5371307", + "0x70e60790dc7292b78ccfc6268c2dc025149d8c6e9b080bec8aafe04f6341644" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192702", + "0x351cd516338d130af3de970371fbfd9b3aea9a27fb0b3442425b4aa8e479d2", + "0x663c90c1", + "0x201030400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x54818db5", + "0x5485ae18", + "0x548e9f28", + "0x5499d27e", + "0xb66c74a824ae93f99", + "0x1", + "0x2", + "0x6ac4c5b3544f62b773a44a7ade09fa48d37bcea95709a50a877fcf56014b55a", + "0x3f0a058272e100f36c0f241879a08728efa00fb68d02db4a42de01a798b4be5", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x58116de08551bcab31a7707db6e182358457012d314bbbeef2f70a5fe158c42", + "0x3313b354d548a3d0fdd244c531f95d84a77dd969d84f49fba83b79b761018b9", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x341605ba433f1a8ea7b6034656f22b1be2d239c669b9f13936819124b68268c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113e", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x1c2e2a58f367a54828b4f182e54abae1408e3b7cc83b82c7acf775d91cc88c9", + "0x1579475252c81e5942674681cf4b66eb63ac04a2d1421ec1493de848101ea31" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x362398bec32bc0ebb411203221a35a0301193a96f317ebe5e40be9f60d15320", + "0x1", + "0x64" + ] + }, + { + "transaction_hash": "0x5dc9c4c8d23d3962eaa7c45c5a0ed4156a912ddb4ce39560bab73fcda2e9bfb", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c1b", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x777927ea6ec08ab89c7f724595cb87eb80f402dd7015615b3cfe9a8586e52b0", + "0x1415e4848f61ce256d43d2572fcf79bebdb664e92e8c8ba9513931aeb3cbfa7" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191902", + "0x1363e2e851f71a1dde904b7bd6d77ee09ab9a59729b6fd9a8339d1e75f6c12", + "0x663c90a9", + "0x302040100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x20210f0aa", + "0x20219f790", + "0x20220fb7a", + "0x202340c20", + "0xb66b3ef8c4fbc61ef", + "0x1", + "0x2", + "0x2b460aa7f29195372bd1251e5abbd0e62af696cfab919d605c028a0665bdab0", + "0x1a168f7b59ed303767af4bff35b0b202bf35599eff4cff4e92862c0c8545ca4", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x2edcc1cd4289556d11ba488a420d4ed5ee8dcbdd1feb98102eaf09399af79a7", + "0x37a1991966be0119fbffec43fe0a92c2407c2b4dabad264126192896e6182f4", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x2fc697ed6ac8251ce5662d9eeac045b296233895dbd19a19d2154a56d80b406", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11029", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x4102c8917263d790ef7162daa01f0f30dbd05905927c911544bacab8a842263", + "0x54859b0b8ba1c61ec0479e20542a91a5f5c253458479b207cd246422f254a77" + ], + "calldata": [ + "0x1", + "0x79c0bc2a03570241c27235a2dca7696a658cbdaae0bad5762e30204b2791aba", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4dde495a4a4736dcb99c96c0b31aee80ebf4d130d2fcc1af087d0b4ee1da8", + "0x193a05", + "0x64326667f2efdaeefec6420702463dc2fd728b01ff60154705b2ba67b2ada2", + "0x663c906d", + "0x103040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x592adde9c03", + "0x592ce9a9000", + "0x592dbbe0ff9", + "0x592dbbe0ff9", + "0xb6d731dcba4af4767", + "0x1", + "0x2", + "0x3bf4ec0be331d4f21e3c956d33b2971f5dbcfb8650ccb5938ae613d61a64612", + "0x62ebd92662680e77b3d03bd532655e55a18c5c6db3576c437cbd61251f0b4d", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x3e69e193a5251516d2ea79b190bfcb68f9cfe3a4f931ab27ce7349462365db9", + "0x2b4737ab76f5a34bae46b291fae24c239a604a3b64b2541ae508218051fa675", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x9a21aecfa0bc6cdecae0e84b4f48c036d9523be4a544b0f726b31f8b3ac56a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xf6c", + "max_fee": "0x516a7bf111", + "sender_address": "0x4dafa0cc30eb25dd697be6b711d55eb3f7632e281ab47d451351cf5e24d5df0", + "signature": [ + "0x4989879efb914f7c37924b8f85623bca44295e3e0c99c85cc976bb31373790e", + "0x4aee85e3ca5a32f4e488e9f017e88d816167b3784f32617272d7c47b312a453" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x566ad22f0f913dfe7dfd44b62c917bdd931bb6b0770ae25b89f0f262acbfe3b", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x4471aefcf6e908d53109ae93a1b57c54b773b7da79c14c88da1364b437a32", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x81622454a8", + "sender_address": "0x410d0d31e1d66a08470e3292eb3b787dbefc692f95baff893e7ef18c4e6b2f3", + "signature": [ + "0x4ba9219c6f5937b01259b1481046fba6f23713e7ee793571cf5ac80c07c0f00", + "0x59ac3d720b475ccc158d6325b197d44dc8a82f80e74cb31fa4094dac0382a2" + ], + "calldata": [ + "0x1", + "0x410d0d31e1d66a08470e3292eb3b787dbefc692f95baff893e7ef18c4e6b2f3", + "0x309e00d93c6f8c0c2fcc1c8a01976f72e03b95841c3e3a1f7614048d5a77ead", + "0x1", + "0x4ecd26a0aaba3b8215a99921ea5225c2c33d8fec9b5ac32021af233071d2f42" + ] + }, + { + "transaction_hash": "0x37284dae0ce9325aa27a210166da65ed7c72ebb0711c55b571dcbd62629b9d4", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113f", + "max_fee": "0x3254fe786f", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x24df1ac354e1eb630607b54675195dcb8a5d41c785a23e650c4f950e59dc32f", + "0x1be5762aa48dbd09cf6ca7c587a3b16c72df50963f68692a24de8179c08f99a" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x2e7cee56dde1a85a9f26d9d3d7b4204fa30dcfa87f7cfa41de45d553bc9bd73", + "0x1", + "0x7b" + ] + }, + { + "transaction_hash": "0x2b0f71c9aca8739e84a82f7b38f594b0b5278ec85d29a3697bb4a0751993c73", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c4", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x4300058b6862cff1879738beaa822910a68e9392110eda10feaa566ed5d9b34", + "0x26c46a193ef107cc0d1a6aedc4c3bc50772b4d5ce6aadfb60980e3f984ee103" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5950bd2919b", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x457303e638", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x592e488ec11", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b560", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x531e74e15ed", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f2be48c2", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41c0", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b9d42b5", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f51c02", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4015", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x7724a17", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3948b57", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x93bb1860849af17fc6bcd8af4201362008f60f112a8118a846f45423c48f96", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18fb", + "max_fee": "0x516a7bf111", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x6286ef669bb27cd2a6b1b8574a28889b37f4fa7cc526a99e7421f0ab6c03feb", + "0x4b2aecd2a8f6eb2910651a6d060e977b9a3eaf01619e771ead8b7db91469e68" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4297ef9d32c91cfeb7c7a5d992f6857b8d84957acbe00aefb27e6b8ed34ebff", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x6038c7498d699e62208c50c081bb12ece4b2f25551afbf9bb3ceafcb8858b4", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x1102a", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x36c7661e2f7a90502a773c77d4e2975514ff60164eef016f089a11be6fe9489", + "0x5cb45f501a22baaf40d79c6bfde3cdbf215074325e63334402240044f27090d" + ], + "calldata": [ + "0x1", + "0x132303a40ae2f271f4e1b707596a63f6f2921c4d400b38822548ed1bb0cbe0", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x46f1db039a8aa6edb473195b98421579517d79bbe026e74bbc3f172af0798", + "0x190002", + "0xc1653bc421e6cf2fc7b506da1e30cdbafc77b75e4dba7fae06568c0cac2f58", + "0x663c9082", + "0x301040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x45753afa16", + "0x4576361800", + "0x4576eaba02", + "0x4576eaba02", + "0xb6dc58408e2e8e602", + "0x1", + "0x2", + "0x5ebe5369250591189a64d01c1bc56299bfad3caaff8ef2d0d0040b309e848f4", + "0x220827cc7ed5b55c8bc8c0dd170b44fa612139fcc1bba8837b77da63857dda0", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x4d5999a8d794aa0a60eb0e2ba941ced241422d853bced5179c11fc4d3d4deaf", + "0x2751a8a43c8dd60866fbd9b5d3824427b86a712b9de739bed194a03ff735469", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + } + ] +} \ No newline at end of file diff --git a/rpc/types_block_test.go b/rpc/types_block_test.go index cac355d8..4ceea73d 100644 --- a/rpc/types_block_test.go +++ b/rpc/types_block_test.go @@ -111,7 +111,7 @@ func TestBlockStatus(t *testing.T) { } } -//go:embed tests/block/sepoliaBlockTxs64159.json +//go:embed tests/block/sepoliaBlockTxs65083.json var rawBlock []byte // TestBlock_Unmarshal tests the Unmarshal function of the Block type. diff --git a/utils/Test.go b/utils/Test.go index c3da1fe4..7a3b2a6e 100644 --- a/utils/Test.go +++ b/utils/Test.go @@ -7,6 +7,9 @@ import ( "github.com/stretchr/testify/require" ) +// Just a random felt variable to use when needed. The value is "0xdeadbeef" +var RANDOM_FELT = new(felt.Felt).SetUint64(3735928559) + // TestHexToFelt generates a felt.Felt from a hexadecimal string. // // Parameters: From 71aa4571345a1689480208d7ba56f13260385b2b Mon Sep 17 00:00:00 2001 From: Thiago Ribeiro <62709592+thiagodeev@users.noreply.github.com> Date: Mon, 2 Sep 2024 05:36:38 -0300 Subject: [PATCH 20/28] Thiagodeev/fixes before 7 1 release v2 (#619) * implement some fixes for the 0.7.1 release --- .github/workflows/main_ci_check.yml | 3 +- account/account.go | 10 +- examples/deployAccount/main.go | 5 +- examples/internal/setup.go | 21 + mocks/mock_rpc_provider.go | 10 +- rpc/block.go | 9 +- rpc/block_test.go | 96 +- rpc/call.go | 6 +- rpc/call_test.go | 38 +- rpc/chain.go | 7 +- rpc/chain_test.go | 109 + rpc/contract.go | 12 +- rpc/contract_test.go | 191 +- rpc/events_test.go | 64 +- rpc/mock_test.go | 226 +- rpc/provider.go | 6 +- rpc/provider_test.go | 122 +- rpc/tests/trace/mainnetSimulateInvokeTx.json | 75 + ....json => mainnetSimulateInvokeTxResp.json} | 0 ...9b499437049b0084c3296da9fbbec7eda79b2.json | 20166 ++++++++-------- ...1f090a70d1e3bbde80998fde11a08aab8b282.json | 390 +- rpc/tests/trace/sepoliaSimulateInvokeTx.json | 27 + .../trace/sepoliaSimulateInvokeTxResp.json | 201 + rpc/tests/trace/simulateInvokeTx.json | 77 - .../estimateFeeSepoliaInvokeV1.json | 19 + rpc/trace.go | 2 +- rpc/trace_test.go | 180 +- rpc/types.go | 6 +- rpc/types_trace.go | 138 +- 29 files changed, 11459 insertions(+), 10757 deletions(-) create mode 100644 rpc/chain_test.go create mode 100644 rpc/tests/trace/mainnetSimulateInvokeTx.json rename rpc/tests/trace/{simulateInvokeTxResp.json => mainnetSimulateInvokeTxResp.json} (100%) create mode 100644 rpc/tests/trace/sepoliaSimulateInvokeTx.json create mode 100644 rpc/tests/trace/sepoliaSimulateInvokeTxResp.json delete mode 100644 rpc/tests/trace/simulateInvokeTx.json create mode 100644 rpc/tests/transactions/estimateFeeSepoliaInvokeV1.json diff --git a/.github/workflows/main_ci_check.yml b/.github/workflows/main_ci_check.yml index a3852f73..98cf6453 100644 --- a/.github/workflows/main_ci_check.yml +++ b/.github/workflows/main_ci_check.yml @@ -40,8 +40,7 @@ jobs: # Test rpc on testnet - name: Test RPC on testnet - run: echo "Skip for now - need public endpoint that follows rpc spec" - #run: cd rpc && go test -timeout 1200s -v -env testnet . + run: cd rpc && go test -timeout 1200s -v -env testnet . env: TESTNET_ACCOUNT_PRIVATE_KEY: ${{ secrets.TESTNET_ACCOUNT_PRIVATE_KEY }} INTEGRATION_BASE: "https://free-rpc.nethermind.io/sepolia-juno" diff --git a/account/account.go b/account/account.go index f39ef8df..763e28a9 100644 --- a/account/account.go +++ b/account/account.go @@ -682,9 +682,9 @@ func (account *Account) ClassHashAt(ctx context.Context, blockID rpc.BlockID, co // - requests: An array of rpc.BroadcastTxn objects representing the requests to estimate the fee for. // - blockID: The rpc.BlockID object representing the block ID for which to estimate the fee. // Returns: -// - []rpc.FeeEstimate: An array of rpc.FeeEstimate objects representing the estimated fees. +// - []rpc.FeeEstimation: An array of rpc.FeeEstimation objects representing the estimated fees. // - error: An error object if any error occurred during the estimation process. -func (account *Account) EstimateFee(ctx context.Context, requests []rpc.BroadcastTxn, simulationFlags []rpc.SimulationFlag, blockID rpc.BlockID) ([]rpc.FeeEstimate, error) { +func (account *Account) EstimateFee(ctx context.Context, requests []rpc.BroadcastTxn, simulationFlags []rpc.SimulationFlag, blockID rpc.BlockID) ([]rpc.FeeEstimation, error) { return account.provider.EstimateFee(ctx, requests, simulationFlags, blockID) } @@ -695,9 +695,9 @@ func (account *Account) EstimateFee(ctx context.Context, requests []rpc.Broadcas // - msg: The rpc.MsgFromL1 object representing the message. // - blockID: The rpc.BlockID object representing the block ID. // Returns: -// - *rpc.FeeEstimate: a pointer to rpc.FeeEstimate +// - *rpc.FeeEstimation: a pointer to rpc.FeeEstimation // - error: an error if any. -func (account *Account) EstimateMessageFee(ctx context.Context, msg rpc.MsgFromL1, blockID rpc.BlockID) (*rpc.FeeEstimate, error) { +func (account *Account) EstimateMessageFee(ctx context.Context, msg rpc.MsgFromL1, blockID rpc.BlockID) (*rpc.FeeEstimation, error) { return account.provider.EstimateMessageFee(ctx, msg, blockID) } @@ -735,7 +735,7 @@ func (account *Account) Nonce(ctx context.Context, blockID rpc.BlockID, contract // Returns: // - []rpc.SimulatedTransaction: a list of simulated transactions // - error: an error, if any. -func (account *Account) SimulateTransactions(ctx context.Context, blockID rpc.BlockID, txns []rpc.Transaction, simulationFlags []rpc.SimulationFlag) ([]rpc.SimulatedTransaction, error) { +func (account *Account) SimulateTransactions(ctx context.Context, blockID rpc.BlockID, txns []rpc.BroadcastTxn, simulationFlags []rpc.SimulationFlag) ([]rpc.SimulatedTransaction, error) { return account.provider.SimulateTransactions(ctx, blockID, txns, simulationFlags) } diff --git a/examples/deployAccount/main.go b/examples/deployAccount/main.go index 24152bf0..e135825f 100644 --- a/examples/deployAccount/main.go +++ b/examples/deployAccount/main.go @@ -77,8 +77,7 @@ func main() { if err != nil { panic(err) } - fmt.Println("PrecomputedAddress:", precomputedAddress) - + fmt.Println("PrecomputedAddress:", setup.PadZerosInFelt(precomputedAddress)) // Sign the transaction err = accnt.SignDeployAccountTransaction(context.Background(), &tx.DeployAccountTxn, precomputedAddress) if err != nil { @@ -115,7 +114,7 @@ func main() { // At this point you need to add funds to precomputed address to use it. var input string - fmt.Println("The `precomputedAddress` account needs to have enough ETH to perform a transaction.") + fmt.Println("\nThe `precomputedAddress` account needs to have enough ETH to perform a transaction.") fmt.Printf("Use the starknet faucet to send ETH to your `precomputedAddress`. You need aproximately %f ETH. \n", feeInETH) fmt.Println("When your account has been funded by the faucet, press any key, then `enter` to continue : ") fmt.Scan(&input) diff --git a/examples/internal/setup.go b/examples/internal/setup.go index 5342793c..912fee98 100644 --- a/examples/internal/setup.go +++ b/examples/internal/setup.go @@ -7,6 +7,7 @@ import ( "os" "strconv" + "github.com/NethermindEth/juno/core/felt" "github.com/NethermindEth/starknet.go/rpc" "github.com/joho/godotenv" ) @@ -72,3 +73,23 @@ func getEnv(envName string) string { } return env } + +// PadZerosInFelt pads zeros to the left of a hex felt value to make it 64 characters long. +func PadZerosInFelt(hexFelt *felt.Felt) string { + length := 66 + hexStr := hexFelt.String() + + // Check if the hex value is already of the desired length + if len(hexStr) >= length { + return hexStr + } + + // Extract the hex value without the "0x" prefix + hexValue := hexStr[2:] + // Pad zeros after the "0x" prefix + paddedHexValue := fmt.Sprintf("%0*s", length-2, hexValue) + // Add back the "0x" prefix to the padded hex value + paddedHexStr := "0x" + paddedHexValue + + return paddedHexStr +} diff --git a/mocks/mock_rpc_provider.go b/mocks/mock_rpc_provider.go index 130e9c2b..6e86bf39 100644 --- a/mocks/mock_rpc_provider.go +++ b/mocks/mock_rpc_provider.go @@ -252,10 +252,10 @@ func (mr *MockRpcProviderMockRecorder) ClassHashAt(ctx, blockID, contractAddress } // EstimateFee mocks base method. -func (m *MockRpcProvider) EstimateFee(ctx context.Context, requests []rpc.BroadcastTxn, simulationFlags []rpc.SimulationFlag, blockID rpc.BlockID) ([]rpc.FeeEstimate, error) { +func (m *MockRpcProvider) EstimateFee(ctx context.Context, requests []rpc.BroadcastTxn, simulationFlags []rpc.SimulationFlag, blockID rpc.BlockID) ([]rpc.FeeEstimation, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "EstimateFee", ctx, requests, simulationFlags, blockID) - ret0, _ := ret[0].([]rpc.FeeEstimate) + ret0, _ := ret[0].([]rpc.FeeEstimation) ret1, _ := ret[1].(error) return ret0, ret1 } @@ -267,10 +267,10 @@ func (mr *MockRpcProviderMockRecorder) EstimateFee(ctx, requests, simulationFlag } // EstimateMessageFee mocks base method. -func (m *MockRpcProvider) EstimateMessageFee(ctx context.Context, msg rpc.MsgFromL1, blockID rpc.BlockID) (*rpc.FeeEstimate, error) { +func (m *MockRpcProvider) EstimateMessageFee(ctx context.Context, msg rpc.MsgFromL1, blockID rpc.BlockID) (*rpc.FeeEstimation, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "EstimateMessageFee", ctx, msg, blockID) - ret0, _ := ret[0].(*rpc.FeeEstimate) + ret0, _ := ret[0].(*rpc.FeeEstimation) ret1, _ := ret[1].(error) return ret0, ret1 } @@ -327,7 +327,7 @@ func (mr *MockRpcProviderMockRecorder) Nonce(ctx, blockID, contractAddress any) } // SimulateTransactions mocks base method. -func (m *MockRpcProvider) SimulateTransactions(ctx context.Context, blockID rpc.BlockID, txns []rpc.Transaction, simulationFlags []rpc.SimulationFlag) ([]rpc.SimulatedTransaction, error) { +func (m *MockRpcProvider) SimulateTransactions(ctx context.Context, blockID rpc.BlockID, txns []rpc.BroadcastTxn, simulationFlags []rpc.SimulationFlag) ([]rpc.SimulatedTransaction, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "SimulateTransactions", ctx, blockID, txns, simulationFlags) ret0, _ := ret[0].([]rpc.SimulatedTransaction) diff --git a/rpc/block.go b/rpc/block.go index fe659504..cc6f14bf 100644 --- a/rpc/block.go +++ b/rpc/block.go @@ -17,11 +17,11 @@ import ( // - error: An error if any func (provider *Provider) BlockNumber(ctx context.Context) (uint64, error) { var blockNumber uint64 - if err := provider.c.CallContext(ctx, &blockNumber, "starknet_blockNumber"); err != nil { + if err := do(ctx, provider.c, "starknet_blockNumber", &blockNumber); err != nil { if errors.Is(err, errNotFound) { return 0, ErrNoBlocks } - return 0, Err(InternalError, err) + return 0, tryUnwrapToRPCErr(err) } return blockNumber, nil } @@ -139,10 +139,7 @@ func (provider *Provider) StateUpdate(ctx context.Context, blockID BlockID) (*St func (provider *Provider) BlockTransactionCount(ctx context.Context, blockID BlockID) (uint64, error) { var result uint64 if err := do(ctx, provider.c, "starknet_getBlockTransactionCount", &result, blockID); err != nil { - if errors.Is(err, errNotFound) { - return 0, ErrBlockNotFound - } - return 0, Err(InternalError, err) + return 0, tryUnwrapToRPCErr(err, ErrBlockNotFound) } return result, nil } diff --git a/rpc/block_test.go b/rpc/block_test.go index 4e677fc8..71f046f9 100644 --- a/rpc/block_test.go +++ b/rpc/block_test.go @@ -12,15 +12,7 @@ import ( "github.com/stretchr/testify/require" ) -// TestBlockNumber is a test function to check the behavior of the BlockNumber function and check the returned value is strictly positive. -// -// The function performs the following steps: -// 1. Sets up the test configuration. -// 2. Defines a test set. -// 3. Loops over the test set. -// 4. Creates a new spy. -// 5. Calls the BlockNumber function on the test provider. -// 6. Validates the returned block number. +// TestBlockNumber is a test function to check the behavior of the BlockNumber function and check if there is no errors. // // Parameters: // - t: the testing object for running the test cases @@ -30,41 +22,14 @@ import ( func TestBlockNumber(t *testing.T) { testConfig := beforeEach(t) - type testSetType struct{} - - testSet := map[string][]testSetType{ - "mock": {}, - "testnet": {{}}, - "mainnet": {{}}, - "devnet": {}, - }[testEnv] - - for range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - blockNumber, err := testConfig.provider.BlockNumber(context.Background()) - require.NoError(t, err, "BlockNumber should not return an error") - - diff, err := spy.Compare(blockNumber, false) - require.NoError(t, err, "expecting to match") - require.Equal(t, "FullMatch", diff, "expecting to match, instead %s", diff) - - require.False(t, blockNumber <= 3000, fmt.Sprintf("Block number should be > 3000, instead: %d", blockNumber)) + blockNumber, err := testConfig.provider.BlockNumber(context.Background()) + require.NoError(t, err, "BlockNumber should not return an error") + if testEnv == "mock" { + require.Equal(t, uint64(1234), blockNumber) } } -// TestBlockHashAndNumber is a test function that tests the BlockHashAndNumber function and check the returned value is strictly positive. -// -// It sets up a test configuration and creates a test set based on the test environment. -// Then it iterates through the test set and performs the following steps: -// - Creates a new spy using the testConfig provider. -// - Sets the testConfig provider to the spy. -// - Calls the BlockHashAndNumber function of the testConfig provider with a context. -// - Checks if there is an error and if it matches the expected error. -// - Compares the result with the spy and checks if it matches the expected result. -// - Checks if the block number is greater than 3000. -// - Checks if the block hash starts with "0x". -// +// TestBlockHashAndNumber is a test function that tests the BlockHashAndNumber function and check if there is no errors. // Parameters: // - t: the testing object for running the test cases // Returns: @@ -73,28 +38,12 @@ func TestBlockNumber(t *testing.T) { func TestBlockHashAndNumber(t *testing.T) { testConfig := beforeEach(t) - type testSetType struct{} + blockHashAndNumber, err := testConfig.provider.BlockHashAndNumber(context.Background()) + require.NoError(t, err, "BlockHashAndNumber should not return an error") + require.True(t, strings.HasPrefix(blockHashAndNumber.BlockHash.String(), "0x"), "current block hash should return a string starting with 0x") - testSet := map[string][]testSetType{ - "mock": {}, - "testnet": {{}}, - "mainnet": {{}}, - "devnet": {}, - }[testEnv] - - for range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - blockHashAndNumber, err := testConfig.provider.BlockHashAndNumber(context.Background()) - require.NoError(t, err, "BlockHashAndNumber should not return an error") - - diff, err := spy.Compare(blockHashAndNumber, false) - require.NoError(t, err, "expecting to match") - require.Equal(t, "FullMatch", diff, "expecting to match, instead %s", diff) - - require.False(t, blockHashAndNumber.BlockNumber <= 3000, "Block number should be > 3000, instead: %d", blockHashAndNumber.BlockNumber) - - require.True(t, strings.HasPrefix(blockHashAndNumber.BlockHash.String(), "0x"), "current block hash should return a string starting with 0x") + if testEnv == "mock" { + require.Equal(t, &BlockHashAndNumberOutput{BlockNumber: 1234, BlockHash: utils.RANDOM_FELT}, blockHashAndNumber) } } @@ -426,6 +375,7 @@ func TestBlockTransactionCount(t *testing.T) { type testSetType struct { BlockID BlockID ExpectedCount uint64 + ExpectedError error } testSet := map[string][]testSetType{ "mock": { @@ -443,24 +393,20 @@ func TestBlockTransactionCount(t *testing.T) { BlockID: WithBlockNumber(52959), ExpectedCount: 58, }, + { + BlockID: WithBlockNumber(7338746823462834783), + ExpectedError: ErrBlockNotFound, + }, }, "mainnet": {}, }[testEnv] for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy count, err := testConfig.provider.BlockTransactionCount(context.Background(), test.BlockID) - require.NoError(t, err, "Unable to fetch the given block.") - - diff, err := spy.Compare(count, false) - require.NoError(t, err, "Unable to compare the count.") - - _, err = spy.Compare(count, true) - require.NoError(t, err, "Unable to compare the count.") - - require.Equal(t, "FullMatch", diff, "structure expecting to be FullMatch, instead %s", diff) - - require.Equal(t, test.ExpectedCount, count, fmt.Sprintf("structure expecting %d, instead: %d", test.ExpectedCount, count)) + if err != nil { + require.EqualError(t, test.ExpectedError, err.Error()) + } else { + require.Equalf(t, test.ExpectedCount, count, "structure expecting %d, instead: %d", test.ExpectedCount, count) + } } } diff --git a/rpc/call.go b/rpc/call.go index 59921eae..4d29cf1d 100644 --- a/rpc/call.go +++ b/rpc/call.go @@ -16,13 +16,9 @@ import ( // - []*felt.Felt: the result of the function call // - error: an error if any occurred during the execution func (provider *Provider) Call(ctx context.Context, request FunctionCall, blockID BlockID) ([]*felt.Felt, error) { - - if len(request.Calldata) == 0 { - request.Calldata = make([]*felt.Felt, 0) - } var result []*felt.Felt if err := do(ctx, provider.c, "starknet_call", &result, request, blockID); err != nil { - return nil, tryUnwrapToRPCErr(err, ErrContractNotFound, ErrBlockNotFound) + return nil, tryUnwrapToRPCErr(err, ErrContractNotFound, ErrContractError, ErrBlockNotFound) } return result, nil } diff --git a/rpc/call_test.go b/rpc/call_test.go index 73d44453..a1823ec2 100644 --- a/rpc/call_test.go +++ b/rpc/call_test.go @@ -30,6 +30,7 @@ func TestCall(t *testing.T) { FunctionCall FunctionCall BlockID BlockID ExpectedPatternResult *felt.Felt + ExpectedError error } testSet := map[string][]testSetType{ "devnet": { @@ -65,6 +66,33 @@ func TestCall(t *testing.T) { BlockID: WithBlockTag("latest"), ExpectedPatternResult: utils.TestHexToFelt(t, "0x506f736974696f6e"), }, + { + FunctionCall: FunctionCall{ + ContractAddress: utils.TestHexToFelt(t, "0x025633c6142D9CA4126e3fD1D522Faa6e9f745144aba728c0B3FEE38170DF9e7"), + EntryPointSelector: utils.GetSelectorFromNameFelt("RANDOM_STRINGGG"), + Calldata: []*felt.Felt{}, + }, + BlockID: WithBlockTag("latest"), + ExpectedError: ErrContractError, + }, + { + FunctionCall: FunctionCall{ + ContractAddress: utils.TestHexToFelt(t, "0x025633c6142D9CA4126e3fD1D522Faa6e9f745144aba728c0B3FEE38170DF9e7"), + EntryPointSelector: utils.GetSelectorFromNameFelt("name"), + Calldata: []*felt.Felt{}, + }, + BlockID: WithBlockNumber(9999999999999999999), + ExpectedError: ErrBlockNotFound, + }, + { + FunctionCall: FunctionCall{ + ContractAddress: utils.RANDOM_FELT, + EntryPointSelector: utils.GetSelectorFromNameFelt("name"), + Calldata: []*felt.Felt{}, + }, + BlockID: WithBlockTag("latest"), + ExpectedError: ErrContractNotFound, + }, }, "mainnet": { { @@ -82,8 +110,12 @@ func TestCall(t *testing.T) { for _, test := range testSet { require := require.New(t) output, err := testConfig.provider.Call(context.Background(), FunctionCall(test.FunctionCall), test.BlockID) - require.NoError(err) - require.NotEmpty(output, "should return an output") - require.Equal(test.ExpectedPatternResult, output[0]) + if test.ExpectedError != nil { + require.EqualError(test.ExpectedError, err.Error()) + } else { + require.NoError(err) + require.NotEmpty(output, "should return an output") + require.Equal(test.ExpectedPatternResult, output[0]) + } } } diff --git a/rpc/chain.go b/rpc/chain.go index b5fc9f2b..2f440290 100644 --- a/rpc/chain.go +++ b/rpc/chain.go @@ -18,9 +18,8 @@ func (provider *Provider) ChainID(ctx context.Context) (string, error) { return provider.chainID, nil } var result string - // Note: []interface{}{}...force an empty `params[]` in the jsonrpc request - if err := provider.c.CallContext(ctx, &result, "starknet_chainId", []interface{}{}...); err != nil { - return "", Err(InternalError, err) + if err := do(ctx, provider.c, "starknet_chainId", &result); err != nil { + return "", tryUnwrapToRPCErr(err) } provider.chainID = utils.HexToShortStr(result) return provider.chainID, nil @@ -41,7 +40,7 @@ func (provider *Provider) Syncing(ctx context.Context) (*SyncStatus, error) { } switch res := result.(type) { case bool: - return &SyncStatus{SyncStatus: res}, nil + return &SyncStatus{SyncStatus: &res}, nil case SyncStatus: return &res, nil default: diff --git a/rpc/chain_test.go b/rpc/chain_test.go new file mode 100644 index 00000000..e460124c --- /dev/null +++ b/rpc/chain_test.go @@ -0,0 +1,109 @@ +package rpc + +import ( + "context" + "strings" + "testing" + + "github.com/NethermindEth/starknet.go/utils" + "github.com/stretchr/testify/require" +) + +// TestChainID is a function that tests the ChainID function in the Go test file. +// +// The function initializes a test configuration and defines a test set with different chain IDs for different environments. +// It then iterates over the test set and for each test, creates a new spy and sets the spy as the provider's client. +// The function calls the ChainID function and compares the returned chain ID with the expected chain ID. +// If there is a mismatch or an error occurs, the function logs a fatal error. +// +// Parameters: +// - t: the testing object for running the test cases +// Returns: +// +// none +func TestChainID(t *testing.T) { + testConfig := beforeEach(t) + + type testSetType struct { + ChainID string + } + testSet := map[string][]testSetType{ + "devnet": {{ChainID: "SN_SEPOLIA"}}, + "mainnet": {{ChainID: "SN_MAIN"}}, + "mock": {{ChainID: "SN_SEPOLIA"}}, + "testnet": {{ChainID: "SN_SEPOLIA"}}, + }[testEnv] + + for _, test := range testSet { + chain, err := testConfig.provider.ChainID(context.Background()) + require.NoError(t, err) + require.Equal(t, test.ChainID, chain) + } +} + +// TestSyncing is a test function that tests the syncing functionality of the provider. +// +// It checks the synchronization status and verifies the values returned by the provider. +// The test is performed for different test environments, such as devnet, mainnet, mock, and testnet. +// For each test environment, it retrieves the synchronization status from the provider and performs the necessary assertions. +// If the test environment is "mock", it verifies that the returned values match the expected values. +// Otherwise, it checks that the synchronization status is false and verifies the values returned by the provider. +// The function uses the testing.T type for assertions and the context.Background() function for the context. +// +// Parameters: +// - t: the testing object for running the test cases +// Returns: +// +// none +func TestSyncing(t *testing.T) { + testConfig := beforeEach(t) + + type testSetType struct { + ChainID string + } + + testSet := map[string][]testSetType{ + "devnet": {}, + "mainnet": {{ChainID: "SN_MAIN"}}, + "mock": {{ChainID: "MOCK"}}, + "testnet": {{ChainID: "SN_SEPOLIA"}}, + }[testEnv] + + for range testSet { + sync, err := testConfig.provider.Syncing(context.Background()) + require.NoError(t, err) + + if testEnv == "mock" { + value := SyncStatus{ + StartingBlockHash: utils.RANDOM_FELT, + StartingBlockNum: "0x4c602", + CurrentBlockHash: utils.RANDOM_FELT, + CurrentBlockNum: "0x4c727", + HighestBlockHash: utils.RANDOM_FELT, + HighestBlockNum: "0x4c727", + } + require.Exactly(t, &value, sync) + + continue + } + + if sync.SyncStatus == nil { + require.True(t, strings.HasPrefix(sync.CurrentBlockHash.String(), "0x"), "current block hash should return a string starting with 0x") + require.NotZero(t, sync.StartingBlockHash) + require.NotZero(t, sync.StartingBlockNum) + require.NotZero(t, sync.CurrentBlockHash) + require.NotZero(t, sync.CurrentBlockNum) + require.NotZero(t, sync.HighestBlockHash) + require.NotZero(t, sync.HighestBlockNum) + } else { + require.False(t, *sync.SyncStatus) + require.Zero(t, sync.StartingBlockHash) + require.Zero(t, sync.StartingBlockNum) + require.Zero(t, sync.CurrentBlockHash) + require.Zero(t, sync.CurrentBlockNum) + require.Zero(t, sync.HighestBlockHash) + require.Zero(t, sync.HighestBlockNum) + } + + } +} diff --git a/rpc/contract.go b/rpc/contract.go index 9aeb82e4..8dcbe64e 100644 --- a/rpc/contract.go +++ b/rpc/contract.go @@ -135,8 +135,8 @@ func (provider *Provider) Nonce(ctx context.Context, blockID BlockID, contractAd // Estimates the resources required by a given sequence of transactions when applied on a given state. // If one of the transactions reverts or fails due to any reason (e.g. validation failure or an internal error), // a TRANSACTION_EXECUTION_ERROR is returned. For v0-2 transactions the estimate is given in wei, and for v3 transactions it is given in fri. -func (provider *Provider) EstimateFee(ctx context.Context, requests []BroadcastTxn, simulationFlags []SimulationFlag, blockID BlockID) ([]FeeEstimate, error) { - var raw []FeeEstimate +func (provider *Provider) EstimateFee(ctx context.Context, requests []BroadcastTxn, simulationFlags []SimulationFlag, blockID BlockID) ([]FeeEstimation, error) { + var raw []FeeEstimation if err := do(ctx, provider.c, "starknet_estimateFee", &raw, requests, simulationFlags, blockID); err != nil { return nil, tryUnwrapToRPCErr(err, ErrTxnExec, ErrBlockNotFound) } @@ -150,13 +150,13 @@ func (provider *Provider) EstimateFee(ctx context.Context, requests []BroadcastT // - msg: The message to estimate the fee for // - blockID: The ID of the block to estimate the fee in // Returns: -// - *FeeEstimate: the fee estimated for the message +// - *FeeEstimation: the fee estimated for the message // - error: an error if any occurred during the execution -func (provider *Provider) EstimateMessageFee(ctx context.Context, msg MsgFromL1, blockID BlockID) (*FeeEstimate, error) { - var raw FeeEstimate +func (provider *Provider) EstimateMessageFee(ctx context.Context, msg MsgFromL1, blockID BlockID) (*FeeEstimation, error) { + var raw FeeEstimation if err := do(ctx, provider.c, "starknet_estimateMessageFee", &raw, msg, blockID); err != nil { - return nil, tryUnwrapToRPCErr(err, ErrContractNotFound, ErrBlockNotFound) + return nil, tryUnwrapToRPCErr(err, ErrContractError, ErrBlockNotFound) } return &raw, nil } diff --git a/rpc/contract_test.go b/rpc/contract_test.go index ee9d193d..5b621e5c 100644 --- a/rpc/contract_test.go +++ b/rpc/contract_test.go @@ -2,6 +2,8 @@ package rpc import ( "context" + "encoding/json" + "os" "reflect" "strings" "testing" @@ -400,44 +402,95 @@ func TestEstimateMessageFee(t *testing.T) { type testSetType struct { MsgFromL1 BlockID - ExpectedFeeEst FeeEstimate + ExpectedFeeEst *FeeEstimation + ExpectedError error } + + // https://sepolia.voyager.online/message/0x273f4e20fc522098a60099e5872ab3deeb7fb8321a03dadbd866ac90b7268361 + l1Handler := MsgFromL1{ + FromAddress: "0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", + ToAddress: utils.TestHexToFelt(t, "0x04c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f"), + Selector: utils.TestHexToFelt(t, "0x1b64b1b3b690b43b9b514fb81377518f4039cd3e4f4914d8a6bdf01d679fb19"), + Payload: utils.TestHexArrToFelt(t, []string{ + "0x455448", + "0x2f14d277fc49e0e2d2967d019aea8d6bd9cb3998", + "0x02000e6213e24b84012b1f4b1cbd2d7a723fb06950aeab37bedb6f098c7e051a", + "0x01a055690d9db80000", + "0x00", + }), + } + testSet := map[string][]testSetType{ "mock": { { MsgFromL1: MsgFromL1{FromAddress: "0x0", ToAddress: &felt.Zero, Selector: &felt.Zero, Payload: []*felt.Felt{&felt.Zero}}, BlockID: BlockID{Tag: "latest"}, - ExpectedFeeEst: FeeEstimate{ + ExpectedFeeEst: &FeeEstimation{ GasConsumed: new(felt.Felt).SetUint64(1), GasPrice: new(felt.Felt).SetUint64(2), OverallFee: new(felt.Felt).SetUint64(3), }, }, }, - "testnet": {}, + "testnet": { + { + MsgFromL1: l1Handler, + BlockID: WithBlockNumber(122476), + ExpectedFeeEst: &FeeEstimation{ + GasConsumed: utils.TestHexToFelt(t, "0x567b"), + GasPrice: utils.TestHexToFelt(t, "0x28fb3be9e"), + DataGasConsumed: &felt.Zero, + DataGasPrice: utils.TestHexToFelt(t, "0x216251c284"), + OverallFee: utils.TestHexToFelt(t, "0xdd816d65a9ea"), + FeeUnit: UnitWei, + }, + }, + { // invalid msg data + MsgFromL1: MsgFromL1{ + FromAddress: "0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", + ToAddress: utils.RANDOM_FELT, + Selector: utils.RANDOM_FELT, + Payload: []*felt.Felt{}, + }, + BlockID: WithBlockNumber(122476), + ExpectedError: ErrContractError, + }, + { // invalid block number + MsgFromL1: l1Handler, + BlockID: WithBlockNumber(9999999999999999999), + ExpectedError: ErrBlockNotFound, + }, + }, "mainnet": {}, }[testEnv] for _, test := range testSet { - value, err := testConfig.provider.EstimateMessageFee(context.Background(), test.MsgFromL1, test.BlockID) + resp, err := testConfig.provider.EstimateMessageFee(context.Background(), test.MsgFromL1, test.BlockID) if err != nil { - t.Fatal(err) + require.EqualError(t, test.ExpectedError, err.Error()) + } else { + require.Exactly(t, test.ExpectedFeeEst, resp) } - require.Equal(t, *value, test.ExpectedFeeEst) } } func TestEstimateFee(t *testing.T) { testConfig := beforeEach(t) - testBlockNumber := uint64(15643) type testSetType struct { txs []BroadcastTxn simFlags []SimulationFlag blockID BlockID - expectedResp []FeeEstimate + expectedResp []FeeEstimation expectedError error } + + var bradcastInvokeV1 BroadcastInvokev1Txn + expectedRespRaw, err := os.ReadFile("./tests/transactions/estimateFeeSepoliaInvokeV1.json") + require.NoError(t, err) + err = json.Unmarshal(expectedRespRaw, &bradcastInvokeV1) + require.NoError(t, err) + testSet := map[string][]testSetType{ "mainnet": { { @@ -468,21 +521,20 @@ func TestEstimateFee(t *testing.T) { }, }, simFlags: []SimulationFlag{}, - blockID: BlockID{Number: &testBlockNumber}, + blockID: WithBlockNumber(15643), expectedError: nil, - expectedResp: []FeeEstimate{ + expectedResp: []FeeEstimation{ { GasConsumed: utils.TestHexToFelt(t, "0x3074"), GasPrice: utils.TestHexToFelt(t, "0x350da9915"), DataGasConsumed: &felt.Zero, - DataGasPrice: &felt.Zero, + DataGasPrice: new(felt.Felt).SetUint64(1), OverallFee: utils.TestHexToFelt(t, "0xa0a99fc14d84"), FeeUnit: UnitWei, }, }, }, { - txs: []BroadcastTxn{ DeployAccountTxn{ @@ -506,27 +558,128 @@ func TestEstimateFee(t *testing.T) { }, }, simFlags: []SimulationFlag{}, - blockID: BlockID{Hash: utils.TestHexToFelt(t, "0x1b0df1bafcb826b1fc053495aef5cdc24d0345cbfa1259b15939d01b89dc6d9")}, + blockID: WithBlockHash(utils.TestHexToFelt(t, "0x1b0df1bafcb826b1fc053495aef5cdc24d0345cbfa1259b15939d01b89dc6d9")), expectedError: nil, - expectedResp: []FeeEstimate{ + expectedResp: []FeeEstimation{ { GasConsumed: utils.TestHexToFelt(t, "0x1154"), GasPrice: utils.TestHexToFelt(t, "0x378f962c4"), DataGasConsumed: &felt.Zero, - DataGasPrice: &felt.Zero, + DataGasPrice: new(felt.Felt).SetUint64(1), OverallFee: utils.TestHexToFelt(t, "0x3c2c41636c50"), FeeUnit: UnitWei, }, }, }, }, - "mock": {}, - "testnet": {}, + "mock": { + { // without flag + txs: []BroadcastTxn{ + bradcastInvokeV1, + }, + simFlags: []SimulationFlag{}, + blockID: WithBlockTag("latest"), + expectedError: nil, + expectedResp: []FeeEstimation{ + { + GasConsumed: utils.RANDOM_FELT, + GasPrice: utils.RANDOM_FELT, + DataGasConsumed: utils.RANDOM_FELT, + DataGasPrice: utils.RANDOM_FELT, + OverallFee: utils.RANDOM_FELT, + FeeUnit: UnitWei, + }, + }, + }, + { // with flag + txs: []BroadcastTxn{ + bradcastInvokeV1, + }, + simFlags: []SimulationFlag{SKIP_VALIDATE}, + blockID: WithBlockTag("latest"), + expectedError: nil, + expectedResp: []FeeEstimation{ + { + GasConsumed: new(felt.Felt).SetUint64(1234), + GasPrice: new(felt.Felt).SetUint64(1234), + DataGasConsumed: new(felt.Felt).SetUint64(1234), + DataGasPrice: new(felt.Felt).SetUint64(1234), + OverallFee: new(felt.Felt).SetUint64(1234), + FeeUnit: UnitWei, + }, + }, + }, + }, + "testnet": { + { // without flag + txs: []BroadcastTxn{ + bradcastInvokeV1, + }, + simFlags: []SimulationFlag{}, + blockID: WithBlockNumber(100000), + expectedError: nil, + expectedResp: []FeeEstimation{ + { + GasConsumed: utils.TestHexToFelt(t, "0x123c"), + GasPrice: utils.TestHexToFelt(t, "0x831211d3b"), + DataGasConsumed: &felt.Zero, + DataGasPrice: utils.TestHexToFelt(t, "0x1b10c"), + OverallFee: utils.TestHexToFelt(t, "0x955fd7d0ffd4"), + FeeUnit: UnitWei, + }, + }, + }, + { // with flag + txs: []BroadcastTxn{ + bradcastInvokeV1, + }, + simFlags: []SimulationFlag{SKIP_VALIDATE}, + blockID: WithBlockNumber(100000), + expectedError: nil, + expectedResp: []FeeEstimation{ + { + GasConsumed: utils.TestHexToFelt(t, "0x1239"), + GasPrice: utils.TestHexToFelt(t, "0x831211d3b"), + DataGasConsumed: &felt.Zero, + DataGasPrice: utils.TestHexToFelt(t, "0x1b10c"), + OverallFee: utils.TestHexToFelt(t, "0x9547446da823"), + FeeUnit: UnitWei, + }, + }, + }, + { // invalid transaction + txs: []BroadcastTxn{ + InvokeTxnV1{ + MaxFee: utils.RANDOM_FELT, + Type: TransactionType_Invoke, + Version: TransactionV1, + SenderAddress: utils.RANDOM_FELT, + Nonce: utils.RANDOM_FELT, + Calldata: []*felt.Felt{}, + Signature: []*felt.Felt{}, + }, + }, + simFlags: []SimulationFlag{}, + blockID: WithBlockNumber(100000), + expectedError: ErrTxnExec, + }, + { // invalid block + txs: []BroadcastTxn{ + bradcastInvokeV1, + }, + simFlags: []SimulationFlag{}, + blockID: WithBlockNumber(9999999999999999999), + expectedError: ErrBlockNotFound, + }, + }, }[testEnv] for _, test := range testSet { resp, err := testConfig.provider.EstimateFee(context.Background(), test.txs, test.simFlags, test.blockID) - require.Equal(t, test.expectedError, err) - require.Equal(t, test.expectedResp, resp) + if err != nil { + require.EqualError(t, test.expectedError, err.Error()) + } else { + require.Exactly(t, test.expectedResp, resp) + } } } diff --git a/rpc/events_test.go b/rpc/events_test.go index 9dd20fea..4e3878be 100644 --- a/rpc/events_test.go +++ b/rpc/events_test.go @@ -36,8 +36,6 @@ func TestEvents(t *testing.T) { resPageReq ResultPageRequest expectedResp EventChunk } - var fromNum uint64 = 1471 - var toNum uint64 = 1473 testSet := map[string][]testSetType{ "mock": {{ @@ -58,8 +56,8 @@ func TestEvents(t *testing.T) { "mainnet": { { eventFilter: EventFilter{ - FromBlock: BlockID{Number: &fromNum}, - ToBlock: BlockID{Number: &toNum}, + FromBlock: WithBlockNumber(1471), + ToBlock: WithBlockNumber(1473), Address: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), Keys: [][]*felt.Felt{{ utils.TestHexToFelt(t, "0x3774b0545aabb37c45c1eddc6a7dae57de498aae6d5e3589e362d4b4323a533"), @@ -72,6 +70,16 @@ func TestEvents(t *testing.T) { expectedResp: EventChunk{ Events: []EmittedEvent{ { + Event: Event{ + FromAddress: utils.TestHexToFelt(t, "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7"), + Keys: []*felt.Felt{ + utils.TestHexToFelt(t, "0x3774b0545aabb37c45c1eddc6a7dae57de498aae6d5e3589e362d4b4323a533"), + }, + Data: []*felt.Felt{ + utils.TestHexToFelt(t, "0x0714ae72367a39c17df987cf00f7cbb69c8cdcfa611e69e3511b5d16a23e2ec5"), + utils.TestHexToFelt(t, "0x0714ae72367a39c17df987cf00f7cbb69c8cdcfa611e69e3511b5d16a23e2ec5"), + }, + }, BlockHash: utils.TestHexToFelt(t, "0x59dbe64bf2e2f89f5f2958cff11044dca0c64dea2e37ec6eaad9a5f838793cb"), BlockNumber: 1472, TransactionHash: utils.TestHexToFelt(t, "0x568147c09d5e5db8dc703ce1da21eae47e9ad9c789bc2f2889c4413a38c579d"), @@ -80,22 +88,52 @@ func TestEvents(t *testing.T) { }, }, }, - "testnet": {}, + "testnet": { + { + eventFilter: EventFilter{ + FromBlock: WithBlockNumber(144932), + ToBlock: WithBlockNumber(144933), + Address: utils.TestHexToFelt(t, "0x04718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d"), + Keys: [][]*felt.Felt{{ + utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), + utils.TestHexToFelt(t, "0x0143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6"), + }}, + }, + resPageReq: ResultPageRequest{ + ChunkSize: 1000, + }, + expectedResp: EventChunk{ + Events: []EmittedEvent{ + { + Event: Event{ + FromAddress: utils.TestHexToFelt(t, "0x04718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d"), + Keys: []*felt.Felt{ + utils.TestHexToFelt(t, "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9"), + }, + Data: utils.TestHexArrToFelt(t, []string{ + "0x0143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "0x01176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x04cffc7cb4ec5bd0", + "0x00", + }), + }, + BlockHash: utils.TestHexToFelt(t, "0x18a38934263d8b27a15d2e170d90030daa3a66e589b545908f376a8fdc971c8"), + BlockNumber: 144933, + TransactionHash: utils.TestHexToFelt(t, "0x622817859a37dedf36cfb1417247f93dcc5840845bb8969df47491ef33e088e"), + }, + }, + }, + }, + }, }[testEnv] for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy eventInput := EventsInput{ EventFilter: test.eventFilter, ResultPageRequest: test.resPageReq, } events, err := testConfig.provider.Events(context.Background(), eventInput) - if err != nil { - t.Fatal(err) - } - require.Equal(t, events.Events[0].BlockHash, test.expectedResp.Events[0].BlockHash, "BlockHash mismatch") - require.Equal(t, events.Events[0].BlockNumber, test.expectedResp.Events[0].BlockNumber, "BlockNumber mismatch") - require.Equal(t, events.Events[0].TransactionHash, test.expectedResp.Events[0].TransactionHash, "TransactionHash mismatch") + require.NoError(t, err, "Events failed") + require.Exactly(t, test.expectedResp.Events[0], events.Events[0], "Events mismatch") } } diff --git a/rpc/mock_test.go b/rpc/mock_test.go index 78264fbd..cee0a729 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -4,7 +4,6 @@ import ( "context" "encoding/json" "fmt" - "math/big" "os" "strings" @@ -37,7 +36,6 @@ func (r *rpcMock) Close() { // Parameters: // - ctx: represents the current execution context // - result: the interface{} to store the result of the RPC call -// - method: the string representing the RPC method to be called // - args: variadic and can be used to pass additional arguments to the RPC method // Returns: // - error: an error if any occurred during the function call @@ -51,6 +49,8 @@ func (r *rpcMock) CallContext(ctx context.Context, result interface{}, method st return mock_starknet_addDeployAccountTransaction(result, args...) case "starknet_blockNumber": return mock_starknet_blockNumber(result, args...) + case "starknet_blockHashAndNumber": + return mock_starknet_blockHashAndNumber(result, args...) case "starknet_call": return mock_starknet_call(result, args...) case "starknet_chainId": @@ -59,6 +59,8 @@ func (r *rpcMock) CallContext(ctx context.Context, result interface{}, method st return mock_starknet_estimateFee(result, args...) case "starknet_estimateMessageFee": return mock_starknet_estimateMessageFee(result, args...) + case "starknet_simulateTransactions": + return mock_starknet_simulateTransactions(result, args...) case "starknet_getBlockWithTxs": return mock_starknet_getBlockWithTxs(result, args...) case "starknet_getBlockTransactionCount": @@ -102,49 +104,82 @@ func (r *rpcMock) CallContext(ctx context.Context, result interface{}, method st // // Parameters: // - result: The result variable that will hold the block number value -// - method: The method string that specifies the API method being called // - args: Additional arguments passed to the function // Returns: -// - error: An error if the result is not of type *big.Int or if the arguments count is not zero +// - error: An error if the result is not of type uint64 or if the arguments count is not zero func mock_starknet_blockNumber(result interface{}, args ...interface{}) error { - r, ok := result.(*big.Int) + r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType } if len(args) != 0 { return errWrongArgs } - value1 := big.NewInt(1) - *r = *value1 - return nil + + resp, err := json.Marshal(uint64(1234)) + if err != nil { + return err + } + + return json.Unmarshal(resp, r) +} + +// mock_starknet_blockHashAndNumber is a function that mocks the behavior of the `blockHashAndNumber` method in the StarkNet API. +// +// Parameters: +// - result: an interface{} that holds the result of the function. +// - args: a variadic parameter of type interface{} that represents the arguments of the function. +// Returns: +// - error: an error if there is a wrong type or wrong number of arguments. +func mock_starknet_blockHashAndNumber(result interface{}, args ...interface{}) error { + r, ok := result.(*json.RawMessage) + if !ok || r == nil { + return errWrongType + } + if len(args) != 0 { + return errWrongArgs + } + + blockData := BlockHashAndNumberOutput{ + BlockNumber: 1234, + BlockHash: utils.RANDOM_FELT, + } + + resp, err := json.Marshal(blockData) + if err != nil { + return err + } + + return json.Unmarshal(resp, r) } // mock_starknet_chainId is a function that mocks the behavior of the `starknet_chainId` method. // // Parameters: // - result: an interface{} that holds the result of the function. -// - method: a string that represents the method. // - args: a variadic parameter of type interface{} that represents the arguments of the function. // Returns: // - error: an error if there is a wrong type or wrong number of arguments. func mock_starknet_chainId(result interface{}, args ...interface{}) error { - r, ok := result.(*string) + r, ok := result.(*json.RawMessage) if !ok { return errWrongType } if len(args) != 0 { return errWrongArgs } - value := "0x534e5f5345504f4c4941" - *r = value - return nil + resp, err := json.Marshal("0x534e5f5345504f4c4941") + if err != nil { + return err + } + + return json.Unmarshal(resp, r) } // mock_starknet_syncing is a function that mocks the behavior of the starknet_syncing function. // // Parameters: // - result: an interface{} that holds the result of the function. -// - method: a string that represents the method. // - args: a variadic parameter of type interface{} that represents the arguments of the function. // Return: // - error: an error if there is a wrong type or wrong number of arguments @@ -158,19 +193,12 @@ func mock_starknet_syncing(result interface{}, args ...interface{}) error { return errWrongArgs } - blockDataFeltArr, err := utils.HexArrToFelt([]string{ - "0x4b238e99c40d448b85dfc69e4414c2dbeb4d21d5c670b1662b5ad2ad2fcb061", - "0x9cee6f457637180c36532bb0bfc5a091bb410b70f0489bcbbb0f1eca6650be", - }) - if err != nil { - return err - } value := SyncStatus{ - StartingBlockHash: blockDataFeltArr[0], + StartingBlockHash: utils.RANDOM_FELT, StartingBlockNum: "0x4c602", - CurrentBlockHash: blockDataFeltArr[1], + CurrentBlockHash: utils.RANDOM_FELT, CurrentBlockNum: "0x4c727", - HighestBlockHash: blockDataFeltArr[1], + HighestBlockHash: utils.RANDOM_FELT, HighestBlockNum: "0x4c727", } *r = value @@ -182,7 +210,6 @@ func mock_starknet_syncing(result interface{}, args ...interface{}) error { // // Parameters: // - result: The result of the API call, which will be stored in the provided interface{}. This should be a pointer to a json.RawMessage -// - method: The method of the API call // - args: The arguments of the API call. This should be a variadic parameter that accepts a variable number of arguments // Returns: // - error: An error if the API call fails, otherwise nil @@ -222,7 +249,6 @@ func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, args ...i // // Parameters: // - result: The result of the API call, which will be stored in the provided interface{}. This should be a pointer to a json.RawMessage -// - method: The method of the API call // - args: The arguments of the API call. This should be a variadic parameter that accepts a variable number of arguments // Returns: // - error: An error if the API call fails, otherwise nil @@ -248,7 +274,6 @@ func mock_starknet_getBlockTransactionCount(result interface{}, args ...interfac // // Parameters: // - result: an interface{} that represents the result of the transaction retrieval -// - method: a string that specifies the method used for retrieval // - args: a variadic parameter that contains the arguments used for retrieval // Returns: // - error: an error if there is a failure in retrieving the transaction @@ -292,7 +317,6 @@ func mock_starknet_getTransactionByHash(result interface{}, args ...interface{}) // // Parameters: // - result: a pointer to an interface that will store the transaction receipt result -// - method: a string representing the method of the transaction receipt // - args: a variadic parameter representing the arguments of the transaction receipt // Returns: // - error: an error if there is an issue with the type of the result or the number of arguments @@ -381,7 +405,6 @@ func mock_starknet_getTransactionReceipt(result interface{}, args ...interface{} // // Parameters: // - result: An interface{} that represents the result of the operation -// - method: A string that specifies the method to be used // - args: A variadic parameter that represents the arguments to be passed // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 2 @@ -426,7 +449,6 @@ func mock_starknet_getClassAt(result interface{}, args ...interface{}) error { // // Parameters: // - result: An interface{} that represents the result of the operation -// - method: A string that specifies the method to be used // - args: A variadic parameter that represents the arguments to be passed // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 2 @@ -470,7 +492,6 @@ func mock_starknet_getClassHashAt(result interface{}, args ...interface{}) error // // Parameters: // - result: The result interface{} that should be a pointer to json.RawMessage -// - method: The method string specifying the method to be called on the StarkNet API // - args: The variadic args ...interface{} representing the arguments to be passed to the method // Returns: // - error: An error if any of the conditions mentioned above are met @@ -510,7 +531,6 @@ func mock_starknet_getClass(result interface{}, args ...interface{}) error { // // Parameters: // - result: An interface{} that represents the result of the operation -// - method: A string that specifies the method to be used // - args: A variadic parameter that represents the arguments to be passed // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 1 @@ -565,7 +585,6 @@ func mock_starknet_getEvents(result interface{}, args ...interface{}) error { // // Parameters: // - result: The result of the transaction -// - method: The method to be called // - args: The arguments to be passed to the method // Returns: // - error: An error if the transaction fails @@ -596,7 +615,6 @@ func mock_starknet_call(result interface{}, args ...interface{}) error { // // Parameters: // - result: The result of the transaction -// - method: The method to be called // - args: The arguments to be passed to the method // Return: // - error: An error if the transaction fails @@ -632,7 +650,6 @@ func mock_starknet_addDeclareTransaction(result interface{}, args ...interface{} // // Parameters: // - result: The result of the transaction -// - method: The method to be called // - args: The arguments to be passed to the method // Returns: // - error: an error if any @@ -641,39 +658,49 @@ func mock_starknet_estimateFee(result interface{}, args ...interface{}) error { if !ok { return errWrongType } - if len(args) != 2 { + if len(args) != 3 { fmt.Printf("args: %d\n", len(args)) return errWrongArgs } - _, ok = args[0].(FunctionCall) + _, ok = args[0].([]BroadcastTxn) if !ok { - fmt.Printf("args[0] should be FunctionCall, got %T\n", args[0]) + fmt.Printf("args[0] should be BroadcastTxn, got %T\n", args[0]) return errWrongArgs } - _, ok = args[1].(BlockID) + flags, ok := args[1].([]SimulationFlag) if !ok { - fmt.Printf("args[1] should be *blockID, got %T\n", args[1]) + fmt.Printf("args[1] should be SimulationFlag, got %T\n", args[1]) return errWrongArgs } - - gasCons, err := new(felt.Felt).SetString("0x01a4") - if err != nil { - return err - } - gasPrice, err := new(felt.Felt).SetString("0x45") - if err != nil { - return err - } - overallFee, err := new(felt.Felt).SetString("0x7134") - if err != nil { - return err + _, ok = args[2].(BlockID) + if !ok { + fmt.Printf("args[2] should be *blockID, got %T\n", args[2]) + return errWrongArgs } - output := FeeEstimate{ - GasConsumed: gasCons, - GasPrice: gasPrice, - OverallFee: overallFee, + + var output FeeEstimation + + if len(flags) > 0 { + output = FeeEstimation{ + GasConsumed: new(felt.Felt).SetUint64(1234), + GasPrice: new(felt.Felt).SetUint64(1234), + DataGasConsumed: new(felt.Felt).SetUint64(1234), + DataGasPrice: new(felt.Felt).SetUint64(1234), + OverallFee: new(felt.Felt).SetUint64(1234), + FeeUnit: UnitWei, + } + } else { + output = FeeEstimation{ + GasConsumed: utils.RANDOM_FELT, + GasPrice: utils.RANDOM_FELT, + DataGasConsumed: utils.RANDOM_FELT, + DataGasPrice: utils.RANDOM_FELT, + OverallFee: utils.RANDOM_FELT, + FeeUnit: UnitWei, + } } - outputContent, err := json.Marshal(output) + + outputContent, err := json.Marshal([]FeeEstimation{output}) if err != nil { return err } @@ -687,7 +714,6 @@ func mock_starknet_estimateFee(result interface{}, args ...interface{}) error { // // Parameters: // - result: The result of the transaction -// - method: The method to be called // - args: The arguments to be passed to the method // Returns: // - error: an error if any @@ -711,7 +737,7 @@ func mock_starknet_estimateMessageFee(result interface{}, args ...interface{}) e return errWrongArgs } - output := FeeEstimate{ + output := FeeEstimation{ GasConsumed: new(felt.Felt).SetUint64(1), GasPrice: new(felt.Felt).SetUint64(2), OverallFee: new(felt.Felt).SetUint64(3), @@ -726,11 +752,69 @@ func mock_starknet_estimateMessageFee(result interface{}, args ...interface{}) e return nil } +// mock_starknet_simulateTransactions is a function that simulates transactions on the StarkNet network. +// It takes a result interface{} and variadic args ...interface{} as input parameters. +// The result parameter is expected to be of type *json.RawMessage, otherwise an error of type errWrongType is returned. +// The args parameter is expected to have a length of 3, otherwise an error of type errWrongArgs is returned. +// The first argument in args is expected to be of type BlockID, otherwise an error of type errWrongArgs is returned. +// The second argument in args is expected to be of type []BroadcastTxn, otherwise an error of type errWrongArgs is returned. +// The third argument in args is expected to be of type []SimulationFlag, otherwise an error of type errWrongArgs is returned. +// The function reads a file named "sepoliaSimulateInvokeTxResp.json" and unmarshals its content into a variable of type SimulateTransactionOutput. +// Then, it marshals the output variable into JSON format and unmarshals it into the result parameter. +// If any error occurs during the process, it is returned. +// +// Parameters: +// - result: The result of the method +// - args: The arguments to be passed to the method +// Returns: +// - error: an error if any +func mock_starknet_simulateTransactions(result interface{}, args ...interface{}) error { + r, ok := result.(*json.RawMessage) + if !ok { + return errWrongType + } + if len(args) != 3 { + fmt.Printf("args: %d\n", len(args)) + return errWrongArgs + } + _, ok = args[0].(BlockID) + if !ok { + fmt.Printf("args[0] should be *blockID, got %T\n", args[0]) + return errWrongArgs + } + _, ok = args[1].([]BroadcastTxn) + if !ok { + fmt.Printf("args[1] should be BroadcastTxn, got %T\n", args[1]) + return errWrongArgs + } + _, ok = args[2].([]SimulationFlag) + if !ok { + fmt.Printf("args[2] should be SimulationFlag, got %T\n", args[2]) + return errWrongArgs + } + + var output SimulateTransactionOutput + read, err := os.ReadFile("./tests/trace/sepoliaSimulateInvokeTxResp.json") + if err != nil { + return err + } + err = json.Unmarshal(read, &output) + if err != nil { + return err + } + + outputContent, err := json.Marshal(output.Txns) + if err != nil { + return err + } + + return json.Unmarshal(outputContent, r) +} + // mock_starknet_addInvokeTransaction is a mock function that simulates the behavior of the // starknet_addInvokeTransaction function. // Parameters: // - result: The result of the transaction -// - method: The method to be called // - args: The arguments to be passed to the method // Returns: // - error: an error if any @@ -823,7 +907,6 @@ func mock_starknet_addDeployAccountTransaction(result interface{}, args ...inter // // Parameters: // - result: The result of the transaction -// - method: The method to be called // - args: The arguments to be passed to the method // Returns: // - error: an error if any @@ -864,7 +947,6 @@ func mock_starknet_getStorageAt(result interface{}, args ...interface{}) error { // // Parameters: // - result: an interface{} that represents the result of the state update. -// - method: a string that specifies the method used to retrieve the state update. // - args: a variadic parameter that can accept multiple arguments. // Returns: // - error: an error if any @@ -928,7 +1010,6 @@ func mock_starknet_getStateUpdate(result interface{}, args ...interface{}) error // // Parameters: // - result: a pointer to the variable where the result will be stored -// - method: the method for which the nonce is being retrieved // - args: optional arguments for the method // Returns: // - error: an error if @@ -972,7 +1053,6 @@ func mock_starknet_getNonce(result interface{}, args ...interface{}) error { // // Parameters: // - result: the result is expected to be a pointer to json.RawMessage -// - method: the method to be called // - args: variadic parameter that can contain any number of arguments // Returns: // - error: an error if any @@ -1036,7 +1116,6 @@ func mock_starknet_getBlockWithTxs(result interface{}, args ...interface{}) erro // // Parameters: // - result: the result is expected to be a pointer to json.RawMessage -// - method: the method to be called // - args: variadic parameter that can contain any number of arguments // Returns: // - error: an error if any @@ -1210,7 +1289,6 @@ func mock_starknet_getBlockWithReceipts(result interface{}, args ...interface{}) // // Parameters: // - result: a pointer to the variable where the result will be stored -// - method: the method for which the nonce is being retrieved // - args: optional arguments for the method // Returns: // - error: an error if any @@ -1226,11 +1304,10 @@ func mock_starknet_traceBlockTransactions(result interface{}, args ...interface{ if !ok { return errors.Wrap(errWrongArgs, fmt.Sprintf("args[0] should be BlockID, got %T\n", args[0])) } - if blockID.Hash.String() == "0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2" { + if blockID.Hash != nil && blockID.Hash.String() == "0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2" { + + var rawBlockTrace []Trace - var rawBlockTrace struct { - Result []Trace `json:"result"` - } read, err := os.ReadFile("tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json") if err != nil { return err @@ -1238,7 +1315,7 @@ func mock_starknet_traceBlockTransactions(result interface{}, args ...interface{ if nil != json.Unmarshal(read, &rawBlockTrace) { return err } - BlockTrace, err := json.Marshal(rawBlockTrace.Result) + BlockTrace, err := json.Marshal(rawBlockTrace) if err != nil { return err } @@ -1265,7 +1342,6 @@ func mock_starknet_traceBlockTransactions(result interface{}, args ...interface{ // // Parameters: // - result: an interface{} that represents the result of the transaction. -// - method: a string that specifies the method used in the transaction. // - args: a variadic parameter that can accept multiple arguments. // Returns: // - error: an error if any @@ -1283,9 +1359,7 @@ func mock_starknet_traceTransaction(result interface{}, args ...interface{}) err } switch transactionHash.String() { case "0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282": - var rawTrace struct { - Result InvokeTxnTrace `json:"result"` - } + var rawTrace InvokeTxnTrace read, err := os.ReadFile("tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") if err != nil { return err @@ -1293,7 +1367,7 @@ func mock_starknet_traceTransaction(result interface{}, args ...interface{}) err if nil != json.Unmarshal(read, &rawTrace) { return err } - txnTrace, err := json.Marshal(rawTrace.Result) + txnTrace, err := json.Marshal(rawTrace) if err != nil { return err } diff --git a/rpc/provider.go b/rpc/provider.go index 537d3996..f7a5e53a 100644 --- a/rpc/provider.go +++ b/rpc/provider.go @@ -55,13 +55,13 @@ type RpcProvider interface { Class(ctx context.Context, blockID BlockID, classHash *felt.Felt) (ClassOutput, error) ClassAt(ctx context.Context, blockID BlockID, contractAddress *felt.Felt) (ClassOutput, error) ClassHashAt(ctx context.Context, blockID BlockID, contractAddress *felt.Felt) (*felt.Felt, error) - EstimateFee(ctx context.Context, requests []BroadcastTxn, simulationFlags []SimulationFlag, blockID BlockID) ([]FeeEstimate, error) - EstimateMessageFee(ctx context.Context, msg MsgFromL1, blockID BlockID) (*FeeEstimate, error) + EstimateFee(ctx context.Context, requests []BroadcastTxn, simulationFlags []SimulationFlag, blockID BlockID) ([]FeeEstimation, error) + EstimateMessageFee(ctx context.Context, msg MsgFromL1, blockID BlockID) (*FeeEstimation, error) Events(ctx context.Context, input EventsInput) (*EventChunk, error) BlockWithReceipts(ctx context.Context, blockID BlockID) (interface{}, error) GetTransactionStatus(ctx context.Context, transactionHash *felt.Felt) (*TxnStatusResp, error) Nonce(ctx context.Context, blockID BlockID, contractAddress *felt.Felt) (*felt.Felt, error) - SimulateTransactions(ctx context.Context, blockID BlockID, txns []Transaction, simulationFlags []SimulationFlag) ([]SimulatedTransaction, error) + SimulateTransactions(ctx context.Context, blockID BlockID, txns []BroadcastTxn, simulationFlags []SimulationFlag) ([]SimulatedTransaction, error) StateUpdate(ctx context.Context, blockID BlockID) (*StateUpdateOutput, error) StorageAt(ctx context.Context, contractAddress *felt.Felt, key string, blockID BlockID) (string, error) SpecVersion(ctx context.Context) (string, error) diff --git a/rpc/provider_test.go b/rpc/provider_test.go index 96543dcf..2a81ea0d 100644 --- a/rpc/provider_test.go +++ b/rpc/provider_test.go @@ -6,11 +6,9 @@ import ( "flag" "fmt" "log" - "math/big" "net/http" "net/http/httptest" "os" - "strings" "testing" "github.com/joho/godotenv" @@ -18,13 +16,7 @@ import ( ) const ( - TestPublicKey = "0x783318b2cc1067e5c06d374d2bb9a0382c39aabd009b165d7a268b882971d6" - DevNetETHAddress = "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7" - TestNetETHAddress = "0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7" - DevNetAccount032Address = "0x06bb9425718d801fd06f144abb82eced725f0e81db61d2f9f4c9a26ece46a829" - TestNetAccount032Address = "0x6ca4fdd437dffde5253ba7021ef7265c88b07789aa642eafda37791626edf00" - DevNetAccount040Address = "0x080dff79c6216ad300b872b73ff41e271c63f213f8a9dc2017b164befa53b9" - TestNetAccount040Address = "0x6cbfa37f409610fee26eeb427ed854b3a4b24580d9b9ef6c3e38db7b3f7322c" + DevNetETHAddress = "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7" ) // testConfiguration is a type that is used to configure tests @@ -116,109 +108,6 @@ func beforeEach(t *testing.T) *testConfiguration { return &testConfig } -// TestChainID is a function that tests the ChainID function in the Go test file. -// -// The function initializes a test configuration and defines a test set with different chain IDs for different environments. -// It then iterates over the test set and for each test, creates a new spy and sets the spy as the provider's client. -// The function calls the ChainID function and compares the returned chain ID with the expected chain ID. -// If there is a mismatch or an error occurs, the function logs a fatal error. -// -// Parameters: -// - t: the testing object for running the test cases -// Returns: -// -// none -func TestChainID(t *testing.T) { - testConfig := beforeEach(t) - - type testSetType struct { - ChainID string - } - testSet := map[string][]testSetType{ - "devnet": {{ChainID: "SN_SEPOLIA"}}, - "mainnet": {{ChainID: "SN_MAIN"}}, - "mock": {{ChainID: "SN_SEPOLIA"}}, - "testnet": {{ChainID: "SN_SEPOLIA"}}, - }[testEnv] - - for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - chain, err := testConfig.provider.ChainID(context.Background()) - if err != nil { - t.Fatal(err) - } - if _, err := spy.Compare(chain, false); err != nil { - t.Fatal("expecting to match", err) - } - if chain != test.ChainID { - t.Fatalf("expecting %s, instead: %s", test.ChainID, chain) - } - } -} - -// TestSyncing tests the syncing functionality. -// -// It initializes a test configuration and sets up a test set. Then it loops -// through the test set and creates a spy object. It calls the Syncing function -// of the provider using the test configuration. It checks if there is any -// error during syncing, and if so, it fails the test. If the starting block -// hash is not nil, it compares the sync object with the spy object. It checks -// if the current block number is a positive number and if the current block -// hash starts with "0x". If the starting block hash is nil, it compares the -// sync object with the spy object and checks if the current block hash is nil. -// -// Parameters: -// - t: the testing object for running the test cases -// Returns: -// -// none -func TestSyncing(t *testing.T) { - testConfig := beforeEach(t) - - type testSetType struct { - ChainID string - } - - testSet := map[string][]testSetType{ - "devnet": {}, - "mainnet": {{ChainID: "SN_MAIN"}}, - "mock": {{ChainID: "MOCK"}}, - "testnet": {{ChainID: "SN_SEPOLIA"}}, - }[testEnv] - - for range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - sync, err := testConfig.provider.Syncing(context.Background()) - if err != nil { - t.Fatal("Syncing error:", err) - } - if sync.StartingBlockHash != nil { - if diff, err := spy.Compare(sync, false); err != nil || diff != "FullMatch" { - if _, err := spy.Compare(sync, true); err != nil { - log.Fatal(err) - } - t.Fatal("expecting to match", err) - } - i, ok := big.NewInt(0).SetString(string(sync.CurrentBlockNum), 0) - if !ok || i.Cmp(big.NewInt(0)) <= 0 { - t.Fatal("CurrentBlockNum should be positive number, instead: ", sync.CurrentBlockNum) - } - if !strings.HasPrefix(sync.CurrentBlockHash.String(), "0x") { - t.Fatal("current block hash should return a string starting with 0x") - } - } else { - if _, err := spy.Compare(sync, false); err != nil { - log.Fatal(err) - } - require.Nil(t, sync.CurrentBlockHash) - - } - - } -} - func TestCookieManagement(t *testing.T) { // Don't return anything unless cookie is set. server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { @@ -229,12 +118,17 @@ func TestCookieManagement(t *testing.T) { Path: "/", }) } else { - var result string - err := mock_starknet_chainId(&result) + var rawResp json.RawMessage + err := mock_starknet_chainId(&rawResp) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } + var result string + if err := json.Unmarshal(rawResp, &result); err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } data := map[string]interface{}{ "jsonrpc": "2.0", "id": 1, diff --git a/rpc/tests/trace/mainnetSimulateInvokeTx.json b/rpc/tests/trace/mainnetSimulateInvokeTx.json new file mode 100644 index 00000000..ba9e1e08 --- /dev/null +++ b/rpc/tests/trace/mainnetSimulateInvokeTx.json @@ -0,0 +1,75 @@ +{ + "transactions": [ + { + "transaction_hash": "0x735b67a69014a5f143a9db9d8c82a2dbb1114fa5705d2f03adf4523067d36d6", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x31", + "max_fee": "0xa553f246f50e", + "sender_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "signature": [ + "0x10387fce102c143b84a28aef8ff25d0eac5e24eecc558acf4a3c4eeb8791927", + "0xb42cf72c367bd8dc4b5f661397f222505af9d7a75c65183d975e2db643de70" + ], + "calldata": [ + "0x1", + "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", + "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", + "0x0", + "0x2", + "0x2", + "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", + "0x1" + ] + }, + { + "transaction_hash": "0x3aee55269cce34b8a66d0eb6ece69d81ef0ce70e5aedf069e7ccb6f60da906e", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x23", + "max_fee": "0x3df224416f3d2", + "sender_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", + "signature": [ + "0x14507fcaaa9b84cee0828d919b648619ff3970b20f2ebaacb5e95bcd3f52783", + "0x5584dbdb2a663e5aa18e2d64fc555fb7e184fae334a150647dc45d2b148aa3f" + ], + "calldata": [ + "0x2", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x0", + "0x3", + "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", + "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", + "0x3", + "0x12", + "0x15", + "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", + "0x2dc6c00", + "0x0", + "0x2", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xf4240", + "0x4", + "0x30615bec9c1506bfac97d9dbd3c546307987d467a7f95d5533c2e861eb81f3f", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0xf4240", + "0x4", + "0x691fa7f66d63dc8c89ff4e77732fff5133f282e7dbd41813273692cc595516", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0x2dc6c00", + "0x0", + "0x2dff8d6", + "0x0", + "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891" + ] + } + ], + "simulation_flags": [], + "block_id": { + "block_number": 200566 + } +} \ No newline at end of file diff --git a/rpc/tests/trace/simulateInvokeTxResp.json b/rpc/tests/trace/mainnetSimulateInvokeTxResp.json similarity index 100% rename from rpc/tests/trace/simulateInvokeTxResp.json rename to rpc/tests/trace/mainnetSimulateInvokeTxResp.json diff --git a/rpc/tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json b/rpc/tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json index 0baafbc8..0c0a6ca4 100644 --- a/rpc/tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json +++ b/rpc/tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json @@ -1,10144 +1,10140 @@ -{ - "jsonrpc": "2.0", - "result": [ - { - "trace_root": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x2b", - "0x6", - "0x0", - "0x66bae3a7", - "0x4b55434f494e", - "0x505241474d41", - "0x1595e10", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x4259424954", - "0x505241474d41", - "0x159229b", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5e31c50", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5484b8", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x454b55424f", - "0x505241474d41", - "0xabb339a", - "0x454b55424f2f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0xaba9500", - "0x454b55424f2f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 3255, - "memory_holes": 768, - "range_check_builtin_applications": 65, - "ec_op_builtin_applications": 3 - } - }, - "execute_invocation": { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x2b", - "0x6", - "0x0", - "0x66bae3a7", - "0x4b55434f494e", - "0x505241474d41", - "0x1595e10", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x4259424954", - "0x505241474d41", - "0x159229b", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5e31c50", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5484b8", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x454b55424f", - "0x505241474d41", - "0xabb339a", - "0x454b55424f2f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0xaba9500", - "0x454b55424f2f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x0" - ], - "calls": [ - { - "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "calldata": [ - "0x6", - "0x0", - "0x66bae3a7", - "0x4b55434f494e", - "0x505241474d41", - "0x1595e10", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x4259424954", - "0x505241474d41", - "0x159229b", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5e31c50", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5484b8", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x454b55424f", - "0x505241474d41", - "0xabb339a", - "0x454b55424f2f555344", - "0x0", - "0x0", - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0xaba9500", - "0x454b55424f2f555344", - "0x0" - ], - "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x454b55424f" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6079, - "memory_holes": 64, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 185 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - } - ], - "events": [ - { - "order": 0, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a7", - "0x4b55434f494e", - "0x505241474d41", - "0x1595e10", - "0x5a454e442f555344", - "0x0" - ] - }, - { - "order": 1, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a7", - "0x4259424954", - "0x505241474d41", - "0x159229b", - "0x5a454e442f555344", - "0x0" - ] - }, - { - "order": 2, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5e31c50", - "0x4c5553442f555344", - "0x0" - ] - }, - { - "order": 3, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5484b8", - "0x4c4f5244532f555344", - "0x0" - ] - }, - { - "order": 4, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a7", - "0x454b55424f", - "0x505241474d41", - "0xabb339a", - "0x454b55424f2f555344", - "0x0" - ] - }, - { - "order": 5, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a7", - "0x44455853435245454e4552", - "0x505241474d41", - "0xaba9500", - "0x454b55424f2f555344", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 63779, - "memory_holes": 3068, - "pedersen_builtin_applications": 360, - "range_check_builtin_applications": 2024, - "bitwise_builtin_applications": 18 +[ + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x2b", + "0x6", + "0x0", + "0x66bae3a7", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 3255, + "memory_holes": 768, + "range_check_builtin_applications": 65, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x2b", + "0x6", + "0x0", + "0x66bae3a7", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0x6", + "0x0", + "0x66bae3a7", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x454b55424f" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6079, + "memory_holes": 64, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 185 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a7", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 63779, + "memory_holes": 3068, + "pedersen_builtin_applications": 360, + "range_check_builtin_applications": 2024, + "bitwise_builtin_applications": 18 } - ], - "events": [ - { - "order": 6, - "keys": [ - "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", - "0x23f6c7b23412cd66f493dc2d9e76483e23d02782d6558ef40459c6e96f4f350" - ], - "data": [ - "0x1", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 67747, - "memory_holes": 3075, - "pedersen_builtin_applications": 360, - "range_check_builtin_applications": 2101, - "bitwise_builtin_applications": 18 } - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x349441b59790", - "0x0" - ], - "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x349441b59790", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1178, - "memory_holes": 23, - "pedersen_builtin_applications": 4, - "range_check_builtin_applications": 37 + ], + "events": [ + { + "order": 6, + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x23f6c7b23412cd66f493dc2d9e76483e23d02782d6558ef40459c6e96f4f350" + ], + "data": [ + "0x1", + "0x0" + ] } - }, - "state_diff": { - "storage_diffs": [ - { - "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "storage_entries": [ - { - "key": "0x678964bc451f6096b5161ad239a1d6c49bb3405f5069ed8e84e2f10781728d6", - "value": "0x5484b8000000000000000000000000066bae3a7" - }, - { - "key": "0x680131c5e053c3144514aa641c32c25670cf87073f54285de1adb38f88eacd9", - "value": "0x5e31c50000000000000000000000000066bae3a7" - }, - { - "key": "0x353a8471031e468050a4fdc2e6fed90ecf09a6d3183749b63412a7d246593e3", - "value": "0xaba9500000000000000000000000000066bae3a7" - }, - { - "key": "0x142b698dd5e2c66e5228f779c73e335b082e5d244269207b9305815e8274bbe", - "value": "0xabb339a000000000000000000000000066bae3a7" - }, - { - "key": "0x4f9d4d8d73d1b93cc7e5dc52ed35a76a1f1d2b7d3f63faff7fa2e7435d7248c", - "value": "0x1595e10000000000000000000000000066bae3a7" - }, - { - "key": "0x32458b65a2f0b1a025a62db5957a6caf050ff13e74827eabbb37bcf288add87", - "value": "0x159229b000000000000000000000000066bae3a7" - } - ] - }, - { - "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "storage_entries": [ - { - "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", - "value": "0x89857bf189589417" - }, - { - "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", - "value": "0x1adeed08e8fb0ef518" - } - ] - } - ], - "nonces": [ - { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "nonce": "0x373dc" - } - ], - "deployed_contracts": [], - "deprecated_declared_classes": [], - "declared_classes": [], - "replaced_classes": [] - }, + ], + "messages": [], "execution_resources": { - "steps": 72180, - "memory_holes": 3866, - "pedersen_builtin_applications": 364, - "range_check_builtin_applications": 2203, - "bitwise_builtin_applications": 18, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 9264, - "l1_data_gas": 0 - } + "steps": 67747, + "memory_holes": 3075, + "pedersen_builtin_applications": 360, + "range_check_builtin_applications": 2101, + "bitwise_builtin_applications": 18 } }, - "transaction_hash": "0x23f6c7b23412cd66f493dc2d9e76483e23d02782d6558ef40459c6e96f4f350" - }, - { - "trace_root": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x63", - "0xe", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5623d637a61", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3deeaf8160", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5621ab65de0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5b6c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x4ec756a85e3", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x48e58ee1de", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f4e43e", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf41e4", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x24f368d1", - "0x554e492f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5ec9d", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4333", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x262f747", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x1596632", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3ab", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3ded26f3f8", - "0x53544554482f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5446, - "memory_holes": 62, - "range_check_builtin_applications": 117, - "ec_op_builtin_applications": 3 + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x349441b59790", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x349441b59790", + "0x0" + ] } - }, - "execute_invocation": { - "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x63", - "0xe", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5623d637a61", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3deeaf8160", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5621ab65de0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5b6c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x4ec756a85e3", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x48e58ee1de", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f4e43e", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf41e4", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x24f368d1", - "0x554e492f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5ec9d", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4333", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x262f747", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x1596632", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3ab", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3ded26f3f8", - "0x53544554482f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x0" - ], - "calls": [ - { - "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "calldata": [ - "0xe", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5623d637a61", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3deeaf8160", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5621ab65de0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5b6c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x4ec756a85e3", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x48e58ee1de", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f4e43e", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf41e4", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x24f368d1", - "0x554e492f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5ec9d", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4333", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x262f747", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x1596632", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3ab", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3ded26f3f8", - "0x53544554482f555344", - "0x0" - ], - "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - } - ], - "events": [ - { - "order": 0, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5623d637a61", - "0x4254432f555344", - "0x0" - ] - }, - { - "order": 1, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3deeaf8160", - "0x4554482f555344", - "0x0" - ] - }, - { - "order": 2, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5621ab65de0", - "0x574254432f555344", - "0x0" - ] - }, - { - "order": 3, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5b6c7", - "0x574254432f425443", - "0x0" - ] - }, - { - "order": 4, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x4ec756a85e3", - "0x4254432f455552", - "0x0" - ] - }, - { - "order": 5, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a9", - "0x464f55524c454146", - "0x464f55524c454146", - "0x48e58ee1de", - "0x5753544554482f555344", - "0x0" - ] - }, - { - "order": 6, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f4e43e", - "0x4c5553442f555344", - "0x0" - ] - }, - { - "order": 7, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf41e4", - "0x555344432f555344", - "0x0" - ] - }, - { - "order": 8, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x24f368d1", - "0x554e492f555344", - "0x0" - ] - }, - { - "order": 9, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5ec9d", - "0x4441492f555344", - "0x0" - ] - }, - { - "order": 10, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4333", - "0x555344542f555344", - "0x0" - ] - }, - { - "order": 11, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x262f747", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 12, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3aa", - "0x464f55524c454146", - "0x464f55524c454146", - "0x1596632", - "0x5a454e442f555344", - "0x0" - ] - }, - { - "order": 13, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ab", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3ded26f3f8", - "0x53544554482f555344", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 73681, - "memory_holes": 6440, - "pedersen_builtin_applications": 308, - "range_check_builtin_applications": 2441, - "bitwise_builtin_applications": 42 + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeed08e8fb0ef518" + }, + { + "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", + "value": "0x89857bf189589417" } - } - ], - "events": [], - "messages": [], - "execution_resources": { - "steps": 79936, - "memory_holes": 6443, - "pedersen_builtin_applications": 308, - "range_check_builtin_applications": 2570, - "bitwise_builtin_applications": 42 + ] + }, + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x680131c5e053c3144514aa641c32c25670cf87073f54285de1adb38f88eacd9", + "value": "0x5e31c50000000000000000000000000066bae3a7" + }, + { + "key": "0x142b698dd5e2c66e5228f779c73e335b082e5d244269207b9305815e8274bbe", + "value": "0xabb339a000000000000000000000000066bae3a7" + }, + { + "key": "0x32458b65a2f0b1a025a62db5957a6caf050ff13e74827eabbb37bcf288add87", + "value": "0x159229b000000000000000000000000066bae3a7" + }, + { + "key": "0x353a8471031e468050a4fdc2e6fed90ecf09a6d3183749b63412a7d246593e3", + "value": "0xaba9500000000000000000000000000066bae3a7" + }, + { + "key": "0x678964bc451f6096b5161ad239a1d6c49bb3405f5069ed8e84e2f10781728d6", + "value": "0x5484b8000000000000000000000000066bae3a7" + }, + { + "key": "0x4f9d4d8d73d1b93cc7e5dc52ed35a76a1f1d2b7d3f63faff7fa2e7435d7248c", + "value": "0x1595e10000000000000000000000000066bae3a7" + } + ] } - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x66f34f78a4c1", - "0x0" - ], - "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x66f34f78a4c1", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1178, - "memory_holes": 23, - "pedersen_builtin_applications": 4, - "range_check_builtin_applications": 37 + ], + "nonces": [ + { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "nonce": "0x373dc" } - }, - "state_diff": { - "storage_diffs": [ - { - "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "storage_entries": [ - { - "key": "0x5c8f047efa25ed6202a9d6af9b64f2a7fb47111040b16dce8362e0ea20809e0", - "value": "0x262f747000000000000000000000000066bae3aa" - }, - { - "key": "0x1b3f3d264a9c63c581333d4b97c556b6f20f9a1abf64c7f71e04b35df62cc70", - "value": "0xf4333000000000000000000000000066bae3aa" - }, - { - "key": "0x7b4de97b546ed17a0d490dab334867e9383e029411c268a8902768b6da6a2eb", - "value": "0x5f5b6c7000000000000000000000000066bae3a9" - }, - { - "key": "0x437f038e1991939def57775a3405a3b6f0c0830f09d0e6cfc309393950fa773", - "value": "0x48e58ee1de000000000000000000000000066bae3a9" - }, - { - "key": "0x678817f315f1e297a5f652fb09285db75338ef9d9c221bbcc07817f2196b988", - "value": "0x1596632000000000000000000000000066bae3aa" - }, - { - "key": "0xb4ee84f18d73fe6a23ce3be0cc905d5e2d3c0897f1f85cbf0e2a4611f2d310", - "value": "0x3ded26f3f8000000000000000000000000066bae3ab" - }, - { - "key": "0x2d04b0419a0e89f6b4dabc3dc19b087e71f0dec9f1785606f00517d3468636b", - "value": "0x5f5ec9d000000000000000000000000066bae3aa" - }, - { - "key": "0x55c3ad197a2fa1dce3a999ae803099406fab085f187b926e7e1f0e38592043d", - "value": "0x4ec756a85e3000000000000000000000000066bae3a9" - }, - { - "key": "0x143dae8bc0e9898f65cb1eb84f16bfb9cb09431972541141677721dd541f055", - "value": "0x5f4e43e000000000000000000000000066bae3aa" - }, - { - "key": "0x8653303a2624a587179380e17d7876d346aea7f02dbd57782950500ea7276e", - "value": "0x5623d637a61000000000000000000000000066bae3a9" - }, - { - "key": "0x56041f8991ff7eff841647cfda1f1cfb9e7321c5a96c53d4a5072497de6b50f", - "value": "0x24f368d1000000000000000000000000066bae3aa" - }, - { - "key": "0x28e86558bd7c5a9c26fceeafb9570eb7b3011db4a9ff813b318f91129935c37", - "value": "0xf41e4000000000000000000000000066bae3aa" - }, - { - "key": "0x6a6414ca66551a2324e436ed37d069f1660ef01bc3fe90497fc729ee60781b8", - "value": "0x3deeaf8160000000000000000000000000066bae3a9" - }, - { - "key": "0x6f64efd140d53af83432093bb6c3d5e8db645bd89feead6dda806955f68ef2a", - "value": "0x5621ab65de0000000000000000000000000066bae3a9" - } - ] - }, - { - "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "storage_entries": [ - { - "key": "0x7b3303ee433d39925f7c289cd2048052a2d8e2d653bdd7cdfa6a6ab8365445d", - "value": "0x71cdd8f5a17dd69e" - }, - { - "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", - "value": "0x1adeed6fdc4a8799d9" - } - ] - } - ], - "nonces": [ - { - "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "nonce": "0x2b024" + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 72180, + "memory_holes": 3866, + "pedersen_builtin_applications": 364, + "range_check_builtin_applications": 2203, + "bitwise_builtin_applications": 18, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 9264, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x23f6c7b23412cd66f493dc2d9e76483e23d02782d6558ef40459c6e96f4f350" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x63", + "0xe", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5623d637a61", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3deeaf8160", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5621ab65de0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec756a85e3", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ee1de", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f368d1", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4333", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262f747", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x1596632", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3ab", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3ded26f3f8", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5446, + "memory_holes": 62, + "range_check_builtin_applications": 117, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x63", + "0xe", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5623d637a61", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3deeaf8160", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5621ab65de0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec756a85e3", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ee1de", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f368d1", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4333", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262f747", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x1596632", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3ab", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3ded26f3f8", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0xe", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5623d637a61", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3deeaf8160", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5621ab65de0", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec756a85e3", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ee1de", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f368d1", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4333", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262f747", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x1596632", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3ab", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3ded26f3f8", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5623d637a61", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3deeaf8160", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5621ab65de0", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec756a85e3", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a9", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ee1de", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "order": 7, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e4", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 8, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f368d1", + "0x554e492f555344", + "0x0" + ] + }, + { + "order": 9, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 10, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4333", + "0x555344542f555344", + "0x0" + ] + }, + { + "order": 11, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262f747", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 12, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3aa", + "0x464f55524c454146", + "0x464f55524c454146", + "0x1596632", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 13, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ab", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3ded26f3f8", + "0x53544554482f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 73681, + "memory_holes": 6440, + "pedersen_builtin_applications": 308, + "range_check_builtin_applications": 2441, + "bitwise_builtin_applications": 42 } - ], - "deployed_contracts": [], - "deprecated_declared_classes": [], - "declared_classes": [], - "replaced_classes": [] - }, + } + ], + "events": [], + "messages": [], "execution_resources": { - "steps": 86560, - "memory_holes": 6528, - "pedersen_builtin_applications": 312, - "range_check_builtin_applications": 2724, - "bitwise_builtin_applications": 42, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 18139, - "l1_data_gas": 0 + "steps": 79936, + "memory_holes": 6443, + "pedersen_builtin_applications": 308, + "range_check_builtin_applications": 2570, + "bitwise_builtin_applications": 42 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x66f34f78a4c1", + "0x0" + ], + "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x66f34f78a4c1", + "0x0" + ] } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 } }, - "transaction_hash": "0x28796e7da8b36f06cb0f6bcc957cc711e147cb8695ff9de8ca3c883a84200a0" - }, - { - "trace_root": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x32", - "0x7", - "0x0", - "0x66bae3b1", - "0x4b55434f494e", - "0x505241474d41", - "0x1595e10", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3b1", - "0x4259424954", - "0x505241474d41", - "0x159229b", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5d98bf2", - "0x4c5553442f555344", - "0xa4479", - "0x0", - "0x66bae3b1", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5e31c50", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5484b8", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x454b55424f", - "0x505241474d41", - "0xabb339a", - "0x454b55424f2f555344", - "0x0", - "0x0", - "0x66bae3b1", - "0x44455853435245454e4552", - "0x505241474d41", - "0xaba9500", - "0x454b55424f2f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 3584, - "memory_holes": 768, - "range_check_builtin_applications": 72, - "ec_op_builtin_applications": 3 + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x5c8f047efa25ed6202a9d6af9b64f2a7fb47111040b16dce8362e0ea20809e0", + "value": "0x262f747000000000000000000000000066bae3aa" + }, + { + "key": "0xb4ee84f18d73fe6a23ce3be0cc905d5e2d3c0897f1f85cbf0e2a4611f2d310", + "value": "0x3ded26f3f8000000000000000000000000066bae3ab" + }, + { + "key": "0x6f64efd140d53af83432093bb6c3d5e8db645bd89feead6dda806955f68ef2a", + "value": "0x5621ab65de0000000000000000000000000066bae3a9" + }, + { + "key": "0x437f038e1991939def57775a3405a3b6f0c0830f09d0e6cfc309393950fa773", + "value": "0x48e58ee1de000000000000000000000000066bae3a9" + }, + { + "key": "0x678817f315f1e297a5f652fb09285db75338ef9d9c221bbcc07817f2196b988", + "value": "0x1596632000000000000000000000000066bae3aa" + }, + { + "key": "0x56041f8991ff7eff841647cfda1f1cfb9e7321c5a96c53d4a5072497de6b50f", + "value": "0x24f368d1000000000000000000000000066bae3aa" + }, + { + "key": "0x1b3f3d264a9c63c581333d4b97c556b6f20f9a1abf64c7f71e04b35df62cc70", + "value": "0xf4333000000000000000000000000066bae3aa" + }, + { + "key": "0x2d04b0419a0e89f6b4dabc3dc19b087e71f0dec9f1785606f00517d3468636b", + "value": "0x5f5ec9d000000000000000000000000066bae3aa" + }, + { + "key": "0x143dae8bc0e9898f65cb1eb84f16bfb9cb09431972541141677721dd541f055", + "value": "0x5f4e43e000000000000000000000000066bae3aa" + }, + { + "key": "0x6a6414ca66551a2324e436ed37d069f1660ef01bc3fe90497fc729ee60781b8", + "value": "0x3deeaf8160000000000000000000000000066bae3a9" + }, + { + "key": "0x7b4de97b546ed17a0d490dab334867e9383e029411c268a8902768b6da6a2eb", + "value": "0x5f5b6c7000000000000000000000000066bae3a9" + }, + { + "key": "0x55c3ad197a2fa1dce3a999ae803099406fab085f187b926e7e1f0e38592043d", + "value": "0x4ec756a85e3000000000000000000000000066bae3a9" + }, + { + "key": "0x28e86558bd7c5a9c26fceeafb9570eb7b3011db4a9ff813b318f91129935c37", + "value": "0xf41e4000000000000000000000000066bae3aa" + }, + { + "key": "0x8653303a2624a587179380e17d7876d346aea7f02dbd57782950500ea7276e", + "value": "0x5623d637a61000000000000000000000000066bae3a9" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x7b3303ee433d39925f7c289cd2048052a2d8e2d653bdd7cdfa6a6ab8365445d", + "value": "0x71cdd8f5a17dd69e" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeed6fdc4a8799d9" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "nonce": "0x2b024" } - }, - "execute_invocation": { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x32", - "0x7", - "0x0", - "0x66bae3b1", - "0x4b55434f494e", - "0x505241474d41", - "0x1595e10", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3b1", - "0x4259424954", - "0x505241474d41", - "0x159229b", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5d98bf2", - "0x4c5553442f555344", - "0xa4479", - "0x0", - "0x66bae3b1", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5e31c50", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5484b8", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x454b55424f", - "0x505241474d41", - "0xabb339a", - "0x454b55424f2f555344", - "0x0", - "0x0", - "0x66bae3b1", - "0x44455853435245454e4552", - "0x505241474d41", - "0xaba9500", - "0x454b55424f2f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x0" - ], - "calls": [ - { - "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "calldata": [ - "0x7", - "0x0", - "0x66bae3b1", - "0x4b55434f494e", - "0x505241474d41", - "0x1595e10", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3b1", - "0x4259424954", - "0x505241474d41", - "0x159229b", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5d98bf2", - "0x4c5553442f555344", - "0xa4479", - "0x0", - "0x66bae3b1", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5e31c50", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5484b8", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66bae3b0", - "0x454b55424f", - "0x505241474d41", - "0xabb339a", - "0x454b55424f2f555344", - "0x0", - "0x0", - "0x66bae3b1", - "0x44455853435245454e4552", - "0x505241474d41", - "0xaba9500", - "0x454b55424f2f555344", - "0x0" - ], - "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4745434b4f5445524d494e414c" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5423, - "memory_holes": 48, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 161 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x454b55424f" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6079, - "memory_holes": 64, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 185 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - } - ], - "events": [ - { - "order": 0, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b1", - "0x4b55434f494e", - "0x505241474d41", - "0x1595e10", - "0x5a454e442f555344", - "0x0" - ] - }, - { - "order": 1, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b1", - "0x4259424954", - "0x505241474d41", - "0x159229b", - "0x5a454e442f555344", - "0x0" - ] - }, - { - "order": 2, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b0", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5d98bf2", - "0x4c5553442f555344", - "0xa4479" - ] - }, - { - "order": 3, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b1", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5e31c50", - "0x4c5553442f555344", - "0x0" - ] - }, - { - "order": 4, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b0", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5484b8", - "0x4c4f5244532f555344", - "0x0" - ] - }, - { - "order": 5, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b0", - "0x454b55424f", - "0x505241474d41", - "0xabb339a", - "0x454b55424f2f555344", - "0x0" - ] - }, - { - "order": 6, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b1", - "0x44455853435245454e4552", - "0x505241474d41", - "0xaba9500", - "0x454b55424f2f555344", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 73880, - "memory_holes": 3567, - "pedersen_builtin_applications": 420, - "range_check_builtin_applications": 2342, - "bitwise_builtin_applications": 21 + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 86560, + "memory_holes": 6528, + "pedersen_builtin_applications": 312, + "range_check_builtin_applications": 2724, + "bitwise_builtin_applications": 42, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 18139, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x28796e7da8b36f06cb0f6bcc957cc711e147cb8695ff9de8ca3c883a84200a0" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x32", + "0x7", + "0x0", + "0x66bae3b1", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5d98bf2", + "0x4c5553442f555344", + "0xa4479", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 3584, + "memory_holes": 768, + "range_check_builtin_applications": 72, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x32", + "0x7", + "0x0", + "0x66bae3b1", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5d98bf2", + "0x4c5553442f555344", + "0xa4479", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0x7", + "0x0", + "0x66bae3b1", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5d98bf2", + "0x4c5553442f555344", + "0xa4479", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x66bae3b0", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0", + "0x0", + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x454b55424f" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6079, + "memory_holes": 64, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 185 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b1", + "0x4b55434f494e", + "0x505241474d41", + "0x1595e10", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b1", + "0x4259424954", + "0x505241474d41", + "0x159229b", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5d98bf2", + "0x4c5553442f555344", + "0xa4479" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5e31c50", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b0", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5484b8", + "0x4c4f5244532f555344", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b0", + "0x454b55424f", + "0x505241474d41", + "0xabb339a", + "0x454b55424f2f555344", + "0x0" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b1", + "0x44455853435245454e4552", + "0x505241474d41", + "0xaba9500", + "0x454b55424f2f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 73880, + "memory_holes": 3567, + "pedersen_builtin_applications": 420, + "range_check_builtin_applications": 2342, + "bitwise_builtin_applications": 21 } - ], - "events": [ - { - "order": 7, - "keys": [ - "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", - "0x2843f035b68b733e4b36c40af5db144b8a7eec51b2311e18014afc4a82564d2" - ], - "data": [ - "0x1", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 78177, - "memory_holes": 3574, - "pedersen_builtin_applications": 420, - "range_check_builtin_applications": 2426, - "bitwise_builtin_applications": 21 } - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x3b0102fef594", - "0x0" - ], - "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x3b0102fef594", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1178, - "memory_holes": 23, - "pedersen_builtin_applications": 4, - "range_check_builtin_applications": 37 + ], + "events": [ + { + "order": 7, + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x2843f035b68b733e4b36c40af5db144b8a7eec51b2311e18014afc4a82564d2" + ], + "data": [ + "0x1", + "0x0" + ] } - }, - "state_diff": { - "storage_diffs": [ - { - "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "storage_entries": [ - { - "key": "0x3f5387c1b7249455a72c9a51b7d9414bc2e9b695bc4c6758cfaf975eaaffc65", - "value": "0x5d98bf200000000000000000000a447966bae3b0" - }, - { - "key": "0x32458b65a2f0b1a025a62db5957a6caf050ff13e74827eabbb37bcf288add87", - "value": "0x159229b000000000000000000000000066bae3b1" - }, - { - "key": "0x4f9d4d8d73d1b93cc7e5dc52ed35a76a1f1d2b7d3f63faff7fa2e7435d7248c", - "value": "0x1595e10000000000000000000000000066bae3b1" - }, - { - "key": "0x353a8471031e468050a4fdc2e6fed90ecf09a6d3183749b63412a7d246593e3", - "value": "0xaba9500000000000000000000000000066bae3b1" - }, - { - "key": "0x680131c5e053c3144514aa641c32c25670cf87073f54285de1adb38f88eacd9", - "value": "0x5e31c50000000000000000000000000066bae3b1" - }, - { - "key": "0x678964bc451f6096b5161ad239a1d6c49bb3405f5069ed8e84e2f10781728d6", - "value": "0x5484b8000000000000000000000000066bae3b0" - }, - { - "key": "0x142b698dd5e2c66e5228f779c73e335b082e5d244269207b9305815e8274bbe", - "value": "0xabb339a000000000000000000000000066bae3b0" - } - ] - }, - { - "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "storage_entries": [ - { - "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", - "value": "0x898540f086599e83" - }, - { - "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", - "value": "0x1adeedaadd4d868f6d" - } - ] - } - ], - "nonces": [ - { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "nonce": "0x373dd" - } - ], - "deployed_contracts": [], - "deprecated_declared_classes": [], - "declared_classes": [], - "replaced_classes": [] - }, + ], + "messages": [], "execution_resources": { - "steps": 82939, - "memory_holes": 4365, - "pedersen_builtin_applications": 424, - "range_check_builtin_applications": 2535, - "bitwise_builtin_applications": 21, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 10396, - "l1_data_gas": 0 + "steps": 78177, + "memory_holes": 3574, + "pedersen_builtin_applications": 420, + "range_check_builtin_applications": 2426, + "bitwise_builtin_applications": 21 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x3b0102fef594", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x3b0102fef594", + "0x0" + ] } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 } }, - "transaction_hash": "0x2843f035b68b733e4b36c40af5db144b8a7eec51b2311e18014afc4a82564d2" - }, - { - "trace_root": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x119", - "0x28", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x3ddf4758c0", - "0x53544554482f555344", - "0x0", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0x3d5308775f", - "0x53544554482f555344", - "0x8c05", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x3de1452eaa", - "0x53544554482f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x5fcbed0", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f657d6", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x6351231", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x5f442f0", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x5f4eced", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x5f56214", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x562080cf200", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x56196cd3f00", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x560a3424f25", - "0x4254432f555344", - "0x26f24", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x560c0c8f5e4", - "0x4254432f555344", - "0xf634147", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x5617e5d2480", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x560d24dcfa8", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x560d0936d8d", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae387", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x55edecc5dc0", - "0x4254432f555344", - "0xa88031d", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x4ec5bdcf400", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x4e9248b4cc0", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x4ecc6662f26", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x4ec3016787f", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0xf4236", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0xf4001", - "0x555344432f555344", - "0x49994", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0xf3f07", - "0x555344432f555344", - "0x21399e", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0xf4114", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0xf3fcf", - "0x555344432f555344", - "0x7f", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0xf3fcf", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x5e05d30", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f41154", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0x5f01ecb", - "0x4441492f555344", - "0x4c6720", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x5f49ed2", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5fcbed0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3a8", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x488a6c5200", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae391", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x48a7de2980", - "0x5753544554482f555344", - "0x40b2e79", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x56202171100", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4b55434f494e", - "0x505241474d41", - "0x56842798d80", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x560c14a9fe3", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x5608d8a0277", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x454b55424f", - "0x505241474d41", - "0x55db6b61278", - "0x574254432f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 14441, - "memory_holes": 768, - "range_check_builtin_applications": 303, - "ec_op_builtin_applications": 3 + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x4f9d4d8d73d1b93cc7e5dc52ed35a76a1f1d2b7d3f63faff7fa2e7435d7248c", + "value": "0x1595e10000000000000000000000000066bae3b1" + }, + { + "key": "0x678964bc451f6096b5161ad239a1d6c49bb3405f5069ed8e84e2f10781728d6", + "value": "0x5484b8000000000000000000000000066bae3b0" + }, + { + "key": "0x680131c5e053c3144514aa641c32c25670cf87073f54285de1adb38f88eacd9", + "value": "0x5e31c50000000000000000000000000066bae3b1" + }, + { + "key": "0x353a8471031e468050a4fdc2e6fed90ecf09a6d3183749b63412a7d246593e3", + "value": "0xaba9500000000000000000000000000066bae3b1" + }, + { + "key": "0x3f5387c1b7249455a72c9a51b7d9414bc2e9b695bc4c6758cfaf975eaaffc65", + "value": "0x5d98bf200000000000000000000a447966bae3b0" + }, + { + "key": "0x32458b65a2f0b1a025a62db5957a6caf050ff13e74827eabbb37bcf288add87", + "value": "0x159229b000000000000000000000000066bae3b1" + }, + { + "key": "0x142b698dd5e2c66e5228f779c73e335b082e5d244269207b9305815e8274bbe", + "value": "0xabb339a000000000000000000000000066bae3b0" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeedaadd4d868f6d" + }, + { + "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", + "value": "0x898540f086599e83" + } + ] } - }, - "execute_invocation": { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x119", - "0x28", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x3ddf4758c0", - "0x53544554482f555344", - "0x0", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0x3d5308775f", - "0x53544554482f555344", - "0x8c05", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x3de1452eaa", - "0x53544554482f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x5fcbed0", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f657d6", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x6351231", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x5f442f0", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x5f4eced", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x5f56214", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x562080cf200", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x56196cd3f00", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x560a3424f25", - "0x4254432f555344", - "0x26f24", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x560c0c8f5e4", - "0x4254432f555344", - "0xf634147", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x5617e5d2480", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x560d24dcfa8", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x560d0936d8d", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae387", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x55edecc5dc0", - "0x4254432f555344", - "0xa88031d", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x4ec5bdcf400", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x4e9248b4cc0", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x4ecc6662f26", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x4ec3016787f", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0xf4236", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0xf4001", - "0x555344432f555344", - "0x49994", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0xf3f07", - "0x555344432f555344", - "0x21399e", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0xf4114", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0xf3fcf", - "0x555344432f555344", - "0x7f", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0xf3fcf", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x5e05d30", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f41154", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0x5f01ecb", - "0x4441492f555344", - "0x4c6720", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x5f49ed2", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5fcbed0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3a8", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x488a6c5200", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae391", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x48a7de2980", - "0x5753544554482f555344", - "0x40b2e79", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x56202171100", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4b55434f494e", - "0x505241474d41", - "0x56842798d80", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x560c14a9fe3", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x5608d8a0277", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x454b55424f", - "0x505241474d41", - "0x55db6b61278", - "0x574254432f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x0" - ], - "calls": [ - { - "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "calldata": [ - "0x28", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x3ddf4758c0", - "0x53544554482f555344", - "0x0", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0x3d5308775f", - "0x53544554482f555344", - "0x8c05", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x3de1452eaa", - "0x53544554482f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x5fcbed0", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f657d6", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x6351231", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x5f442f0", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x5f4eced", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x5f56214", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x562080cf200", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x56196cd3f00", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x560a3424f25", - "0x4254432f555344", - "0x26f24", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x560c0c8f5e4", - "0x4254432f555344", - "0xf634147", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x5617e5d2480", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x560d24dcfa8", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x560d0936d8d", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae387", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x55edecc5dc0", - "0x4254432f555344", - "0xa88031d", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x4ec5bdcf400", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x4e9248b4cc0", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x4ecc6662f26", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x4ec3016787f", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0xf4236", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0xf4001", - "0x555344432f555344", - "0x49994", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0xf3f07", - "0x555344432f555344", - "0x21399e", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0xf4114", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0xf3fcf", - "0x555344432f555344", - "0x7f", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0xf3fcf", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x5e05d30", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f41154", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0x5f01ecb", - "0x4441492f555344", - "0x4c6720", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x5f49ed2", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5fcbed0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3a8", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x488a6c5200", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae391", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x48a7de2980", - "0x5753544554482f555344", - "0x40b2e79", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x56202171100", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4b55434f494e", - "0x505241474d41", - "0x56842798d80", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x560c14a9fe3", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x5608d8a0277", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x454b55424f", - "0x505241474d41", - "0x55db6b61278", - "0x574254432f555344", - "0x0" - ], - "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x444546494c4c414d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4931, - "memory_holes": 36, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 143 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x48554f4249" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5751, - "memory_holes": 56, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 173 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4249545354414d50" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4685, - "memory_holes": 30, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 134 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x444546494c4c414d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4931, - "memory_holes": 36, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 143 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x48554f4249" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5751, - "memory_holes": 56, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 173 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x42494e414e4345" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5259, - "memory_holes": 44, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 155 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4249545354414d50" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4685, - "memory_holes": 30, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 134 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x444546494c4c414d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4931, - "memory_holes": 36, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 143 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4f4b58" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5177, - "memory_holes": 42, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 152 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x48554f4249" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5751, - "memory_holes": 56, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 173 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x42494e414e4345" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5259, - "memory_holes": 44, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 155 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4745434b4f5445524d494e414c" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5423, - "memory_holes": 48, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 161 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4249545354414d50" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4685, - "memory_holes": 30, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 134 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x42494e414e4345" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5259, - "memory_holes": 44, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 155 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4249545354414d50" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4685, - "memory_holes": 30, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 134 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4f4b58" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5177, - "memory_holes": 42, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 152 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x48554f4249" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5751, - "memory_holes": 56, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 173 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x42494e414e4345" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5259, - "memory_holes": 44, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 155 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4249545354414d50" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4685, - "memory_holes": 30, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 134 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x444546494c4c414d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4931, - "memory_holes": 36, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 143 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x48554f4249" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5751, - "memory_holes": 56, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 173 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x42494e414e4345" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5259, - "memory_holes": 44, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 155 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4745434b4f5445524d494e414c" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5423, - "memory_holes": 48, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 161 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x444546494c4c414d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4931, - "memory_holes": 36, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 143 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x42494e414e4345" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5259, - "memory_holes": 44, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 155 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x454b55424f" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6079, - "memory_holes": 64, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 185 - } - } - ], - "events": [ - { - "order": 0, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x3ddf4758c0", - "0x53544554482f555344", - "0x0" - ] - }, - { - "order": 1, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0x3d5308775f", - "0x53544554482f555344", - "0x8c05" - ] - }, - { - "order": 2, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x3de1452eaa", - "0x53544554482f555344", - "0x0" - ] - }, - { - "order": 3, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x5fcbed0", - "0x574254432f425443", - "0x0" - ] - }, - { - "order": 4, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f657d6", - "0x574254432f425443", - "0x0" - ] - }, - { - "order": 5, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x6351231", - "0x574254432f425443", - "0x0" - ] - }, - { - "order": 6, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x5f442f0", - "0x574254432f425443", - "0x0" - ] - }, - { - "order": 7, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x5f4eced", - "0x574254432f425443", - "0x0" - ] - }, - { - "order": 8, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x5f56214", - "0x574254432f425443", - "0x0" - ] - }, - { - "order": 9, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x562080cf200", - "0x4254432f555344", - "0x0" - ] - }, - { - "order": 10, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x56196cd3f00", - "0x4254432f555344", - "0x0" - ] - }, - { - "order": 11, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x560a3424f25", - "0x4254432f555344", - "0x26f24" - ] - }, - { - "order": 12, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x560c0c8f5e4", - "0x4254432f555344", - "0xf634147" - ] - }, - { - "order": 13, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x5617e5d2480", - "0x4254432f555344", - "0x0" - ] - }, - { - "order": 14, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x560d24dcfa8", - "0x4254432f555344", - "0x0" - ] - }, - { - "order": 15, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x560d0936d8d", - "0x4254432f555344", - "0x0" - ] - }, - { - "order": 16, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae387", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x55edecc5dc0", - "0x4254432f555344", - "0xa88031d" - ] - }, - { - "order": 17, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x4ec5bdcf400", - "0x4254432f455552", - "0x0" - ] - }, - { - "order": 18, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x4e9248b4cc0", - "0x4254432f455552", - "0x0" - ] - }, - { - "order": 19, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x4ecc6662f26", - "0x4254432f455552", - "0x0" - ] - }, - { - "order": 20, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x4ec3016787f", - "0x4254432f455552", - "0x0" - ] - }, - { - "order": 21, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0xf4236", - "0x555344432f555344", - "0x0" - ] - }, - { - "order": 22, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0xf4001", - "0x555344432f555344", - "0x49994" - ] - }, - { - "order": 23, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0xf3f07", - "0x555344432f555344", - "0x21399e" - ] - }, - { - "order": 24, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0xf4114", - "0x555344432f555344", - "0x0" - ] - }, - { - "order": 25, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0xf3fcf", - "0x555344432f555344", - "0x7f" - ] - }, - { - "order": 26, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0xf3fcf", - "0x555344432f555344", - "0x0" - ] - }, - { - "order": 27, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x5e05d30", - "0x4441492f555344", - "0x0" - ] - }, - { - "order": 28, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f41154", - "0x4441492f555344", - "0x0" - ] - }, - { - "order": 29, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b2", - "0x48554f4249", - "0x505241474d41", - "0x5f01ecb", - "0x4441492f555344", - "0x4c6720" - ] - }, - { - "order": 30, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x5f49ed2", - "0x4441492f555344", - "0x0" - ] - }, - { - "order": 31, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x5fcbed0", - "0x4441492f555344", - "0x0" - ] - }, - { - "order": 32, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3a8", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0" - ] - }, - { - "order": 33, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x488a6c5200", - "0x5753544554482f555344", - "0x0" - ] - }, - { - "order": 34, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae391", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x48a7de2980", - "0x5753544554482f555344", - "0x40b2e79" - ] - }, - { - "order": 35, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x56202171100", - "0x574254432f555344", - "0x0" - ] - }, - { - "order": 36, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4b55434f494e", - "0x505241474d41", - "0x56842798d80", - "0x574254432f555344", - "0x0" - ] - }, - { - "order": 37, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x560c14a9fe3", - "0x574254432f555344", - "0x0" - ] - }, - { - "order": 38, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x5608d8a0277", - "0x574254432f555344", - "0x0" - ] - }, - { - "order": 39, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x454b55424f", - "0x505241474d41", - "0x55db6b61278", - "0x574254432f555344", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 400963, - "memory_holes": 19897, - "pedersen_builtin_applications": 2400, - "range_check_builtin_applications": 12602, - "bitwise_builtin_applications": 120 + ], + "nonces": [ + { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "nonce": "0x373dd" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 82939, + "memory_holes": 4365, + "pedersen_builtin_applications": 424, + "range_check_builtin_applications": 2535, + "bitwise_builtin_applications": 21, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 10396, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x2843f035b68b733e4b36c40af5db144b8a7eec51b2311e18014afc4a82564d2" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x119", + "0x28", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3ddf4758c0", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x3d5308775f", + "0x53544554482f555344", + "0x8c05", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x3de1452eaa", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5fcbed0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f657d6", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x6351231", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5f442f0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f4eced", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5f56214", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x562080cf200", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56196cd3f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x560a3424f25", + "0x4254432f555344", + "0x26f24", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x560c0c8f5e4", + "0x4254432f555344", + "0xf634147", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5617e5d2480", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560d24dcfa8", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x560d0936d8d", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae387", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x4254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x4ec5bdcf400", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x4e9248b4cc0", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x4ecc6662f26", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x4ec3016787f", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0xf4001", + "0x555344432f555344", + "0x49994", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0xf3f07", + "0x555344432f555344", + "0x21399e", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0xf4114", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x7f", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5e05d30", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f41154", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x5f01ecb", + "0x4441492f555344", + "0x4c6720", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f49ed2", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5fcbed0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3a8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x488a6c5200", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae391", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x48a7de2980", + "0x5753544554482f555344", + "0x40b2e79", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56202171100", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4b55434f494e", + "0x505241474d41", + "0x56842798d80", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560c14a9fe3", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5608d8a0277", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x55db6b61278", + "0x574254432f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 14441, + "memory_holes": 768, + "range_check_builtin_applications": 303, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x119", + "0x28", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3ddf4758c0", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x3d5308775f", + "0x53544554482f555344", + "0x8c05", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x3de1452eaa", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5fcbed0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f657d6", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x6351231", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5f442f0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f4eced", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5f56214", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x562080cf200", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56196cd3f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x560a3424f25", + "0x4254432f555344", + "0x26f24", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x560c0c8f5e4", + "0x4254432f555344", + "0xf634147", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5617e5d2480", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560d24dcfa8", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x560d0936d8d", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae387", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x4254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x4ec5bdcf400", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x4e9248b4cc0", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x4ecc6662f26", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x4ec3016787f", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0xf4001", + "0x555344432f555344", + "0x49994", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0xf3f07", + "0x555344432f555344", + "0x21399e", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0xf4114", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x7f", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5e05d30", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f41154", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x5f01ecb", + "0x4441492f555344", + "0x4c6720", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f49ed2", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5fcbed0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3a8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x488a6c5200", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae391", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x48a7de2980", + "0x5753544554482f555344", + "0x40b2e79", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56202171100", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4b55434f494e", + "0x505241474d41", + "0x56842798d80", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560c14a9fe3", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5608d8a0277", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x55db6b61278", + "0x574254432f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0x28", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3ddf4758c0", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x3d5308775f", + "0x53544554482f555344", + "0x8c05", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x3de1452eaa", + "0x53544554482f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5fcbed0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f657d6", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x6351231", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5f442f0", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f4eced", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5f56214", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x562080cf200", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56196cd3f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x560a3424f25", + "0x4254432f555344", + "0x26f24", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x560c0c8f5e4", + "0x4254432f555344", + "0xf634147", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5617e5d2480", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560d24dcfa8", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x560d0936d8d", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae387", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x4254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x4ec5bdcf400", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x4e9248b4cc0", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x4ecc6662f26", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x4ec3016787f", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0xf4001", + "0x555344432f555344", + "0x49994", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0xf3f07", + "0x555344432f555344", + "0x21399e", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0xf4114", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x7f", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5e05d30", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f41154", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x5f01ecb", + "0x4441492f555344", + "0x4c6720", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f49ed2", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5fcbed0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3a8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x488a6c5200", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae391", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x48a7de2980", + "0x5753544554482f555344", + "0x40b2e79", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56202171100", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4b55434f494e", + "0x505241474d41", + "0x56842798d80", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560c14a9fe3", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5608d8a0277", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x55db6b61278", + "0x574254432f555344", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4f4b58" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5177, + "memory_holes": 42, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 152 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4f4b58" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5177, + "memory_holes": 42, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 152 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x454b55424f" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6079, + "memory_holes": 64, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 185 + } } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3ddf4758c0", + "0x53544554482f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x3d5308775f", + "0x53544554482f555344", + "0x8c05" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x3de1452eaa", + "0x53544554482f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5fcbed0", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f657d6", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x6351231", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5f442f0", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 7, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f4eced", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 8, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5f56214", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 9, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x562080cf200", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 10, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56196cd3f00", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 11, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x560a3424f25", + "0x4254432f555344", + "0x26f24" + ] + }, + { + "order": 12, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x560c0c8f5e4", + "0x4254432f555344", + "0xf634147" + ] + }, + { + "order": 13, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x5617e5d2480", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 14, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560d24dcfa8", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 15, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x560d0936d8d", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 16, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae387", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x4254432f555344", + "0xa88031d" + ] + }, + { + "order": 17, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x4ec5bdcf400", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 18, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x4e9248b4cc0", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 19, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x4ecc6662f26", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 20, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x4ec3016787f", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 21, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 22, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0xf4001", + "0x555344432f555344", + "0x49994" + ] + }, + { + "order": 23, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0xf3f07", + "0x555344432f555344", + "0x21399e" + ] + }, + { + "order": 24, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0xf4114", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 25, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x7f" + ] + }, + { + "order": 26, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0xf3fcf", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 27, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x5e05d30", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 28, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f41154", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 29, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b2", + "0x48554f4249", + "0x505241474d41", + "0x5f01ecb", + "0x4441492f555344", + "0x4c6720" + ] + }, + { + "order": 30, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x5f49ed2", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 31, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x5fcbed0", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 32, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3a8", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 33, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x488a6c5200", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "order": 34, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae391", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x48a7de2980", + "0x5753544554482f555344", + "0x40b2e79" + ] + }, + { + "order": 35, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x56202171100", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 36, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4b55434f494e", + "0x505241474d41", + "0x56842798d80", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 37, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x560c14a9fe3", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 38, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x5608d8a0277", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 39, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x55db6b61278", + "0x574254432f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 400963, + "memory_holes": 19897, + "pedersen_builtin_applications": 2400, + "range_check_builtin_applications": 12602, + "bitwise_builtin_applications": 120 } - ], - "events": [ - { - "order": 40, - "keys": [ - "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", - "0x7d5d8006ef56236bc2e96be861bce28d76c6bf899bcaab4826ad66418fa9232" - ], - "data": [ - "0x1", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 416117, - "memory_holes": 19904, - "pedersen_builtin_applications": 2400, - "range_check_builtin_applications": 12917, - "bitwise_builtin_applications": 120 } - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x10ef8d9d327ed", - "0x0" - ], - "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x10ef8d9d327ed", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1178, - "memory_holes": 23, - "pedersen_builtin_applications": 4, - "range_check_builtin_applications": 37 + ], + "events": [ + { + "order": 40, + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x7d5d8006ef56236bc2e96be861bce28d76c6bf899bcaab4826ad66418fa9232" + ], + "data": [ + "0x1", + "0x0" + ] } - }, - "state_diff": { - "storage_diffs": [ - { - "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "storage_entries": [ - { - "key": "0x7754b2348b2e60dbe87013a742a4023766e09c26ad717eb823b2ea722f81cbc", - "value": "0x5f4eced000000000000000000000000066bae3bb" - }, - { - "key": "0x7555be05447f857763cb59c5b8ed70f8c4bf6d19b72466651fbf2730441434f", - "value": "0xf3f07000000000000000000021399e66bae3b2" - }, - { - "key": "0x4c41e5106825baefa90558d41ab6a81d91e0c0899b274745a592d2e0bfb62c6", - "value": "0x5f56214000000000000000000000000066bae3bb" - }, - { - "key": "0x4492f8245907e2ed6e43b48df8bdcb1e08685473c1d31ae41c18652575dac1", - "value": "0x5fcbed0000000000000000000000000066bae3ba" - }, - { - "key": "0x1cebdb571b27f4fea8ede8f7aa82ee989bec1c5575007e03e02f331ad9bd273", - "value": "0x48a7de298000000000000000000040b2e7966bae391" - }, - { - "key": "0x28cc96d34f67705b366fcbe985cb6cf21102f4a86f661b28ad4b93ca3c04da2", - "value": "0x56202171100000000000000000000000000066bae3ba" - }, - { - "key": "0x2fc0a8893b3ddf518ebc793154784db100730ee0630c6b7c202fc56862aef39", - "value": "0x5f49ed2000000000000000000000000066bae3bb" - }, - { - "key": "0x7033d7d9a7711f0d29f1e47c203fd896f9aac13f46c4ee3fc75e956c6a226b8", - "value": "0xf4001000000000000000000004999466bae3bc" - }, - { - "key": "0x709445d4e16bca1594cdd01b40fc9de94f35064ce5ae3f4f7fe0287f040dca7", - "value": "0x488a6c5200000000000000000000000000066bae3ba" - }, - { - "key": "0x2e909151a1ef3ca2ab4e239be49a3187fd526017d7917ae2b3f65ce7c34b128", - "value": "0x3d5308775f0000000000000000000008c0566bae3b2" - }, - { - "key": "0x3309deb6ada9ac40531872b53d9913a3194d93f8d3faaa4dcff7e2414ab935b", - "value": "0x5f01ecb00000000000000000004c672066bae3b2" - }, - { - "key": "0x1b5bc0e146d8ea7165ec68fda771b2fcceab4a27d579ccec48677813ea38518", - "value": "0x3de1452eaa000000000000000000000000066bae3bb" - }, - { - "key": "0x495891978e3ad0f2abe12ad7db7970a9b52fc4d873516bc87903f48a9315ea8", - "value": "0x560c0c8f5e4000000000000000000f63414766bae3bb" - }, - { - "key": "0x22e21dbc1c3a6968d0bac8ea39fdf87f2ab6f8dc0d095e5c9b2a6a7cf4d9a84", - "value": "0x5617e5d2480000000000000000000000000066bae3ba" - }, - { - "key": "0x681929d9be47dff5f6b0107e8964e871058d76c365311b14b4810053cac64c0", - "value": "0x55edecc5dc0000000000000000000a88031d66bae387" - }, - { - "key": "0x64e55314f5906dbba90c20aa6e46d009f213ad2fc4777af1d0adaae63c4aebd", - "value": "0x5f41154000000000000000000000000066bae3ba" - }, - { - "key": "0x9fb37bc3a972dcca9b8c653ee138815097a5c2382ec9fb3330d02751e2b7c7", - "value": "0x562080cf200000000000000000000000000066bae3b9" - }, - { - "key": "0x5ca5b6289bf69f172b7997d274aad1f6ac9f1b6386055c755373c6fbe9004d6", - "value": "0x5608d8a0277000000000000000000000000066bae3bb" - }, - { - "key": "0x4fb7080f4cefd6e12dfe0b274bf550c0009eaeaa95d4c37dbe4e76c65b68f06", - "value": "0x560d24dcfa8000000000000000000000000066bae3bb" - }, - { - "key": "0x7e0892589fcd9989c4dc4757b36fc4eaac58d5001ef1d5d85c192878919ffec", - "value": "0xf3fcf000000000000000000000000066bae3bb" - }, - { - "key": "0x23dd311416ad34d6bc3e98b66fa90be1a7299a7a504c107d87065ab6bfd7e03", - "value": "0x4ec5bdcf400000000000000000000000000066bae3b9" - }, - { - "key": "0x339d325f215405e9af2b88afffab53bcb2d249ea2a4bb916a4c492945089d4b", - "value": "0x56842798d80000000000000000000000000066bae3bb" - }, - { - "key": "0x6a32a4b37dd40587a64c6d565b2c44cb5bbf6b25bd32f473cd9a36d53deea36", - "value": "0x560d0936d8d000000000000000000000000066bae3bb" - }, - { - "key": "0x24cae1e31d04befb4f59016640bb792129882309edbc3d27c7a98520ab302c8", - "value": "0x66bae3a8" - }, - { - "key": "0x4444fc5993677e9bcde336925ea67baf2ee4526c46bc8c7771208dc8040eb7e", - "value": "0x4e9248b4cc0000000000000000000000000066bae3ba" - }, - { - "key": "0x56842ecacca2d6b00944d6a744e3a5aa7184aba1bbdb98e51bcefbf1a6e6b01", - "value": "0x3ddf4758c0000000000000000000000000066bae3ba" - }, - { - "key": "0x20819e88ebf0a32b6d8cfaa187ef967267f94b60debd9da25d513204a30da40", - "value": "0x5f657d6000000000000000000000000066bae3ba" - }, - { - "key": "0x3d54e60b9c626a6698e8a4d780d7db66389360a41a327521d2f80dd62abb636", - "value": "0x560a3424f250000000000000000000026f2466bae3bc" - }, - { - "key": "0x5c154dd0cedc8da61215147dddc9a0937f7c7559b4c1cba6776662e84d79d89", - "value": "0x6351231000000000000000000000000066bae3bb" - }, - { - "key": "0xb74ce762470904c73c2a792221b6d714bdacab58b371d406239b7864112d16", - "value": "0xf4114000000000000000000000000066bae3ba" - }, - { - "key": "0xed858c85e7601e1cf13182dcd167d454e36e3b585da4b29596510ff68153d0", - "value": "0x4ec3016787f000000000000000000000000066bae3bb" - }, - { - "key": "0x72059902c0ad80f9b2111070eb74badc483d9a0f8160f58389b96235341c167", - "value": "0x4ecc6662f26000000000000000000000000066bae3bb" - }, - { - "key": "0x59eb3739e8a075a7c052cab839a146eaa4ad5a3f96118c32b99c4446c748e64", - "value": "0x560c14a9fe3000000000000000000000000066bae3bb" - }, - { - "key": "0x15029ec472c7fc3e12874531883f36fd7aa41f2692e3c407a1408b812b9799d", - "value": "0x5fcbed0000000000000000000000000066bae3b9" - }, - { - "key": "0x622cba05e94fd763c7ccf83a97ec0e05ce2c2bd647e9878cf3e1bcd9e357856", - "value": "0x55db6b61278000000000000000000000000066bae3ba" - }, - { - "key": "0x3c0adf89ce026db32a6ce6c542734d7d57e03210a1895aab5013aa8667f32ee", - "value": "0x56196cd3f00000000000000000000000000066bae3ba" - }, - { - "key": "0x2b5275e9dd1803a8f68e99a525e8eb2f3f12341af66df7063368fe9a0f5041", - "value": "0xf4236000000000000000000000000066bae3b9" - }, - { - "key": "0x30862a78bb76a8f0a5478ac44513b6294b7a03d663e824f73ab90e51f6e3e57", - "value": "0x5f442f0000000000000000000000000066bae3ba" - }, - { - "key": "0x30608c87a4d0737cb010aab79b1b7453a420bbcc646d713bf87115901777da0", - "value": "0x5e05d30000000000000000000000000066bae3b9" - }, - { - "key": "0x7fb1abb517ddb78b1ed112b07654e63d8a39333fdadf7930030ae938781ae47", - "value": "0xf3fcf000000000000000000000007f66bae3bb" - } - ] - }, - { - "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "storage_entries": [ - { - "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", - "value": "0x1adeeeb9d62759b75a" - }, - { - "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", - "value": "0x898431f7ac867696" - } - ] - } - ], - "nonces": [ - { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "nonce": "0x373de" - } - ], - "deployed_contracts": [], - "deprecated_declared_classes": [], - "declared_classes": [], - "replaced_classes": [] - }, + ], + "messages": [], "execution_resources": { - "steps": 431736, - "memory_holes": 20695, - "pedersen_builtin_applications": 2404, - "range_check_builtin_applications": 13257, - "bitwise_builtin_applications": 120, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 47743, - "l1_data_gas": 0 - } + "steps": 416117, + "memory_holes": 19904, + "pedersen_builtin_applications": 2400, + "range_check_builtin_applications": 12917, + "bitwise_builtin_applications": 120 } }, - "transaction_hash": "0x7d5d8006ef56236bc2e96be861bce28d76c6bf899bcaab4826ad66418fa9232" - }, - { - "trace_root": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", - "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", - "0x4", - "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", - "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", - "0x1", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x450f568a8cb6ea1bcce446355e8a1c2e5852a6b8dc3536f495cdceb62e8a7e2", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 550, - "memory_holes": 35, - "range_check_builtin_applications": 22, - "ec_op_builtin_applications": 3 + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x10ef8d9d327ed", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x10ef8d9d327ed", + "0x0" + ] } - }, - "execute_invocation": { - "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", - "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", - "0x4", - "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", - "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", - "0x1", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x450f568a8cb6ea1bcce446355e8a1c2e5852a6b8dc3536f495cdceb62e8a7e2", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x1", - "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4" - ], - "calls": [ - { - "contract_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", - "entry_point_selector": "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", - "calldata": [ - "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", - "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", - "0x1", - "0x0" - ], - "caller_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", - "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4" - ], - "calls": [ - { - "contract_address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", - "entry_point_selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", - "calldata": [], - "caller_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", - "class_hash": "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", - "entry_point_type": "CONSTRUCTOR", - "call_type": "CALL", - "result": [], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 231, - "range_check_builtin_applications": 7 - } - } - ], - "events": [ - { - "order": 0, - "keys": [ - "0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d" - ], - "data": [ - "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", - "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", - "0x1", - "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", - "0x0", - "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1588, - "memory_holes": 2, - "pedersen_builtin_applications": 8, - "range_check_builtin_applications": 29 + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x7fb1abb517ddb78b1ed112b07654e63d8a39333fdadf7930030ae938781ae47", + "value": "0xf3fcf000000000000000000000007f66bae3bb" + }, + { + "key": "0x1b5bc0e146d8ea7165ec68fda771b2fcceab4a27d579ccec48677813ea38518", + "value": "0x3de1452eaa000000000000000000000000066bae3bb" + }, + { + "key": "0x5c154dd0cedc8da61215147dddc9a0937f7c7559b4c1cba6776662e84d79d89", + "value": "0x6351231000000000000000000000000066bae3bb" + }, + { + "key": "0x4fb7080f4cefd6e12dfe0b274bf550c0009eaeaa95d4c37dbe4e76c65b68f06", + "value": "0x560d24dcfa8000000000000000000000000066bae3bb" + }, + { + "key": "0x59eb3739e8a075a7c052cab839a146eaa4ad5a3f96118c32b99c4446c748e64", + "value": "0x560c14a9fe3000000000000000000000000066bae3bb" + }, + { + "key": "0x3309deb6ada9ac40531872b53d9913a3194d93f8d3faaa4dcff7e2414ab935b", + "value": "0x5f01ecb00000000000000000004c672066bae3b2" + }, + { + "key": "0x28cc96d34f67705b366fcbe985cb6cf21102f4a86f661b28ad4b93ca3c04da2", + "value": "0x56202171100000000000000000000000000066bae3ba" + }, + { + "key": "0x7555be05447f857763cb59c5b8ed70f8c4bf6d19b72466651fbf2730441434f", + "value": "0xf3f07000000000000000000021399e66bae3b2" + }, + { + "key": "0x24cae1e31d04befb4f59016640bb792129882309edbc3d27c7a98520ab302c8", + "value": "0x66bae3a8" + }, + { + "key": "0x9fb37bc3a972dcca9b8c653ee138815097a5c2382ec9fb3330d02751e2b7c7", + "value": "0x562080cf200000000000000000000000000066bae3b9" + }, + { + "key": "0x56842ecacca2d6b00944d6a744e3a5aa7184aba1bbdb98e51bcefbf1a6e6b01", + "value": "0x3ddf4758c0000000000000000000000000066bae3ba" + }, + { + "key": "0x709445d4e16bca1594cdd01b40fc9de94f35064ce5ae3f4f7fe0287f040dca7", + "value": "0x488a6c5200000000000000000000000000066bae3ba" + }, + { + "key": "0x72059902c0ad80f9b2111070eb74badc483d9a0f8160f58389b96235341c167", + "value": "0x4ecc6662f26000000000000000000000000066bae3bb" + }, + { + "key": "0x2fc0a8893b3ddf518ebc793154784db100730ee0630c6b7c202fc56862aef39", + "value": "0x5f49ed2000000000000000000000000066bae3bb" + }, + { + "key": "0x495891978e3ad0f2abe12ad7db7970a9b52fc4d873516bc87903f48a9315ea8", + "value": "0x560c0c8f5e4000000000000000000f63414766bae3bb" + }, + { + "key": "0x15029ec472c7fc3e12874531883f36fd7aa41f2692e3c407a1408b812b9799d", + "value": "0x5fcbed0000000000000000000000000066bae3b9" + }, + { + "key": "0x1cebdb571b27f4fea8ede8f7aa82ee989bec1c5575007e03e02f331ad9bd273", + "value": "0x48a7de298000000000000000000040b2e7966bae391" + }, + { + "key": "0x64e55314f5906dbba90c20aa6e46d009f213ad2fc4777af1d0adaae63c4aebd", + "value": "0x5f41154000000000000000000000000066bae3ba" + }, + { + "key": "0x622cba05e94fd763c7ccf83a97ec0e05ce2c2bd647e9878cf3e1bcd9e357856", + "value": "0x55db6b61278000000000000000000000000066bae3ba" + }, + { + "key": "0x2b5275e9dd1803a8f68e99a525e8eb2f3f12341af66df7063368fe9a0f5041", + "value": "0xf4236000000000000000000000000066bae3b9" + }, + { + "key": "0x2e909151a1ef3ca2ab4e239be49a3187fd526017d7917ae2b3f65ce7c34b128", + "value": "0x3d5308775f0000000000000000000008c0566bae3b2" + }, + { + "key": "0x4444fc5993677e9bcde336925ea67baf2ee4526c46bc8c7771208dc8040eb7e", + "value": "0x4e9248b4cc0000000000000000000000000066bae3ba" + }, + { + "key": "0x7033d7d9a7711f0d29f1e47c203fd896f9aac13f46c4ee3fc75e956c6a226b8", + "value": "0xf4001000000000000000000004999466bae3bc" + }, + { + "key": "0x3c0adf89ce026db32a6ce6c542734d7d57e03210a1895aab5013aa8667f32ee", + "value": "0x56196cd3f00000000000000000000000000066bae3ba" + }, + { + "key": "0x22e21dbc1c3a6968d0bac8ea39fdf87f2ab6f8dc0d095e5c9b2a6a7cf4d9a84", + "value": "0x5617e5d2480000000000000000000000000066bae3ba" + }, + { + "key": "0x3d54e60b9c626a6698e8a4d780d7db66389360a41a327521d2f80dd62abb636", + "value": "0x560a3424f250000000000000000000026f2466bae3bc" + }, + { + "key": "0x7754b2348b2e60dbe87013a742a4023766e09c26ad717eb823b2ea722f81cbc", + "value": "0x5f4eced000000000000000000000000066bae3bb" + }, + { + "key": "0x30608c87a4d0737cb010aab79b1b7453a420bbcc646d713bf87115901777da0", + "value": "0x5e05d30000000000000000000000000066bae3b9" + }, + { + "key": "0x7e0892589fcd9989c4dc4757b36fc4eaac58d5001ef1d5d85c192878919ffec", + "value": "0xf3fcf000000000000000000000000066bae3bb" + }, + { + "key": "0x20819e88ebf0a32b6d8cfaa187ef967267f94b60debd9da25d513204a30da40", + "value": "0x5f657d6000000000000000000000000066bae3ba" + }, + { + "key": "0x4492f8245907e2ed6e43b48df8bdcb1e08685473c1d31ae41c18652575dac1", + "value": "0x5fcbed0000000000000000000000000066bae3ba" + }, + { + "key": "0xb74ce762470904c73c2a792221b6d714bdacab58b371d406239b7864112d16", + "value": "0xf4114000000000000000000000000066bae3ba" + }, + { + "key": "0x23dd311416ad34d6bc3e98b66fa90be1a7299a7a504c107d87065ab6bfd7e03", + "value": "0x4ec5bdcf400000000000000000000000000066bae3b9" + }, + { + "key": "0x339d325f215405e9af2b88afffab53bcb2d249ea2a4bb916a4c492945089d4b", + "value": "0x56842798d80000000000000000000000000066bae3bb" + }, + { + "key": "0x681929d9be47dff5f6b0107e8964e871058d76c365311b14b4810053cac64c0", + "value": "0x55edecc5dc0000000000000000000a88031d66bae387" + }, + { + "key": "0x30862a78bb76a8f0a5478ac44513b6294b7a03d663e824f73ab90e51f6e3e57", + "value": "0x5f442f0000000000000000000000000066bae3ba" + }, + { + "key": "0xed858c85e7601e1cf13182dcd167d454e36e3b585da4b29596510ff68153d0", + "value": "0x4ec3016787f000000000000000000000000066bae3bb" + }, + { + "key": "0x5ca5b6289bf69f172b7997d274aad1f6ac9f1b6386055c755373c6fbe9004d6", + "value": "0x5608d8a0277000000000000000000000000066bae3bb" + }, + { + "key": "0x4c41e5106825baefa90558d41ab6a81d91e0c0899b274745a592d2e0bfb62c6", + "value": "0x5f56214000000000000000000000000066bae3bb" + }, + { + "key": "0x6a32a4b37dd40587a64c6d565b2c44cb5bbf6b25bd32f473cd9a36d53deea36", + "value": "0x560d0936d8d000000000000000000000000066bae3bb" } - } - ], - "events": [], - "messages": [], - "execution_resources": { - "steps": 2952, - "memory_holes": 33, - "pedersen_builtin_applications": 8, - "range_check_builtin_applications": 68 + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeeeb9d62759b75a" + }, + { + "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", + "value": "0x898431f7ac867696" + } + ] } - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x175c6625e77c", - "0x0" - ], - "caller_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", - "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x175c6625e77c", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1178, - "memory_holes": 23, - "pedersen_builtin_applications": 4, - "range_check_builtin_applications": 37 + ], + "nonces": [ + { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "nonce": "0x373de" } - }, - "state_diff": { - "storage_diffs": [ - { - "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "storage_entries": [ - { - "key": "0x1f1ab06f2192611d82a43fe635c2c992a74352bdd33cd4723bb5db9157067a6", - "value": "0x7cf83c74ff56fb64" - }, - { - "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", - "value": "0x1adeeed1328d7f9ed6" - } - ] - }, - { - "address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", - "storage_entries": [ - { - "key": "0x23ec0bb4210edd5cba85afd05127efcd2fc6a781bfed49188da1081670b22d8", - "value": "0x187623be1669117f3bd4de38e86b01e2493a28ccba1f669ff0d7a9d9d6ca571" - } - ] - } - ], - "nonces": [ - { - "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", - "nonce": "0x19" - } - ], - "deployed_contracts": [ - { - "address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", - "class_hash": "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff" + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 431736, + "memory_holes": 20695, + "pedersen_builtin_applications": 2404, + "range_check_builtin_applications": 13257, + "bitwise_builtin_applications": 120, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 47743, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x7d5d8006ef56236bc2e96be861bce28d76c6bf899bcaab4826ad66418fa9232" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", + "0x1", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x450f568a8cb6ea1bcce446355e8a1c2e5852a6b8dc3536f495cdceb62e8a7e2", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 550, + "memory_holes": 35, + "range_check_builtin_applications": 22, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", + "0x1", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x450f568a8cb6ea1bcce446355e8a1c2e5852a6b8dc3536f495cdceb62e8a7e2", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x1", + "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4" + ], + "calls": [ + { + "contract_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "entry_point_selector": "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "calldata": [ + "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939", + "0x1", + "0x0" + ], + "caller_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "class_hash": "0x7b3e05f48f0c69e4a65ce5e076a66271a527aff2c34ce1083ec6e1526997a69", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4" + ], + "calls": [ + { + "contract_address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", + "entry_point_selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", + "calldata": [], + "caller_address": "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "class_hash": "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "entry_point_type": "CONSTRUCTOR", + "call_type": "CALL", + "result": [], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 231, + "range_check_builtin_applications": 7 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x26b160f10156dea0639bec90696772c640b9706a47f5b8c52ea1abe5858b34d" + ], + "data": [ + "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", + "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "0x1", + "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff", + "0x0", + "0x28c02fad1fa5d5dc07d8f17be5335891fba60179e0a80cc98005af9ebcfe939" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1588, + "memory_holes": 2, + "pedersen_builtin_applications": 8, + "range_check_builtin_applications": 29 } - ], - "deprecated_declared_classes": [], - "declared_classes": [], - "replaced_classes": [] - }, + } + ], + "events": [], + "messages": [], "execution_resources": { - "steps": 4680, - "memory_holes": 91, - "pedersen_builtin_applications": 12, - "range_check_builtin_applications": 127, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 4116, - "l1_data_gas": 0 + "steps": 2952, + "memory_holes": 33, + "pedersen_builtin_applications": 8, + "range_check_builtin_applications": 68 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x175c6625e77c", + "0x0" + ], + "caller_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x175c6625e77c", + "0x0" + ] } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 } }, - "transaction_hash": "0x558bbb319d3b162d25d5487a2ad0e00ae637ec674f4c2fba5bd55cc00161542" - }, - { - "trace_root": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x9b", - "0x16", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x56debd24480", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x55edecc5dc0", - "0x574254432f555344", - "0xa88031d", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x26232f0", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2606bdc", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x2622f0b", - "0x5354524b2f555344", - "0x456ca1e", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x2625618", - "0x5354524b2f555344", - "0xd9c900", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x262a050", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x2616bc8", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x2616bc8", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x454b55424f", - "0x505241474d41", - "0x2665ade", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x261bdc0", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x3df1383e00", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x3de13ee2ff", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x3ddcd4b70c", - "0x4554482f555344", - "0x2ca27c", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x3de7440640", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x4259424954", - "0x505241474d41", - "0x3de08e208d", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x3ddf9a0dbc", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x3df1754700", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x3de0235852", - "0x4554482f555344", - "0x4b7be9e", - "0x0", - "0x66bae3ba", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x3dcf01b280", - "0x4554482f555344", - "0x4465e224", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0xf43d0", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x44455853435245454e4552", - "0x505241474d41", - "0xf41dc", - "0x555344542f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 8519, - "memory_holes": 768, - "range_check_builtin_applications": 177, - "ec_op_builtin_applications": 3 + "state_diff": { + "storage_diffs": [ + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeeed1328d7f9ed6" + }, + { + "key": "0x1f1ab06f2192611d82a43fe635c2c992a74352bdd33cd4723bb5db9157067a6", + "value": "0x7cf83c74ff56fb64" + } + ] + }, + { + "address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", + "storage_entries": [ + { + "key": "0x23ec0bb4210edd5cba85afd05127efcd2fc6a781bfed49188da1081670b22d8", + "value": "0x187623be1669117f3bd4de38e86b01e2493a28ccba1f669ff0d7a9d9d6ca571" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x69fdcf2381d323ddef117be3888f279ac750f5b1f51e6fd674a5053103c2bb7", + "nonce": "0x19" } - }, - "execute_invocation": { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x9b", - "0x16", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x56debd24480", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x55edecc5dc0", - "0x574254432f555344", - "0xa88031d", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x26232f0", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2606bdc", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x2622f0b", - "0x5354524b2f555344", - "0x456ca1e", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x2625618", - "0x5354524b2f555344", - "0xd9c900", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x262a050", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x2616bc8", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x2616bc8", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x454b55424f", - "0x505241474d41", - "0x2665ade", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x261bdc0", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x3df1383e00", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x3de13ee2ff", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x3ddcd4b70c", - "0x4554482f555344", - "0x2ca27c", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x3de7440640", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x4259424954", - "0x505241474d41", - "0x3de08e208d", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x3ddf9a0dbc", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x3df1754700", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x3de0235852", - "0x4554482f555344", - "0x4b7be9e", - "0x0", - "0x66bae3ba", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x3dcf01b280", - "0x4554482f555344", - "0x4465e224", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0xf43d0", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x44455853435245454e4552", - "0x505241474d41", - "0xf41dc", - "0x555344542f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x0" - ], - "calls": [ - { - "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "calldata": [ - "0x16", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x56debd24480", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x55edecc5dc0", - "0x574254432f555344", - "0xa88031d", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x26232f0", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2606bdc", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x2622f0b", - "0x5354524b2f555344", - "0x456ca1e", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x2625618", - "0x5354524b2f555344", - "0xd9c900", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x262a050", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x2616bc8", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x2616bc8", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x454b55424f", - "0x505241474d41", - "0x2665ade", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x261bdc0", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x3df1383e00", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x3de13ee2ff", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x3ddcd4b70c", - "0x4554482f555344", - "0x2ca27c", - "0x0", - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x3de7440640", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x4259424954", - "0x505241474d41", - "0x3de08e208d", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x3ddf9a0dbc", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x3df1754700", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x3de0235852", - "0x4554482f555344", - "0x4b7be9e", - "0x0", - "0x66bae3ba", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x3dcf01b280", - "0x4554482f555344", - "0x4465e224", - "0x0", - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0xf43d0", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3bb", - "0x44455853435245454e4552", - "0x505241474d41", - "0xf41dc", - "0x555344542f555344", - "0x0" - ], - "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4745434b4f5445524d494e414c" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5423, - "memory_holes": 48, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 161 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4249545354414d50" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4685, - "memory_holes": 30, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 134 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x444546494c4c414d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4931, - "memory_holes": 36, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 143 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4f4b58" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5177, - "memory_holes": 42, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 152 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x48554f4249" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5751, - "memory_holes": 56, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 173 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x42494e414e4345" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5259, - "memory_holes": 44, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 155 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x454b55424f" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6079, - "memory_holes": 64, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 185 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4249545354414d50" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4685, - "memory_holes": 30, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 134 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x444546494c4c414d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4931, - "memory_holes": 36, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 143 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4f4b58" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5177, - "memory_holes": 42, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 152 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4b55434f494e" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5669, - "memory_holes": 54, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 170 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4259424954" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5341, - "memory_holes": 46, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 158 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x42494e414e4345" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5259, - "memory_holes": 44, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 155 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x48554f4249" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5751, - "memory_holes": 56, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 173 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4745434b4f5445524d494e414c" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5423, - "memory_holes": 48, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 161 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x4249545354414d50" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 4685, - "memory_holes": 30, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 134 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x505241474d41" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x505241474d41", - "0x44455853435245454e4552" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 6161, - "memory_holes": 66, - "pedersen_builtin_applications": 41, - "range_check_builtin_applications": 188 - } - } - ], - "events": [ - { - "order": 0, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x56debd24480", - "0x574254432f555344", - "0x0" - ] - }, - { - "order": 1, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x55edecc5dc0", - "0x574254432f555344", - "0xa88031d" - ] - }, - { - "order": 2, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x26232f0", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 3, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2606bdc", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 4, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x2622f0b", - "0x5354524b2f555344", - "0x456ca1e" - ] - }, - { - "order": 5, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x2625618", - "0x5354524b2f555344", - "0xd9c900" - ] - }, - { - "order": 6, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x262a050", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 7, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x4259424954", - "0x505241474d41", - "0x2616bc8", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 8, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x2616bc8", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 9, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x454b55424f", - "0x505241474d41", - "0x2665ade", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 10, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x261bdc0", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 11, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0x3df1383e00", - "0x4554482f555344", - "0x0" - ] - }, - { - "order": 12, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x444546494c4c414d41", - "0x505241474d41", - "0x3de13ee2ff", - "0x4554482f555344", - "0x0" - ] - }, - { - "order": 13, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bc", - "0x4f4b58", - "0x505241474d41", - "0x3ddcd4b70c", - "0x4554482f555344", - "0x2ca27c" - ] - }, - { - "order": 14, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4b55434f494e", - "0x505241474d41", - "0x3de7440640", - "0x4554482f555344", - "0x0" - ] - }, - { - "order": 15, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4259424954", - "0x505241474d41", - "0x3de08e208d", - "0x4554482f555344", - "0x0" - ] - }, - { - "order": 16, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x42494e414e4345", - "0x505241474d41", - "0x3ddf9a0dbc", - "0x4554482f555344", - "0x0" - ] - }, - { - "order": 17, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x44455853435245454e4552", - "0x505241474d41", - "0x3df1754700", - "0x4554482f555344", - "0x0" - ] - }, - { - "order": 18, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x48554f4249", - "0x505241474d41", - "0x3de0235852", - "0x4554482f555344", - "0x4b7be9e" - ] - }, - { - "order": 19, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3ba", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x3dcf01b280", - "0x4554482f555344", - "0x4465e224" - ] - }, - { - "order": 20, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3b9", - "0x4249545354414d50", - "0x505241474d41", - "0xf43d0", - "0x555344542f555344", - "0x0" - ] - }, - { - "order": 21, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3bb", - "0x44455853435245454e4552", - "0x505241474d41", - "0xf41dc", - "0x555344542f555344", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 222935, - "memory_holes": 10992, - "pedersen_builtin_applications": 1320, - "range_check_builtin_applications": 7022, - "bitwise_builtin_applications": 66 + ], + "deployed_contracts": [ + { + "address": "0x7cd1359ded810b3cd2dfb37121fff6423cda9384c3fc1052e54bf801fe434e4", + "class_hash": "0x13267b9ab398ff17b9260d91fb21e8167bb6bf4aca757152eec723237858dff" + } + ], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 4680, + "memory_holes": 91, + "pedersen_builtin_applications": 12, + "range_check_builtin_applications": 127, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 4116, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x558bbb319d3b162d25d5487a2ad0e00ae637ec674f4c2fba5bd55cc00161542" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x9b", + "0x16", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x56debd24480", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x574254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x26232f0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2606bdc", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x2622f0b", + "0x5354524b2f555344", + "0x456ca1e", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x2625618", + "0x5354524b2f555344", + "0xd9c900", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x262a050", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x2665ade", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x261bdc0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x3df1383e00", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3de13ee2ff", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x3ddcd4b70c", + "0x4554482f555344", + "0x2ca27c", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x3de7440640", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4259424954", + "0x505241474d41", + "0x3de08e208d", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x3ddf9a0dbc", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x3df1754700", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x3de0235852", + "0x4554482f555344", + "0x4b7be9e", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x3dcf01b280", + "0x4554482f555344", + "0x4465e224", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf43d0", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x44455853435245454e4552", + "0x505241474d41", + "0xf41dc", + "0x555344542f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 8519, + "memory_holes": 768, + "range_check_builtin_applications": 177, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x9b", + "0x16", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x56debd24480", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x574254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x26232f0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2606bdc", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x2622f0b", + "0x5354524b2f555344", + "0x456ca1e", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x2625618", + "0x5354524b2f555344", + "0xd9c900", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x262a050", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x2665ade", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x261bdc0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x3df1383e00", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3de13ee2ff", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x3ddcd4b70c", + "0x4554482f555344", + "0x2ca27c", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x3de7440640", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4259424954", + "0x505241474d41", + "0x3de08e208d", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x3ddf9a0dbc", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x3df1754700", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x3de0235852", + "0x4554482f555344", + "0x4b7be9e", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x3dcf01b280", + "0x4554482f555344", + "0x4465e224", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf43d0", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x44455853435245454e4552", + "0x505241474d41", + "0xf41dc", + "0x555344542f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x1a736d6ed154502257f02b1ccdf4d9d1089f80811cd6acad48e6b6a9d1f2003", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0x16", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x56debd24480", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x574254432f555344", + "0xa88031d", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x26232f0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2606bdc", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x2622f0b", + "0x5354524b2f555344", + "0x456ca1e", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x2625618", + "0x5354524b2f555344", + "0xd9c900", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x262a050", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x2665ade", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x261bdc0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x3df1383e00", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3de13ee2ff", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x3ddcd4b70c", + "0x4554482f555344", + "0x2ca27c", + "0x0", + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x3de7440640", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x4259424954", + "0x505241474d41", + "0x3de08e208d", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x3ddf9a0dbc", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x3df1754700", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x3de0235852", + "0x4554482f555344", + "0x4b7be9e", + "0x0", + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x3dcf01b280", + "0x4554482f555344", + "0x4465e224", + "0x0", + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf43d0", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3bb", + "0x44455853435245454e4552", + "0x505241474d41", + "0xf41dc", + "0x555344542f555344", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4f4b58" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5177, + "memory_holes": 42, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 152 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x454b55424f" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6079, + "memory_holes": 64, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 185 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x444546494c4c414d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4931, + "memory_holes": 36, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 143 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4f4b58" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5177, + "memory_holes": 42, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 152 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4b55434f494e" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5669, + "memory_holes": 54, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 170 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4259424954" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5341, + "memory_holes": 46, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 158 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x42494e414e4345" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5259, + "memory_holes": 44, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 155 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x48554f4249" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5751, + "memory_holes": 56, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 173 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4745434b4f5445524d494e414c" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5423, + "memory_holes": 48, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 161 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x4249545354414d50" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 4685, + "memory_holes": 30, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 134 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x505241474d41" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x505241474d41", + "0x44455853435245454e4552" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 6161, + "memory_holes": 66, + "pedersen_builtin_applications": 41, + "range_check_builtin_applications": 188 + } } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x56debd24480", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x55edecc5dc0", + "0x574254432f555344", + "0xa88031d" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x26232f0", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2606bdc", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x2622f0b", + "0x5354524b2f555344", + "0x456ca1e" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x2625618", + "0x5354524b2f555344", + "0xd9c900" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x262a050", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 7, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x4259424954", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 8, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x2616bc8", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 9, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x454b55424f", + "0x505241474d41", + "0x2665ade", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 10, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x261bdc0", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 11, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0x3df1383e00", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 12, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x444546494c4c414d41", + "0x505241474d41", + "0x3de13ee2ff", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 13, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bc", + "0x4f4b58", + "0x505241474d41", + "0x3ddcd4b70c", + "0x4554482f555344", + "0x2ca27c" + ] + }, + { + "order": 14, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4b55434f494e", + "0x505241474d41", + "0x3de7440640", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 15, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4259424954", + "0x505241474d41", + "0x3de08e208d", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 16, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x42494e414e4345", + "0x505241474d41", + "0x3ddf9a0dbc", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 17, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x44455853435245454e4552", + "0x505241474d41", + "0x3df1754700", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 18, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x48554f4249", + "0x505241474d41", + "0x3de0235852", + "0x4554482f555344", + "0x4b7be9e" + ] + }, + { + "order": 19, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3ba", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x3dcf01b280", + "0x4554482f555344", + "0x4465e224" + ] + }, + { + "order": 20, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3b9", + "0x4249545354414d50", + "0x505241474d41", + "0xf43d0", + "0x555344542f555344", + "0x0" + ] + }, + { + "order": 21, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3bb", + "0x44455853435245454e4552", + "0x505241474d41", + "0xf41dc", + "0x555344542f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 222935, + "memory_holes": 10992, + "pedersen_builtin_applications": 1320, + "range_check_builtin_applications": 7022, + "bitwise_builtin_applications": 66 } - ], - "events": [ - { - "order": 22, - "keys": [ - "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", - "0x54b7768164ecbc22689e2c084201b5dc07a488b3b08c1a692d1d986659e6354" - ], - "data": [ - "0x1", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 232167, - "memory_holes": 10999, - "pedersen_builtin_applications": 1320, - "range_check_builtin_applications": 7211, - "bitwise_builtin_applications": 66 } - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x9b5bfa6b2917", - "0x0" - ], - "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x9b5bfa6b2917", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1178, - "memory_holes": 23, - "pedersen_builtin_applications": 4, - "range_check_builtin_applications": 37 + ], + "events": [ + { + "order": 22, + "keys": [ + "0x1dcde06aabdbca2f80aa51392b345d7549d7757aa855f7e37f5d335ac8243b1", + "0x54b7768164ecbc22689e2c084201b5dc07a488b3b08c1a692d1d986659e6354" + ], + "data": [ + "0x1", + "0x0" + ] } - }, - "state_diff": { - "storage_diffs": [ - { - "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "storage_entries": [ - { - "key": "0x4284ad9838adf91d3e8334b1e4917bf45876b6737d01b704a218b32d217bd1f", - "value": "0x2616bc8000000000000000000000000066bae3bb" - }, - { - "key": "0x7f8b72b9ee8253bd67f2a3d4fb7bd8d69b837f4454342356742a97f96ecaf8a", - "value": "0x2665ade000000000000000000000000066bae3ba" - }, - { - "key": "0x402533d4b23ae34cdbe811d39c25c645dbb513785c261d6b2cbf8fbde29645a", - "value": "0x3df1754700000000000000000000000000066bae3ba" - }, - { - "key": "0x4375ecfc66e2bf27dfab4f3f823fcc7aacb076952c06432c2c012580145d418", - "value": "0x26232f0000000000000000000000000066bae3b9" - }, - { - "key": "0x1d3031beda8746da5df938eec534834e56deef0938b88f1ca4c2bdefb36668b", - "value": "0xf41dc000000000000000000000000066bae3bb" - }, - { - "key": "0x4991886e34c01023fba073c0456bbc54ae33b85c67f090e1b73f8a9b8330672", - "value": "0x3dcf01b280000000000000000004465e22466bae3ba" - }, - { - "key": "0x1f77d79bd218039c0aa94eaea6417d9b629b0fd4fd3e2a40828b0c5fd8ff9c4", - "value": "0x26256180000000000000000000d9c90066bae3bb" - }, - { - "key": "0x1017456aa1b15ea00238811c33e7c86e7289e6a7ab7b5b04738916cc2249358", - "value": "0x3de08e208d000000000000000000000000066bae3ba" - }, - { - "key": "0x446cc02cebee1246119624372860eda3b93e9174a78eec0a626671adaf3f715", - "value": "0xf43d0000000000000000000000000066bae3b9" - }, - { - "key": "0x24509222463e5d334336e150cc8a2ef5081888b33c5d500d8f91913c81352e3", - "value": "0x3ddf9a0dbc000000000000000000000000066bae3bb" - }, - { - "key": "0x201064f17cc42b7b2161b931995442075e5dec616fb4081a37eeece6759e17e", - "value": "0x3de13ee2ff000000000000000000000000066bae3ba" - }, - { - "key": "0x75c2cafa0f908db61e577f3a555f5cbcb49adfd61c99be68c88da0722c4aa35", - "value": "0x3df1383e00000000000000000000000000066bae3b9" - }, - { - "key": "0x6c1c04d4c8b1c9f29c5c7c3ebda430095a69d76342fbd7ee9b35feab0f30ec1", - "value": "0x2622f0b000000000000000000456ca1e66bae3bc" - }, - { - "key": "0x4980bcbf5314101edf5a53eea20451fb3fbbd1ca848fd1ffc2219505c82ab77", - "value": "0x3de7440640000000000000000000000000066bae3ba" - }, - { - "key": "0x2f4cf03188a8eeef916ecb3d732359bbd865c6be46da0e54a00885bf76350fc", - "value": "0x56debd24480000000000000000000000000066bae3ba" - }, - { - "key": "0x18b16c68f1e1b481b881f9dc04c5944809421a59c9afa07af662b163536b561", - "value": "0x2606bdc000000000000000000000000066bae3ba" - }, - { - "key": "0x5fa55109aaac8b6f2a93dc26f90261f62428b2f2f1ce330099d815e5c4c87ed", - "value": "0x3ddcd4b70c00000000000000000002ca27c66bae3bc" - }, - { - "key": "0x54a0c1b798651f2fbf043d09c6719198778e3c030b12a28bbc428435f11a81", - "value": "0x55edecc5dc0000000000000000000a88031d66bae3ba" - }, - { - "key": "0x3006bc4c9e35cde6cb6979e3f9b6a7cb6efc3fe31f757055e2e9e340f706c85", - "value": "0x262a050000000000000000000000000066bae3ba" - }, - { - "key": "0x154db62c88a5b25aab1e64ef455a26194e26d1f8e46207d2d1287b9241ca8bd", - "value": "0x3de02358520000000000000000004b7be9e66bae3bb" - }, - { - "key": "0x561773d3b9960583efa16b00fc0c5fa3bcadba3dd30c95c1479fde03ec02e66", - "value": "0x2616bc8000000000000000000000000066bae3bb" - }, - { - "key": "0x41bb8505263aa8810595a282bbfcd5cec380b082c23dca28a243c765a406eaf", - "value": "0x261bdc0000000000000000000000000066bae3ba" - } - ] - }, - { - "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "storage_entries": [ - { - "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", - "value": "0x1adeef6c8e87eac7ed" - }, - { - "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", - "value": "0x8983969bb21b4d7f" - } - ] - } - ], - "nonces": [ - { - "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "nonce": "0x373df" - } - ], - "deployed_contracts": [], - "deprecated_declared_classes": [], - "declared_classes": [], - "replaced_classes": [] - }, + ], + "messages": [], "execution_resources": { - "steps": 241864, - "memory_holes": 11790, - "pedersen_builtin_applications": 1324, - "range_check_builtin_applications": 7425, - "bitwise_builtin_applications": 66, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 27373, - "l1_data_gas": 0 - } + "steps": 232167, + "memory_holes": 10999, + "pedersen_builtin_applications": 1320, + "range_check_builtin_applications": 7211, + "bitwise_builtin_applications": 66 } }, - "transaction_hash": "0x54b7768164ecbc22689e2c084201b5dc07a488b3b08c1a692d1d986659e6354" - }, - { - "trace_root": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x63", - "0xe", - "0x0", - "0x66bae3c4", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5620fad9bae", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3c4", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3dee00d9a3", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x560aa1fe28c", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5b6c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x4ec57014baa", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x48e58ce025", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f4e43e", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4200", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x24f15c4e", - "0x554e492f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5ec9d", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4332", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x262df77", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x159661c", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3debb0aa61", - "0x53544554482f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 5446, - "memory_holes": 62, - "range_check_builtin_applications": 117, - "ec_op_builtin_applications": 3 + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x9b5bfa6b2917", + "0x0" + ], + "caller_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x9b5bfa6b2917", + "0x0" + ] } - }, - "execute_invocation": { - "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x63", - "0xe", - "0x0", - "0x66bae3c4", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5620fad9bae", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3c4", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3dee00d9a3", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x560aa1fe28c", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5b6c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x4ec57014baa", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x48e58ce025", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f4e43e", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4200", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x24f15c4e", - "0x554e492f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5ec9d", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4332", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x262df77", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x159661c", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3debb0aa61", - "0x53544554482f555344", - "0x0" - ], - "caller_address": "0x0", - "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x0" - ], - "calls": [ - { - "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "calldata": [ - "0xe", - "0x0", - "0x66bae3c4", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5620fad9bae", - "0x4254432f555344", - "0x0", - "0x0", - "0x66bae3c4", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3dee00d9a3", - "0x4554482f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x560aa1fe28c", - "0x574254432f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5b6c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x4ec57014baa", - "0x4254432f455552", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x48e58ce025", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f4e43e", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4200", - "0x555344432f555344", - "0x0", - "0x0", - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x24f15c4e", - "0x554e492f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5ec9d", - "0x4441492f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4332", - "0x555344542f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x262df77", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x159661c", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3debb0aa61", - "0x53544554482f555344", - "0x0" - ], - "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", - "calldata": [ - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 251, - "memory_holes": 3, - "pedersen_builtin_applications": 1, - "range_check_builtin_applications": 9 - } - }, - { - "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", - "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", - "calldata": [ - "0x464f55524c454146", - "0x464f55524c454146" - ], - "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 575, - "memory_holes": 9, - "pedersen_builtin_applications": 3, - "range_check_builtin_applications": 17 - } - } - ], - "events": [ - { - "order": 0, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c4", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5620fad9bae", - "0x4254432f555344", - "0x0" - ] - }, - { - "order": 1, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c4", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3dee00d9a3", - "0x4554482f555344", - "0x0" - ] - }, - { - "order": 2, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x560aa1fe28c", - "0x574254432f555344", - "0x0" - ] - }, - { - "order": 3, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5b6c7", - "0x574254432f425443", - "0x0" - ] - }, - { - "order": 4, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x4ec57014baa", - "0x4254432f455552", - "0x0" - ] - }, - { - "order": 5, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x48e58ce025", - "0x5753544554482f555344", - "0x0" - ] - }, - { - "order": 6, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f4e43e", - "0x4c5553442f555344", - "0x0" - ] - }, - { - "order": 7, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4200", - "0x555344432f555344", - "0x0" - ] - }, - { - "order": 8, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c5", - "0x464f55524c454146", - "0x464f55524c454146", - "0x24f15c4e", - "0x554e492f555344", - "0x0" - ] - }, - { - "order": 9, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x5f5ec9d", - "0x4441492f555344", - "0x0" - ] - }, - { - "order": 10, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0xf4332", - "0x555344542f555344", - "0x0" - ] - }, - { - "order": 11, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x262df77", - "0x5354524b2f555344", - "0x0" - ] - }, - { - "order": 12, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x159661c", - "0x5a454e442f555344", - "0x0" - ] - }, - { - "order": 13, - "keys": [ - "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" - ], - "data": [ - "0x66bae3c6", - "0x464f55524c454146", - "0x464f55524c454146", - "0x3debb0aa61", - "0x53544554482f555344", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 73681, - "memory_holes": 6440, - "pedersen_builtin_applications": 308, - "range_check_builtin_applications": 2441, - "bitwise_builtin_applications": 42 + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x4375ecfc66e2bf27dfab4f3f823fcc7aacb076952c06432c2c012580145d418", + "value": "0x26232f0000000000000000000000000066bae3b9" + }, + { + "key": "0x402533d4b23ae34cdbe811d39c25c645dbb513785c261d6b2cbf8fbde29645a", + "value": "0x3df1754700000000000000000000000000066bae3ba" + }, + { + "key": "0x3006bc4c9e35cde6cb6979e3f9b6a7cb6efc3fe31f757055e2e9e340f706c85", + "value": "0x262a050000000000000000000000000066bae3ba" + }, + { + "key": "0x2f4cf03188a8eeef916ecb3d732359bbd865c6be46da0e54a00885bf76350fc", + "value": "0x56debd24480000000000000000000000000066bae3ba" + }, + { + "key": "0x1f77d79bd218039c0aa94eaea6417d9b629b0fd4fd3e2a40828b0c5fd8ff9c4", + "value": "0x26256180000000000000000000d9c90066bae3bb" + }, + { + "key": "0x7f8b72b9ee8253bd67f2a3d4fb7bd8d69b837f4454342356742a97f96ecaf8a", + "value": "0x2665ade000000000000000000000000066bae3ba" + }, + { + "key": "0x561773d3b9960583efa16b00fc0c5fa3bcadba3dd30c95c1479fde03ec02e66", + "value": "0x2616bc8000000000000000000000000066bae3bb" + }, + { + "key": "0x201064f17cc42b7b2161b931995442075e5dec616fb4081a37eeece6759e17e", + "value": "0x3de13ee2ff000000000000000000000000066bae3ba" + }, + { + "key": "0x446cc02cebee1246119624372860eda3b93e9174a78eec0a626671adaf3f715", + "value": "0xf43d0000000000000000000000000066bae3b9" + }, + { + "key": "0x4980bcbf5314101edf5a53eea20451fb3fbbd1ca848fd1ffc2219505c82ab77", + "value": "0x3de7440640000000000000000000000000066bae3ba" + }, + { + "key": "0x18b16c68f1e1b481b881f9dc04c5944809421a59c9afa07af662b163536b561", + "value": "0x2606bdc000000000000000000000000066bae3ba" + }, + { + "key": "0x54a0c1b798651f2fbf043d09c6719198778e3c030b12a28bbc428435f11a81", + "value": "0x55edecc5dc0000000000000000000a88031d66bae3ba" + }, + { + "key": "0x4284ad9838adf91d3e8334b1e4917bf45876b6737d01b704a218b32d217bd1f", + "value": "0x2616bc8000000000000000000000000066bae3bb" + }, + { + "key": "0x41bb8505263aa8810595a282bbfcd5cec380b082c23dca28a243c765a406eaf", + "value": "0x261bdc0000000000000000000000000066bae3ba" + }, + { + "key": "0x1d3031beda8746da5df938eec534834e56deef0938b88f1ca4c2bdefb36668b", + "value": "0xf41dc000000000000000000000000066bae3bb" + }, + { + "key": "0x1017456aa1b15ea00238811c33e7c86e7289e6a7ab7b5b04738916cc2249358", + "value": "0x3de08e208d000000000000000000000000066bae3ba" + }, + { + "key": "0x4991886e34c01023fba073c0456bbc54ae33b85c67f090e1b73f8a9b8330672", + "value": "0x3dcf01b280000000000000000004465e22466bae3ba" + }, + { + "key": "0x24509222463e5d334336e150cc8a2ef5081888b33c5d500d8f91913c81352e3", + "value": "0x3ddf9a0dbc000000000000000000000000066bae3bb" + }, + { + "key": "0x6c1c04d4c8b1c9f29c5c7c3ebda430095a69d76342fbd7ee9b35feab0f30ec1", + "value": "0x2622f0b000000000000000000456ca1e66bae3bc" + }, + { + "key": "0x154db62c88a5b25aab1e64ef455a26194e26d1f8e46207d2d1287b9241ca8bd", + "value": "0x3de02358520000000000000000004b7be9e66bae3bb" + }, + { + "key": "0x75c2cafa0f908db61e577f3a555f5cbcb49adfd61c99be68c88da0722c4aa35", + "value": "0x3df1383e00000000000000000000000000066bae3b9" + }, + { + "key": "0x5fa55109aaac8b6f2a93dc26f90261f62428b2f2f1ce330099d815e5c4c87ed", + "value": "0x3ddcd4b70c00000000000000000002ca27c66bae3bc" } - } - ], - "events": [], - "messages": [], - "execution_resources": { - "steps": 79936, - "memory_holes": 6443, - "pedersen_builtin_applications": 308, - "range_check_builtin_applications": 2570, - "bitwise_builtin_applications": 42 + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x575a2f56525cbaa7aa9aad68edd4a6dc9ff89fa12573c9ff3ae643d195959cd", + "value": "0x8983969bb21b4d7f" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeef6c8e87eac7ed" + } + ] } - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x66f34f78a4c1", - "0x0" - ], - "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x66f34f78a4c1", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1178, - "memory_holes": 23, - "pedersen_builtin_applications": 4, - "range_check_builtin_applications": 37 + ], + "nonces": [ + { + "contract_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "nonce": "0x373df" } - }, - "state_diff": { - "storage_diffs": [ - { - "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "storage_entries": [ - { - "key": "0x8653303a2624a587179380e17d7876d346aea7f02dbd57782950500ea7276e", - "value": "0x5620fad9bae000000000000000000000000066bae3c4" - }, - { - "key": "0x678817f315f1e297a5f652fb09285db75338ef9d9c221bbcc07817f2196b988", - "value": "0x159661c000000000000000000000000066bae3c6" - }, - { - "key": "0xb4ee84f18d73fe6a23ce3be0cc905d5e2d3c0897f1f85cbf0e2a4611f2d310", - "value": "0x3debb0aa61000000000000000000000000066bae3c6" - }, - { - "key": "0x143dae8bc0e9898f65cb1eb84f16bfb9cb09431972541141677721dd541f055", - "value": "0x5f4e43e000000000000000000000000066bae3c5" - }, - { - "key": "0x56041f8991ff7eff841647cfda1f1cfb9e7321c5a96c53d4a5072497de6b50f", - "value": "0x24f15c4e000000000000000000000000066bae3c5" - }, - { - "key": "0x2d04b0419a0e89f6b4dabc3dc19b087e71f0dec9f1785606f00517d3468636b", - "value": "0x5f5ec9d000000000000000000000000066bae3c6" - }, - { - "key": "0x7b4de97b546ed17a0d490dab334867e9383e029411c268a8902768b6da6a2eb", - "value": "0x5f5b6c7000000000000000000000000066bae3c5" - }, - { - "key": "0x5c8f047efa25ed6202a9d6af9b64f2a7fb47111040b16dce8362e0ea20809e0", - "value": "0x262df77000000000000000000000000066bae3c6" - }, - { - "key": "0x6f64efd140d53af83432093bb6c3d5e8db645bd89feead6dda806955f68ef2a", - "value": "0x560aa1fe28c000000000000000000000000066bae3c5" - }, - { - "key": "0x28e86558bd7c5a9c26fceeafb9570eb7b3011db4a9ff813b318f91129935c37", - "value": "0xf4200000000000000000000000000066bae3c5" - }, - { - "key": "0x6a6414ca66551a2324e436ed37d069f1660ef01bc3fe90497fc729ee60781b8", - "value": "0x3dee00d9a3000000000000000000000000066bae3c4" - }, - { - "key": "0x437f038e1991939def57775a3405a3b6f0c0830f09d0e6cfc309393950fa773", - "value": "0x48e58ce025000000000000000000000000066bae3c5" - }, - { - "key": "0x1b3f3d264a9c63c581333d4b97c556b6f20f9a1abf64c7f71e04b35df62cc70", - "value": "0xf4332000000000000000000000000066bae3c6" - }, - { - "key": "0x55c3ad197a2fa1dce3a999ae803099406fab085f187b926e7e1f0e38592043d", - "value": "0x4ec57014baa000000000000000000000000066bae3c5" - } - ] - }, - { - "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "storage_entries": [ - { - "key": "0x7b3303ee433d39925f7c289cd2048052a2d8e2d653bdd7cdfa6a6ab8365445d", - "value": "0x71cd7202520531dd" - }, - { - "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", - "value": "0x1adeefd381d7636cae" - } - ] - } - ], - "nonces": [ - { - "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", - "nonce": "0x2b025" + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 241864, + "memory_holes": 11790, + "pedersen_builtin_applications": 1324, + "range_check_builtin_applications": 7425, + "bitwise_builtin_applications": 66, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 27373, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x54b7768164ecbc22689e2c084201b5dc07a488b3b08c1a692d1d986659e6354" + }, + { + "trace_root": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x63", + "0xe", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5620fad9bae", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3dee00d9a3", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x560aa1fe28c", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec57014baa", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ce025", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4200", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f15c4e", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4332", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262df77", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x159661c", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3debb0aa61", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 5446, + "memory_holes": 62, + "range_check_builtin_applications": 117, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x63", + "0xe", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5620fad9bae", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3dee00d9a3", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x560aa1fe28c", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec57014baa", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ce025", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4200", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f15c4e", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4332", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262df77", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x159661c", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3debb0aa61", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x4c6d6cf894f8bc96bb9c525e6853e5483177841f7388f74a46cfda6f028c755", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "entry_point_selector": "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "calldata": [ + "0xe", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5620fad9bae", + "0x4254432f555344", + "0x0", + "0x0", + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3dee00d9a3", + "0x4554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x560aa1fe28c", + "0x574254432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec57014baa", + "0x4254432f455552", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ce025", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4200", + "0x555344432f555344", + "0x0", + "0x0", + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f15c4e", + "0x554e492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4332", + "0x555344542f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262df77", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x159661c", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3debb0aa61", + "0x53544554482f555344", + "0x0" + ], + "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "class_hash": "0x230f20832d73433a0ef69663545aabb607a3bbc0ff0a5f75e5d9716730e4141", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [ + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x2c12e79f09880c90a918c4e17c9400dc83c88ece7512dd878998ed78ac667f6", + "calldata": [ + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 251, + "memory_holes": 3, + "pedersen_builtin_applications": 1, + "range_check_builtin_applications": 9 + } + }, + { + "contract_address": "0x1b08e27ab436cd491631156da5f3aa7ff04aee1e6ca925eb2ca84397c22b74d", + "entry_point_selector": "0x151c02354656344b5da85e4af521a08212239bc47c20ef04ef4ee22f69b357a", + "calldata": [ + "0x464f55524c454146", + "0x464f55524c454146" + ], + "caller_address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "class_hash": "0x306288971002bd7906e3a607d504dfb28dcbdc7655a115984e567dce3b67e8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 575, + "memory_holes": 9, + "pedersen_builtin_applications": 3, + "range_check_builtin_applications": 17 + } + } + ], + "events": [ + { + "order": 0, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5620fad9bae", + "0x4254432f555344", + "0x0" + ] + }, + { + "order": 1, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c4", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3dee00d9a3", + "0x4554482f555344", + "0x0" + ] + }, + { + "order": 2, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x560aa1fe28c", + "0x574254432f555344", + "0x0" + ] + }, + { + "order": 3, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b6c7", + "0x574254432f425443", + "0x0" + ] + }, + { + "order": 4, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x4ec57014baa", + "0x4254432f455552", + "0x0" + ] + }, + { + "order": 5, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x48e58ce025", + "0x5753544554482f555344", + "0x0" + ] + }, + { + "order": 6, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4e43e", + "0x4c5553442f555344", + "0x0" + ] + }, + { + "order": 7, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4200", + "0x555344432f555344", + "0x0" + ] + }, + { + "order": 8, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c5", + "0x464f55524c454146", + "0x464f55524c454146", + "0x24f15c4e", + "0x554e492f555344", + "0x0" + ] + }, + { + "order": 9, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5ec9d", + "0x4441492f555344", + "0x0" + ] + }, + { + "order": 10, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4332", + "0x555344542f555344", + "0x0" + ] + }, + { + "order": 11, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x262df77", + "0x5354524b2f555344", + "0x0" + ] + }, + { + "order": 12, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x159661c", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "order": 13, + "keys": [ + "0x280bb2099800026f90c334a3a23888ffe718a2920ffbbf4f44c6d3d5efb613c" + ], + "data": [ + "0x66bae3c6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3debb0aa61", + "0x53544554482f555344", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 73681, + "memory_holes": 6440, + "pedersen_builtin_applications": 308, + "range_check_builtin_applications": 2441, + "bitwise_builtin_applications": 42 } - ], - "deployed_contracts": [], - "deprecated_declared_classes": [], - "declared_classes": [], - "replaced_classes": [] - }, + } + ], + "events": [], + "messages": [], "execution_resources": { - "steps": 86560, - "memory_holes": 6528, - "pedersen_builtin_applications": 312, - "range_check_builtin_applications": 2724, - "bitwise_builtin_applications": 42, - "ec_op_builtin_applications": 3, - "data_availability": { - "l1_gas": 18139, - "l1_data_gas": 0 + "steps": 79936, + "memory_holes": 6443, + "pedersen_builtin_applications": 308, + "range_check_builtin_applications": 2570, + "bitwise_builtin_applications": 42 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x66f34f78a4c1", + "0x0" + ], + "caller_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x66f34f78a4c1", + "0x0" + ] } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 } }, - "transaction_hash": "0x1fa7d3f1bc57576d59af7cc5e5e73912015ec2046aad8c866e054905c4e9bf3" - } - ], - "id": 1 -} \ No newline at end of file + "state_diff": { + "storage_diffs": [ + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x7b3303ee433d39925f7c289cd2048052a2d8e2d653bdd7cdfa6a6ab8365445d", + "value": "0x71cd7202520531dd" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1adeefd381d7636cae" + } + ] + }, + { + "address": "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "storage_entries": [ + { + "key": "0x143dae8bc0e9898f65cb1eb84f16bfb9cb09431972541141677721dd541f055", + "value": "0x5f4e43e000000000000000000000000066bae3c5" + }, + { + "key": "0x55c3ad197a2fa1dce3a999ae803099406fab085f187b926e7e1f0e38592043d", + "value": "0x4ec57014baa000000000000000000000000066bae3c5" + }, + { + "key": "0x8653303a2624a587179380e17d7876d346aea7f02dbd57782950500ea7276e", + "value": "0x5620fad9bae000000000000000000000000066bae3c4" + }, + { + "key": "0x6f64efd140d53af83432093bb6c3d5e8db645bd89feead6dda806955f68ef2a", + "value": "0x560aa1fe28c000000000000000000000000066bae3c5" + }, + { + "key": "0x437f038e1991939def57775a3405a3b6f0c0830f09d0e6cfc309393950fa773", + "value": "0x48e58ce025000000000000000000000000066bae3c5" + }, + { + "key": "0x5c8f047efa25ed6202a9d6af9b64f2a7fb47111040b16dce8362e0ea20809e0", + "value": "0x262df77000000000000000000000000066bae3c6" + }, + { + "key": "0xb4ee84f18d73fe6a23ce3be0cc905d5e2d3c0897f1f85cbf0e2a4611f2d310", + "value": "0x3debb0aa61000000000000000000000000066bae3c6" + }, + { + "key": "0x7b4de97b546ed17a0d490dab334867e9383e029411c268a8902768b6da6a2eb", + "value": "0x5f5b6c7000000000000000000000000066bae3c5" + }, + { + "key": "0x1b3f3d264a9c63c581333d4b97c556b6f20f9a1abf64c7f71e04b35df62cc70", + "value": "0xf4332000000000000000000000000066bae3c6" + }, + { + "key": "0x678817f315f1e297a5f652fb09285db75338ef9d9c221bbcc07817f2196b988", + "value": "0x159661c000000000000000000000000066bae3c6" + }, + { + "key": "0x2d04b0419a0e89f6b4dabc3dc19b087e71f0dec9f1785606f00517d3468636b", + "value": "0x5f5ec9d000000000000000000000000066bae3c6" + }, + { + "key": "0x28e86558bd7c5a9c26fceeafb9570eb7b3011db4a9ff813b318f91129935c37", + "value": "0xf4200000000000000000000000000066bae3c5" + }, + { + "key": "0x6a6414ca66551a2324e436ed37d069f1660ef01bc3fe90497fc729ee60781b8", + "value": "0x3dee00d9a3000000000000000000000000066bae3c4" + }, + { + "key": "0x56041f8991ff7eff841647cfda1f1cfb9e7321c5a96c53d4a5072497de6b50f", + "value": "0x24f15c4e000000000000000000000000066bae3c5" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "nonce": "0x2b025" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 86560, + "memory_holes": 6528, + "pedersen_builtin_applications": 312, + "range_check_builtin_applications": 2724, + "bitwise_builtin_applications": 42, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 18139, + "l1_data_gas": 0 + } + } + }, + "transaction_hash": "0x1fa7d3f1bc57576d59af7cc5e5e73912015ec2046aad8c866e054905c4e9bf3" + } +] \ No newline at end of file diff --git a/rpc/tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json b/rpc/tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json index c175316b..937354a8 100644 --- a/rpc/tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json +++ b/rpc/tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json @@ -1,204 +1,200 @@ { - "jsonrpc": "2.0", - "result": { - "type": "INVOKE", - "validate_invocation": { - "contract_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", - "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", - "0x13", - "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", - "0x54103", - "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", - "0x6600d829", - "0x103020400000000000000000000000000000000000000000000000000000000", - "0x4", - "0x5f5e100", - "0x5f60fc2", - "0x5f60fc2", - "0x5f6570d", - "0xa07695b6574c60c37", - "0x1", - "0x2", - "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", - "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", - "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", - "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", - "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", - "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" - ], - "caller_address": "0x0", - "class_hash": "0x66559c86e66214ba1bc5d6512f6411aa066493e6086ff5d54f41a970d47fc5a", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x56414c4944" - ], - "calls": [], - "events": [], - "messages": [], - "execution_resources": { - "steps": 862, - "memory_holes": 15, - "range_check_builtin_applications": 22, - "ec_op_builtin_applications": 3 - } - }, - "execute_invocation": { - "contract_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", - "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", - "0x13", - "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", - "0x54103", - "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", - "0x6600d829", - "0x103020400000000000000000000000000000000000000000000000000000000", - "0x4", - "0x5f5e100", - "0x5f60fc2", - "0x5f60fc2", - "0x5f6570d", - "0xa07695b6574c60c37", - "0x1", - "0x2", - "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", - "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", - "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", - "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", - "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", - "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" - ], - "caller_address": "0x0", - "class_hash": "0x66559c86e66214ba1bc5d6512f6411aa066493e6086ff5d54f41a970d47fc5a", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1", - "0x0" - ], - "calls": [ - { - "contract_address": "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", - "entry_point_selector": "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", - "calldata": [ - "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", - "0x54103", - "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", - "0x6600d829", - "0x103020400000000000000000000000000000000000000000000000000000000", - "0x4", - "0x5f5e100", - "0x5f60fc2", - "0x5f60fc2", - "0x5f6570d", - "0xa07695b6574c60c37", - "0x1", - "0x2", - "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", - "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", - "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", - "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", - "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", - "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" - ], - "caller_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", - "class_hash": "0x18734719577f055f2a4f405bd8f0030b9e4588379ec2d5f85c084ad5e06eab8", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x19e22f866f4c5aead2809bf160d2b29e921e335d899979732101c6f3c38ff81" - ], - "data": [ - "0x20ed", - "0x5f60fc2", - "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", - "0x6600d829", - "0x103020400000000000000000000000000000000000000000000000000000000", - "0x4", - "0x5f5e100", - "0x5f60fc2", - "0x5f60fc2", - "0x5f6570d", - "0xa07695b6574c60c37", - "0x1", - "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", - "0x54103", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 6318, - "memory_holes": 214, - "pedersen_builtin_applications": 18, - "range_check_builtin_applications": 253, - "bitwise_builtin_applications": 2, - "ec_op_builtin_applications": 6 + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x2", + "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", + "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", + "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" + ], + "caller_address": "0x0", + "class_hash": "0x66559c86e66214ba1bc5d6512f6411aa066493e6086ff5d54f41a970d47fc5a", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 862, + "memory_holes": 15, + "range_check_builtin_applications": 22, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x2", + "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", + "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", + "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" + ], + "caller_address": "0x0", + "class_hash": "0x66559c86e66214ba1bc5d6512f6411aa066493e6086ff5d54f41a970d47fc5a", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x6b74c515944ef1ef630ee1cf08a22e110c39e217fa15554a089182a11f78ed", + "entry_point_selector": "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "calldata": [ + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x7e430a7a59836b5969859b25379c640a8ccb66fb142606d7acb1a5563c2ad9", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x2", + "0x7afe11c6cdf846e8e33ff55c6e8310293b81aa58da4618af0c2fb29db2515c7", + "0x1200966b0f9a5cd1bf7217b202c3a4073a1ff583e4779a3a3ffb97a532fe0c", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x460769330eab4b3269a5c07369382fcc09fbfc92458c63f77292425c72272f9", + "0x10ebdb197fd1017254b927b01073c64a368db45534413b539895768e57b72ba", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962" + ], + "caller_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "class_hash": "0x18734719577f055f2a4f405bd8f0030b9e4588379ec2d5f85c084ad5e06eab8", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x19e22f866f4c5aead2809bf160d2b29e921e335d899979732101c6f3c38ff81" + ], + "data": [ + "0x20ed", + "0x5f60fc2", + "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "0x6600d829", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5e100", + "0x5f60fc2", + "0x5f60fc2", + "0x5f6570d", + "0xa07695b6574c60c37", + "0x1", + "0x41bbf1eff2ac123d9e01004a385329369cbc1c309838562f030b3faa2caa4", + "0x54103", + "0x0" + ] } + ], + "messages": [], + "execution_resources": { + "steps": 6318, + "memory_holes": 214, + "pedersen_builtin_applications": 18, + "range_check_builtin_applications": 253, + "bitwise_builtin_applications": 2, + "ec_op_builtin_applications": 6 } - ], - "events": [], - "messages": [], - "execution_resources": { - "steps": 7812, - "memory_holes": 283, - "pedersen_builtin_applications": 18, - "range_check_builtin_applications": 296, - "bitwise_builtin_applications": 2, - "ec_op_builtin_applications": 6 - } - }, - "fee_transfer_invocation": { - "contract_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x6a25583aab3700", - "0x0" - ], - "caller_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", - "class_hash": "0x5327164fa21dca89a92e8eae8a5b7ab90f58373e71f0a16d285e5a4abe5a3cf", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "order": 0, - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x6a25583aab3700", - "0x0" - ] - } - ], - "messages": [], - "execution_resources": { - "steps": 1705, - "memory_holes": 56, - "pedersen_builtin_applications": 4, - "range_check_builtin_applications": 37 } + ], + "events": [], + "messages": [], + "execution_resources": { + "steps": 7812, + "memory_holes": 283, + "pedersen_builtin_applications": 18, + "range_check_builtin_applications": 296, + "bitwise_builtin_applications": 2, + "ec_op_builtin_applications": 6 } }, - "id": 1 + "fee_transfer_invocation": { + "contract_address": "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x6a25583aab3700", + "0x0" + ], + "caller_address": "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "class_hash": "0x5327164fa21dca89a92e8eae8a5b7ab90f58373e71f0a16d285e5a4abe5a3cf", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x143fe26927dd6a302522ea1cd6a821ab06b3753194acee38d88a85c93b3cbc6", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x6a25583aab3700", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1705, + "memory_holes": 56, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + } } \ No newline at end of file diff --git a/rpc/tests/trace/sepoliaSimulateInvokeTx.json b/rpc/tests/trace/sepoliaSimulateInvokeTx.json new file mode 100644 index 00000000..3fe36314 --- /dev/null +++ b/rpc/tests/trace/sepoliaSimulateInvokeTx.json @@ -0,0 +1,27 @@ +{ + "transactions": [ + { + "max_fee": "0x124aee42955e9", + "version": "0x1", + "signature": [ + "0x73bd9f2a6287735b770644095c1b72b41583e5f84b88de5d72c36c3e2ab1ef6", + "0x30587f8923f0d66b6b1d19176624846edf55bc0321e421aac52d2c83c10f6a5" + ], + "nonce": "0x1a", + "type": "INVOKE", + "sender_address": "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06", + "calldata": [ + "0x1", + "0x669e24364ce0ae7ec2864fb03eedbe60cfbc9d1c74438d10fa4b86552907d54", + "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", + "0x2", + "0xffffffff", + "0x0" + ] + } + ], + "simulation_flags": [], + "block_id": { + "block_number": 100000 + } +} \ No newline at end of file diff --git a/rpc/tests/trace/sepoliaSimulateInvokeTxResp.json b/rpc/tests/trace/sepoliaSimulateInvokeTxResp.json new file mode 100644 index 00000000..12c52b0d --- /dev/null +++ b/rpc/tests/trace/sepoliaSimulateInvokeTxResp.json @@ -0,0 +1,201 @@ +{ + "jsonrpc": "2.0", + "result": [ + { + "transaction_trace": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x669e24364ce0ae7ec2864fb03eedbe60cfbc9d1c74438d10fa4b86552907d54", + "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", + "0x2", + "0xffffffff", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x61dac032f228abef9c6626f995015233097ae253a7f72d68552db02f2971b8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x56414c4944" + ], + "calls": [], + "events": [], + "messages": [], + "execution_resources": { + "steps": 970, + "memory_holes": 5, + "range_check_builtin_applications": 20, + "ec_op_builtin_applications": 3 + } + }, + "execute_invocation": { + "contract_address": "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x669e24364ce0ae7ec2864fb03eedbe60cfbc9d1c74438d10fa4b86552907d54", + "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", + "0x2", + "0xffffffff", + "0x0" + ], + "caller_address": "0x0", + "class_hash": "0x61dac032f228abef9c6626f995015233097ae253a7f72d68552db02f2971b8f", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1", + "0x0" + ], + "calls": [ + { + "contract_address": "0x669e24364ce0ae7ec2864fb03eedbe60cfbc9d1c74438d10fa4b86552907d54", + "entry_point_selector": "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", + "calldata": [ + "0xffffffff", + "0x0" + ], + "caller_address": "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06", + "class_hash": "0x245e2d200513255c7b2170ddbca52c3f0e319624143b6c79696bf991d10cef7", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x0", + "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06" + ], + "data": [ + "0xffffffff", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1137, + "memory_holes": 42, + "pedersen_builtin_applications": 2, + "range_check_builtin_applications": 28 + } + } + ], + "events": [], + "messages": [], + "execution_resources": { + "steps": 2867, + "memory_holes": 105, + "pedersen_builtin_applications": 2, + "range_check_builtin_applications": 64 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x955fd7d0ffd4", + "0x0" + ], + "caller_address": "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06", + "class_hash": "0x7f3777c99f3700505ea966676aac4a0d692c2a9f5e667f4c606b51ca1dd3420", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" + ], + "data": [ + "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x955fd7d0ffd4", + "0x0" + ] + } + ], + "messages": [], + "execution_resources": { + "steps": 1178, + "memory_holes": 23, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 37 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x669e24364ce0ae7ec2864fb03eedbe60cfbc9d1c74438d10fa4b86552907d54", + "storage_entries": [ + { + "key": "0x110e2f729c9c2b988559994a3daccd838cf52faf88e18101373e67dd061455a", + "value": "0x5b09cdee5e8fff5" + }, + { + "key": "0x1d0f2383a44f5fbfa2bce9f73ac70f52a9a5190555037d4f1b2dae8b8f4d952", + "value": "0x58d15ea7627fff7" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x1d5213163f322a7b90" + }, + { + "key": "0x1d0f2383a44f5fbfa2bce9f73ac70f52a9a5190555037d4f1b2dae8b8f4d952", + "value": "0xa0341baf49c2" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06", + "nonce": "0x1b" + } + ], + "deployed_contracts": [], + "deprecated_declared_classes": [], + "declared_classes": [], + "replaced_classes": [] + }, + "execution_resources": { + "steps": 5015, + "memory_holes": 133, + "pedersen_builtin_applications": 6, + "range_check_builtin_applications": 121, + "ec_op_builtin_applications": 3, + "data_availability": { + "l1_gas": 4668, + "l1_data_gas": 0 + } + } + }, + "fee_estimation": { + "gas_consumed": "0x123c", + "gas_price": "0x831211d3b", + "data_gas_consumed": "0x0", + "data_gas_price": "0x1b10c", + "overall_fee": "0x955fd7d0ffd4", + "unit": "WEI" + } + } + ], + "id": 0 +} \ No newline at end of file diff --git a/rpc/tests/trace/simulateInvokeTx.json b/rpc/tests/trace/simulateInvokeTx.json deleted file mode 100644 index 42af6ddb..00000000 --- a/rpc/tests/trace/simulateInvokeTx.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - - "transactions": [ - { - "transaction_hash": "0x735b67a69014a5f143a9db9d8c82a2dbb1114fa5705d2f03adf4523067d36d6", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x31", - "max_fee": "0xa553f246f50e", - "sender_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "signature": [ - "0x10387fce102c143b84a28aef8ff25d0eac5e24eecc558acf4a3c4eeb8791927", - "0xb42cf72c367bd8dc4b5f661397f222505af9d7a75c65183d975e2db643de70" - ], - "calldata": [ - "0x1", - "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", - "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", - "0x0", - "0x2", - "0x2", - "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", - "0x1" - ] - }, - { - "transaction_hash": "0x3aee55269cce34b8a66d0eb6ece69d81ef0ce70e5aedf069e7ccb6f60da906e", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x23", - "max_fee": "0x3df224416f3d2", - "sender_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", - "signature": [ - "0x14507fcaaa9b84cee0828d919b648619ff3970b20f2ebaacb5e95bcd3f52783", - "0x5584dbdb2a663e5aa18e2d64fc555fb7e184fae334a150647dc45d2b148aa3f" - ], - "calldata": [ - "0x2", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", - "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", - "0x3", - "0x12", - "0x15", - "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", - "0x2dc6c00", - "0x0", - "0x2", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0xf4240", - "0x4", - "0x30615bec9c1506bfac97d9dbd3c546307987d467a7f95d5533c2e861eb81f3f", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", - "0xf4240", - "0x4", - "0x691fa7f66d63dc8c89ff4e77732fff5133f282e7dbd41813273692cc595516", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", - "0x2dc6c00", - "0x0", - "0x2dff8d6", - "0x0", - "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891" - ] - } - ], - "simulation_flags": [], - "block_id": { - "block_number": 200566 - } - -} \ No newline at end of file diff --git a/rpc/tests/transactions/estimateFeeSepoliaInvokeV1.json b/rpc/tests/transactions/estimateFeeSepoliaInvokeV1.json new file mode 100644 index 00000000..2c0313b9 --- /dev/null +++ b/rpc/tests/transactions/estimateFeeSepoliaInvokeV1.json @@ -0,0 +1,19 @@ +{ + "max_fee": "0x124aee42955e9", + "version": "0x1", + "signature": [ + "0x73bd9f2a6287735b770644095c1b72b41583e5f84b88de5d72c36c3e2ab1ef6", + "0x30587f8923f0d66b6b1d19176624846edf55bc0321e421aac52d2c83c10f6a5" + ], + "nonce": "0x1a", + "type": "INVOKE", + "sender_address": "0x36d67ab362562a97f9fba8a1051cf8e37ff1a1449530fb9f1f0e32ac2da7d06", + "calldata": [ + "0x1", + "0x669e24364ce0ae7ec2864fb03eedbe60cfbc9d1c74438d10fa4b86552907d54", + "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", + "0x2", + "0xffffffff", + "0x0" + ] +} \ No newline at end of file diff --git a/rpc/trace.go b/rpc/trace.go index 24c4622c..0868af0b 100644 --- a/rpc/trace.go +++ b/rpc/trace.go @@ -82,7 +82,7 @@ func (provider *Provider) TraceBlockTransactions(ctx context.Context, blockID Bl // Simulate a given sequence of transactions on the requested state, and generate the execution traces. // Note that some of the transactions may revert, in which case no error is thrown, but revert details can be seen on the returned trace object. // Note that some of the transactions may revert, this will be reflected by the revert_error property in the trace. Other types of failures (e.g. unexpected error or failure in the validation phase) will result in TRANSACTION_EXECUTION_ERROR. -func (provider *Provider) SimulateTransactions(ctx context.Context, blockID BlockID, txns []Transaction, simulationFlags []SimulationFlag) ([]SimulatedTransaction, error) { +func (provider *Provider) SimulateTransactions(ctx context.Context, blockID BlockID, txns []BroadcastTxn, simulationFlags []SimulationFlag) ([]SimulatedTransaction, error) { var output []SimulatedTransaction if err := do(ctx, provider.c, "starknet_simulateTransactions", &output, blockID, txns, simulationFlags); err != nil { diff --git a/rpc/trace_test.go b/rpc/trace_test.go index 2260a34b..9b6f2a69 100644 --- a/rpc/trace_test.go +++ b/rpc/trace_test.go @@ -26,31 +26,20 @@ func TestTransactionTrace(t *testing.T) { testConfig := beforeEach(t) var expectedResp InvokeTxnTrace - if testEnv == "mock" { - var rawjson struct { - Result InvokeTxnTrace `json:"result"` - } - expectedrespRaw, err := os.ReadFile("./tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") - require.NoError(t, err, "Error ReadFile for TestTraceTransaction") - - err = json.Unmarshal(expectedrespRaw, &rawjson) - require.NoError(t, err, "Error unmarshalling testdata TestTraceTransaction") - - txnTrace, err := json.Marshal(rawjson.Result) - require.NoError(t, err, "Error unmarshalling testdata TestTraceTransaction") - require.NoError(t, json.Unmarshal(txnTrace, &expectedResp)) - } + expectedrespRaw, err := os.ReadFile("./tests/trace/sepoliaInvokeTrace_0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282.json") + require.NoError(t, err, "Error ReadFile for TestTraceTransaction") + require.NoError(t, json.Unmarshal(expectedrespRaw, &expectedResp), "Error unmarshalling testdata TestTraceTransaction") type testSetType struct { TransactionHash *felt.Felt - ExpectedResp *InvokeTxnTrace - ExpectedError *RPCError + ExpectedResp TxnTrace + ExpectedError error } testSet := map[string][]testSetType{ "mock": { testSetType{ TransactionHash: utils.TestHexToFelt(t, "0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282"), - ExpectedResp: &expectedResp, + ExpectedResp: expectedResp, ExpectedError: nil, }, testSetType{ @@ -68,18 +57,21 @@ func TestTransactionTrace(t *testing.T) { }, }, }, - "devnet": {}, + "devnet": {}, + "testnet": { + testSetType{ + TransactionHash: utils.TestHexToFelt(t, "0x6a4a9c4f1a530f7d6dd7bba9b71f090a70d1e3bbde80998fde11a08aab8b282"), + ExpectedResp: expectedResp, + ExpectedError: nil, + }, + }, "mainnet": {}, }[testEnv] for _, test := range testSet { resp, err := testConfig.provider.TraceTransaction(context.Background(), test.TransactionHash) - if err != nil { - require.Equal(t, test.ExpectedError, err) - } else { - invokeTrace := resp.(InvokeTxnTrace) - require.Equal(t, invokeTrace, *test.ExpectedResp) - } + require.Equal(t, test.ExpectedError, err) + compareTraceTxs(t, test.ExpectedResp, resp) } } @@ -101,17 +93,23 @@ func TestSimulateTransaction(t *testing.T) { var simulateTxIn SimulateTransactionInput var expectedResp SimulateTransactionOutput if testEnv == "mainnet" { - simulateTxnRaw, err := os.ReadFile("./tests/trace/simulateInvokeTx.json") + simulateTxnRaw, err := os.ReadFile("./tests/trace/mainnetSimulateInvokeTx.json.json") require.NoError(t, err, "Error ReadFile simulateInvokeTx") + require.NoError(t, json.Unmarshal(simulateTxnRaw, &simulateTxIn), "Error unmarshalling simulateInvokeTx") - err = json.Unmarshal(simulateTxnRaw, &simulateTxIn) - require.NoError(t, err, "Error unmarshalling simulateInvokeTx") - - expectedrespRaw, err := os.ReadFile("./tests/trace/simulateInvokeTxResp.json") + expectedrespRaw, err := os.ReadFile("./tests/trace/mainnetSimulateInvokeTxResp.json") require.NoError(t, err, "Error ReadFile simulateInvokeTxResp") + require.NoError(t, json.Unmarshal(expectedrespRaw, &expectedResp), "Error unmarshalling simulateInvokeTxResp") + } + + if testEnv == "testnet" || testEnv == "mock" { + simulateTxnRaw, err := os.ReadFile("./tests/trace/sepoliaSimulateInvokeTx.json") + require.NoError(t, err, "Error ReadFile simulateInvokeTx") + require.NoError(t, json.Unmarshal(simulateTxnRaw, &simulateTxIn), "Error unmarshalling simulateInvokeTx") - err = json.Unmarshal(expectedrespRaw, &expectedResp) - require.NoError(t, err, "Error unmarshalling simulateInvokeTxResp") + expectedrespRaw, err := os.ReadFile("./tests/trace/sepoliaSimulateInvokeTxResp.json") + require.NoError(t, err, "Error ReadFile simulateInvokeTxResp") + require.NoError(t, json.Unmarshal(expectedrespRaw, &expectedResp), "Error unmarshalling simulateInvokeTxResp") } type testSetType struct { @@ -119,9 +117,15 @@ func TestSimulateTransaction(t *testing.T) { ExpectedResp SimulateTransactionOutput } testSet := map[string][]testSetType{ - "devnet": {}, - "mock": {}, - "testnet": {}, + "devnet": {}, + "mock": {testSetType{ + SimulateTxnInput: simulateTxIn, + ExpectedResp: expectedResp, + }}, + "testnet": {testSetType{ + SimulateTxnInput: simulateTxIn, + ExpectedResp: expectedResp, + }}, "mainnet": {testSetType{ SimulateTxnInput: simulateTxIn, ExpectedResp: expectedResp, @@ -136,7 +140,11 @@ func TestSimulateTransaction(t *testing.T) { test.SimulateTxnInput.Txns, test.SimulateTxnInput.SimulationFlags) require.NoError(t, err) - require.Equal(t, test.ExpectedResp.Txns, resp) + + for i, trace := range resp { + require.Equal(t, test.ExpectedResp.Txns[i].FeeEstimation, trace.FeeEstimation) + compareTraceTxs(t, test.ExpectedResp.Txns[i].TxnTrace, trace.TxnTrace) + } } } @@ -154,19 +162,13 @@ func TestSimulateTransaction(t *testing.T) { // none func TestTraceBlockTransactions(t *testing.T) { testConfig := beforeEach(t) + require := require.New(t) - var expectedResp []Trace - if testEnv == "mock" { - var rawjson struct { - Result []Trace `json:"result"` - } - expectedrespRaw, err := os.ReadFile("./tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json") - require.NoError(t, err, "Error ReadFile for TestTraceBlockTransactions") + var blockTraceSepolia []Trace - err = json.Unmarshal(expectedrespRaw, &rawjson) - require.NoError(t, err, "Error unmarshalling testdata TestTraceBlockTransactions") - expectedResp = rawjson.Result - } + expectedrespRaw, err := os.ReadFile("./tests/trace/sepoliaBlockTrace_0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2.json") + require.NoError(err, "Error ReadFile for TestTraceBlockTransactions") + require.NoError(json.Unmarshal(expectedrespRaw, &blockTraceSepolia), "Error unmarshalling testdata TestTraceBlockTransactions") type testSetType struct { BlockID BlockID @@ -176,14 +178,21 @@ func TestTraceBlockTransactions(t *testing.T) { testSet := map[string][]testSetType{ "devnet": {}, // devenet doesn't support TraceBlockTransactions https://0xspaceshard.github.io/starknet-devnet/docs/guide/json-rpc-api#trace-api "mainnet": {}, + "testnet": { + testSetType{ + BlockID: WithBlockNumber(99433), + ExpectedResp: blockTraceSepolia, + ExpectedErr: nil, + }, + }, "mock": { testSetType{ - BlockID: BlockID{Hash: utils.TestHexToFelt(t, "0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2")}, - ExpectedResp: expectedResp, + BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x42a4c6a4c3dffee2cce78f04259b499437049b0084c3296da9fbbec7eda79b2")), + ExpectedResp: blockTraceSepolia, ExpectedErr: nil, }, testSetType{ - BlockID: BlockID{Hash: utils.TestHexToFelt(t, "0x0")}, + BlockID: WithBlockNumber(0), ExpectedResp: nil, ExpectedErr: ErrBlockNotFound, }}, @@ -193,10 +202,79 @@ func TestTraceBlockTransactions(t *testing.T) { resp, err := testConfig.provider.TraceBlockTransactions(context.Background(), test.BlockID) if err != nil { - require.Equal(t, test.ExpectedErr, err) + require.Equal(test.ExpectedErr, err) } else { - require.Equal(t, test.ExpectedResp, resp) + for i, trace := range resp { + require.Equal(test.ExpectedResp[i].TxnHash, trace.TxnHash) + compareTraceTxs(t, test.ExpectedResp[i].TraceRoot, trace.TraceRoot) + } + } + + } +} + +func compareTraceTxs(t *testing.T, traceTx1, traceTx2 TxnTrace) { + require := require.New(t) + + switch traceTx := traceTx1.(type) { + case DeclareTxnTrace: + require.Equal(traceTx.ValidateInvocation, traceTx2.(DeclareTxnTrace).ValidateInvocation) + require.Equal(traceTx.FeeTransferInvocation, traceTx2.(DeclareTxnTrace).FeeTransferInvocation) + compareStateDiffs(t, traceTx.StateDiff, traceTx2.(DeclareTxnTrace).StateDiff) + require.Equal(traceTx.Type, traceTx2.(DeclareTxnTrace).Type) + require.Equal(traceTx.ExecutionResources, traceTx2.(DeclareTxnTrace).ExecutionResources) + case DeployAccountTxnTrace: + require.Equal(traceTx.ValidateInvocation, traceTx2.(DeployAccountTxnTrace).ValidateInvocation) + require.Equal(traceTx.ConstructorInvocation, traceTx2.(DeployAccountTxnTrace).ConstructorInvocation) + require.Equal(traceTx.FeeTransferInvocation, traceTx2.(DeployAccountTxnTrace).FeeTransferInvocation) + compareStateDiffs(t, traceTx.StateDiff, traceTx2.(DeployAccountTxnTrace).StateDiff) + require.Equal(traceTx.Type, traceTx2.(DeployAccountTxnTrace).Type) + require.Equal(traceTx.ExecutionResources, traceTx2.(DeployAccountTxnTrace).ExecutionResources) + case InvokeTxnTrace: + require.Equal(traceTx.ValidateInvocation, traceTx2.(InvokeTxnTrace).ValidateInvocation) + require.Equal(traceTx.ExecuteInvocation, traceTx2.(InvokeTxnTrace).ExecuteInvocation) + require.Equal(traceTx.FeeTransferInvocation, traceTx2.(InvokeTxnTrace).FeeTransferInvocation) + compareStateDiffs(t, traceTx.StateDiff, traceTx2.(InvokeTxnTrace).StateDiff) + require.Equal(traceTx.Type, traceTx2.(InvokeTxnTrace).Type) + require.Equal(traceTx.ExecutionResources, traceTx2.(InvokeTxnTrace).ExecutionResources) + case L1HandlerTxnTrace: + require.Equal(traceTx.FunctionInvocation, traceTx2.(L1HandlerTxnTrace).FunctionInvocation) + compareStateDiffs(t, traceTx.StateDiff, traceTx2.(L1HandlerTxnTrace).StateDiff) + require.Equal(traceTx.Type, traceTx2.(L1HandlerTxnTrace).Type) + } +} + +func compareStateDiffs(t *testing.T, stateDiff1, stateDiff2 StateDiff) { + require.ElementsMatch(t, stateDiff1.DeprecatedDeclaredClasses, stateDiff2.DeprecatedDeclaredClasses) + require.ElementsMatch(t, stateDiff1.DeclaredClasses, stateDiff2.DeclaredClasses) + require.ElementsMatch(t, stateDiff1.DeployedContracts, stateDiff2.DeployedContracts) + require.ElementsMatch(t, stateDiff1.ReplacedClasses, stateDiff2.ReplacedClasses) + require.ElementsMatch(t, stateDiff1.Nonces, stateDiff2.Nonces) + + // compares storage diffs (they come in a random order) + rawStorageDiff, err := json.Marshal(stateDiff2.StorageDiffs) + require.NoError(t, err) + var mapDiff []map[string]interface{} + require.NoError(t, json.Unmarshal(rawStorageDiff, &mapDiff)) + + for _, diff1 := range stateDiff1.StorageDiffs { + var diff2 ContractStorageDiffItem + + for _, diffElem := range mapDiff { + address, ok := diffElem["address"] + require.True(t, ok) + addressFelt := utils.TestHexToFelt(t, address.(string)) + + if *addressFelt != *diff1.Address { + continue + } + + err = remarshal(diffElem, &diff2) + require.NoError(t, err) } + require.NotEmpty(t, diff2) + require.Equal(t, diff1.Address, diff2.Address) + require.ElementsMatch(t, diff1.StorageEntries, diff2.StorageEntries) } } diff --git a/rpc/types.go b/rpc/types.go index 64751844..9634ea66 100644 --- a/rpc/types.go +++ b/rpc/types.go @@ -99,7 +99,7 @@ type PendingStateUpdate struct { // SyncStatus is An object describing the node synchronization status type SyncStatus struct { - SyncStatus bool // todo(remove? not in spec) + SyncStatus *bool StartingBlockHash *felt.Felt `json:"starting_block_hash,omitempty"` StartingBlockNum NumAsHex `json:"starting_block_num,omitempty"` CurrentBlockHash *felt.Felt `json:"current_block_hash,omitempty"` @@ -122,7 +122,7 @@ type SyncStatus struct { // - []byte: the JSON encoding of the SyncStatus struct // - error: any error that occurred during the marshaling process func (s SyncStatus) MarshalJSON() ([]byte, error) { - if !s.SyncStatus { + if !*s.SyncStatus { return []byte("false"), nil } output := map[string]interface{}{} @@ -187,7 +187,7 @@ type TxDetails struct { Version TransactionVersion } -type FeeEstimate struct { +type FeeEstimation struct { // The Ethereum gas consumption of the transaction GasConsumed *felt.Felt `json:"gas_consumed"` diff --git a/rpc/types_trace.go b/rpc/types_trace.go index 95b172fd..bc44af08 100644 --- a/rpc/types_trace.go +++ b/rpc/types_trace.go @@ -1,10 +1,16 @@ package rpc -import "github.com/NethermindEth/juno/core/felt" +import ( + "encoding/json" + "fmt" + + "github.com/NethermindEth/juno/core/felt" + "github.com/NethermindEth/starknet.go/utils" +) type SimulateTransactionInput struct { //a sequence of transactions to simulate, running each transaction on the state resulting from applying all the previous ones - Txns []Transaction `json:"transactions"` + Txns []BroadcastTxn `json:"transactions"` BlockID BlockID `json:"block_id"` SimulationFlags []SimulationFlag `json:"simulation_flags"` } @@ -24,8 +30,8 @@ type SimulateTransactionOutput struct { } type SimulatedTransaction struct { - TxnTrace `json:"transaction_trace"` - FeeEstimate + TxnTrace `json:"transaction_trace"` + FeeEstimation `json:"fee_estimation"` } type TxnTrace interface{} @@ -130,3 +136,127 @@ type ExecInvocation struct { FunctionInvocation FnInvocation `json:"function_invocation,omitempty"` RevertReason string `json:"revert_reason,omitempty"` } + +// UnmarshalJSON unmarshals the data into a SimulatedTransaction object. +// +// It takes a byte slice as the parameter, representing the JSON data to be unmarshalled. +// The function returns an error if the unmarshalling process fails. +// +// Parameters: +// - data: The JSON data to be unmarshalled +// Returns: +// - error: An error if the unmarshalling process fails +func (txn *SimulatedTransaction) UnmarshalJSON(data []byte) error { + var dec map[string]interface{} + if err := json.Unmarshal(data, &dec); err != nil { + return err + } + + // SimulatedTransaction wraps transactions in the TxnTrace field. + rawTxnTrace, err := utils.UnwrapJSON(dec, "transaction_trace") + if err != nil { + return err + } + + trace, err := unmarshalTraceTxn(rawTxnTrace) + if err != nil { + return err + } + + var feeEstimation FeeEstimation + + if feeEstimationData, ok := dec["fee_estimation"]; ok { + err = remarshal(feeEstimationData, &feeEstimation) + if err != nil { + return err + } + } else { + return fmt.Errorf("fee estimate not found") + } + + *txn = SimulatedTransaction{ + TxnTrace: trace, + FeeEstimation: feeEstimation, + } + return nil +} + +// UnmarshalJSON unmarshals the data into a Trace object. +// +// It takes a byte slice as the parameter, representing the JSON data to be unmarshalled. +// The function returns an error if the unmarshalling process fails. +// +// Parameters: +// - data: The JSON data to be unmarshalled +// Returns: +// - error: An error if the unmarshalling process fails +func (txn *Trace) UnmarshalJSON(data []byte) error { + var dec map[string]interface{} + if err := json.Unmarshal(data, &dec); err != nil { + return err + } + + // Trace wrap trace transactions in the TraceRoot field. + rawTraceTx, err := utils.UnwrapJSON(dec, "trace_root") + if err != nil { + return err + } + + t, err := unmarshalTraceTxn(rawTraceTx) + if err != nil { + return err + } + + var txHash *felt.Felt + if txHashData, ok := dec["transaction_hash"]; ok { + txHashString, ok := txHashData.(string) + if !ok { + return fmt.Errorf("failed to unmarshal transaction hash, transaction_hash is not a string") + } + txHash, err = utils.HexToFelt(txHashString) + if err != nil { + return err + } + } else { + return fmt.Errorf("failed to unmarshal transaction hash, transaction_hash not found") + } + + *txn = Trace{ + TraceRoot: t, + TxnHash: txHash, + } + return nil +} + +// unmarshalTraceTxn unmarshals a given interface and returns a TxnTrace. +// +// Parameter: +// - t: The interface{} to be unmarshalled +// Returns: +// - TxnTrace: a TxnTrace +// - error: an error if the unmarshaling process fails +func unmarshalTraceTxn(t interface{}) (TxnTrace, error) { + switch casted := t.(type) { + case map[string]interface{}: + switch TransactionType(casted["type"].(string)) { + case TransactionType_Declare: + var txn DeclareTxnTrace + err := remarshal(casted, &txn) + return txn, err + case TransactionType_DeployAccount: + var txn DeployAccountTxnTrace + err := remarshal(casted, &txn) + return txn, err + case TransactionType_Invoke: + var txn InvokeTxnTrace + err := remarshal(casted, &txn) + return txn, err + case TransactionType_L1Handler: + var txn L1HandlerTxnTrace + err := remarshal(casted, &txn) + return txn, err + } + } + + return nil, fmt.Errorf("unknown transaction type: %v", t) +} From 7a465734565c3152d4b79082bbcea55c4b3c26fe Mon Sep 17 00:00:00 2001 From: Rian Hughes Date: Mon, 2 Sep 2024 14:18:35 +0300 Subject: [PATCH 21/28] update readme for 0.7.1 release (#621) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a0123e5..4af8e85a 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ go run main.go ### RPC -`starknet.go` RPC implements the Starknet [RPC v0.7.0 spec](https://github.com/starkware-libs/starknet-specs/tree/v0.7.0-rc2) +`starknet.go` RPC implements the Starknet [RPC v0.7.1 spec](https://github.com/starkware-libs/starknet-specs/tree/v0.7.1) | Method | Implemented (*) | | ------------------------------------------ | ------------------ | From 3995e6fb05944a6588c85166d553ddd9ba65216e Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Wed, 25 Sep 2024 13:32:05 -0300 Subject: [PATCH 22/28] Upgrades Juno and Go version --- account/account_test.go | 4 +- curve/curve.go | 2 +- go.mod | 47 +++++----- go.sum | 186 +++++++++++++++++++--------------------- hash/hash.go | 9 +- hash/hash_test.go | 12 +-- rpc/types_block_test.go | 1 - 7 files changed, 124 insertions(+), 137 deletions(-) diff --git a/account/account_test.go b/account/account_test.go index fef1261f..b9af5ad9 100644 --- a/account/account_test.go +++ b/account/account_test.go @@ -1135,8 +1135,7 @@ func TestAddDeclareTxn(t *testing.T) { var class rpc.ContractClass err = json.Unmarshal(content, &class) require.NoError(t, err) - classHash, err := hash.ClassHash(class) - require.NoError(t, err) + classHash := hash.ClassHash(class) // Compiled Class Hash content2, err := os.ReadFile("./tests/hello_world_compiled.casm.json") @@ -1195,6 +1194,7 @@ func TestAddDeclareTxn(t *testing.T) { // - []devnet.TestAccount: a slice of test accounts // - error: an error, if any func newDevnet(t *testing.T, url string) (*devnet.DevNet, []devnet.TestAccount, error) { + t.Helper() devnet := devnet.NewDevNet(url) acnts, err := devnet.Accounts() return devnet, acnts, err diff --git a/curve/curve.go b/curve/curve.go index a2ce61aa..a188fbfb 100644 --- a/curve/curve.go +++ b/curve/curve.go @@ -603,7 +603,7 @@ func (sc StarkCurve) PoseidonArray(felts ...*felt.Felt) *felt.Felt { // Returns: // - *felt.Felt: pointer to a felt.Felt // - error: An error if any -func (sc StarkCurve) StarknetKeccak(b []byte) (*felt.Felt, error) { +func (sc StarkCurve) StarknetKeccak(b []byte) *felt.Felt { return junoCrypto.StarknetKeccak(b) } diff --git a/go.mod b/go.mod index 390696b9..80b238b2 100644 --- a/go.mod +++ b/go.mod @@ -1,45 +1,40 @@ module github.com/NethermindEth/starknet.go -go 1.21 +go 1.23.1 require ( - github.com/NethermindEth/juno v0.3.1 - github.com/ethereum/go-ethereum v1.13.8 + github.com/NethermindEth/juno v0.12.2 + github.com/ethereum/go-ethereum v1.14.8 github.com/joho/godotenv v1.4.0 github.com/nsf/jsondiff v0.0.0-20210926074059-1e845ec5d249 github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.9.0 go.uber.org/mock v0.4.0 - golang.org/x/crypto v0.17.0 - golang.org/x/net v0.18.0 + golang.org/x/crypto v0.26.0 + golang.org/x/net v0.28.0 ) require ( - github.com/Microsoft/go-winio v0.6.1 // indirect - github.com/StackExchange/wmi v1.2.1 // indirect - github.com/bits-and-blooms/bitset v1.10.0 // indirect + github.com/Microsoft/go-winio v0.6.2 // indirect + github.com/bits-and-blooms/bitset v1.14.2 // indirect github.com/consensys/bavard v0.1.13 // indirect - github.com/consensys/gnark-crypto v0.12.1 // indirect - github.com/davecgh/go-spew v1.1.1 // indirect - github.com/deckarep/golang-set/v2 v2.1.0 // indirect - github.com/fxamacker/cbor/v2 v2.4.0 // indirect - github.com/go-ole/go-ole v1.2.5 // indirect - github.com/gorilla/websocket v1.4.2 // indirect - github.com/holiman/uint256 v1.2.4 // indirect + github.com/consensys/gnark-crypto v0.13.0 // indirect + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect + github.com/deckarep/golang-set/v2 v2.6.0 // indirect + github.com/fxamacker/cbor/v2 v2.7.0 // indirect + github.com/go-ole/go-ole v1.3.0 // indirect + github.com/gorilla/websocket v1.5.3 // indirect + github.com/holiman/uint256 v1.3.1 // indirect github.com/mmcloughlin/addchain v0.4.0 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect - github.com/tklauser/go-sysconf v0.3.12 // indirect - github.com/tklauser/numcpus v0.6.1 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect + github.com/shirou/gopsutil v3.21.11+incompatible // indirect + github.com/tklauser/go-sysconf v0.3.13 // indirect + github.com/tklauser/numcpus v0.7.0 // indirect github.com/x448/float16 v0.8.4 // indirect - golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect - golang.org/x/mod v0.14.0 // indirect - golang.org/x/tools v0.15.0 // indirect + github.com/yusufpapurcu/wmi v1.2.4 // indirect + golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect gopkg.in/yaml.v3 v3.0.1 // indirect rsc.io/tmplfunc v0.0.3 // indirect ) -require ( - github.com/google/go-cmp v0.5.9 - golang.org/x/sys v0.15.0 // indirect -) +require golang.org/x/sys v0.24.0 // indirect diff --git a/go.sum b/go.sum index b2662a24..ab3c7895 100644 --- a/go.sum +++ b/go.sum @@ -1,136 +1,130 @@ -github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ= -github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= -github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= -github.com/NethermindEth/juno v0.3.1 h1:AW72LiAm9gqUeCVJWvepnZcTnpU4Vkl0KzPMxS+42FA= -github.com/NethermindEth/juno v0.3.1/go.mod h1:SGbTpgGaCsxhFsKOid7Ylnz//WZ8swtILk+NbHGsk/Q= -github.com/StackExchange/wmi v1.2.1 h1:VIkavFPXSjcnS+O8yTq7NI32k0R5Aj+v39y29VYDOSA= -github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= +github.com/DataDog/zstd v1.5.6-0.20230824185856-869dae002e5e h1:ZIWapoIRN1VqT8GR8jAwb1Ie9GyehWjVcGh32Y2MznE= +github.com/DataDog/zstd v1.5.6-0.20230824185856-869dae002e5e/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw= +github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= +github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= +github.com/NethermindEth/juno v0.12.2 h1:GnQUgqMCA93EO7KROlXI5AdXQ9IBvcDP2PEYFr3fQIY= +github.com/NethermindEth/juno v0.12.2/go.mod h1:PlxXUUGgzFVRIiSDrLo/jrEtAPUIHpFAylChtoH3wK4= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bits-and-blooms/bitset v1.10.0 h1:ePXTeiPEazB5+opbv5fr8umg2R/1NlzgDsyepwsSr88= -github.com/bits-and-blooms/bitset v1.10.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= -github.com/btcsuite/btcd/btcec/v2 v2.2.0 h1:fzn1qaOt32TuLjFlkzYSsBC35Q3KUjT1SwPxiMSCF5k= -github.com/btcsuite/btcd/btcec/v2 v2.2.0/go.mod h1:U7MHm051Al6XmscBQ0BoNydpOTsFAn707034b5nY8zU= -github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cockroachdb/errors v1.9.0 h1:B48dYem5SlAY7iU8AKsgedb4gH6mo+bDkbtLIvM/a88= -github.com/cockroachdb/errors v1.9.0/go.mod h1:vaNcEYYqbIqB5JhKBhFV9CneUqeuEbB2OYJBK4GBNYQ= -github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f h1:6jduT9Hfc0njg5jJ1DdKCFPdMBrp/mdZfCpa5h+WM74= -github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f/go.mod h1:Vz9DsVWQQhf3vs21MhPMZpMGSht7O/2vFW2xusFUVOs= -github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593 h1:aPEJyR4rPBvDmeyi+l/FS/VtA00IWvjeFvjen1m1l1A= -github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593/go.mod h1:6hk1eMY/u5t+Cf18q5lFMUA1Rc+Sm5I6Ra1QuPyxXCo= -github.com/cockroachdb/redact v1.1.3 h1:AKZds10rFSIj7qADf0g46UixK8NNLwWTNdCIGS5wfSQ= -github.com/cockroachdb/redact v1.1.3/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= +github.com/bits-and-blooms/bitset v1.14.2 h1:YXVoyPndbdvcEVcseEovVfp0qjJp7S+i5+xgp/Nfbdc= +github.com/bits-and-blooms/bitset v1.14.2/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= +github.com/btcsuite/btcd/btcec/v2 v2.3.4 h1:3EJjcN70HCu/mwqlUsGK8GcNVyLVxFDlWurTXGPFfiQ= +github.com/btcsuite/btcd/btcec/v2 v2.3.4/go.mod h1:zYzJ8etWJQIv1Ogk7OzpWjowwOdXY1W/17j2MW85J04= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cockroachdb/errors v1.11.3 h1:5bA+k2Y6r+oz/6Z/RFlNeVCesGARKuC6YymtcDrbC/I= +github.com/cockroachdb/errors v1.11.3/go.mod h1:m4UIW4CDjx+R5cybPsNrRbreomiFqt8o1h1wUVazSd8= +github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce h1:giXvy4KSc/6g/esnpM7Geqxka4WSqI1SZc7sMJFd3y4= +github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce/go.mod h1:9/y3cnZ5GKakj/H4y9r9GTjCvAFta7KLgSHPJJYc52M= +github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE= +github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b/go.mod h1:Vz9DsVWQQhf3vs21MhPMZpMGSht7O/2vFW2xusFUVOs= +github.com/cockroachdb/pebble v1.1.2 h1:CUh2IPtR4swHlEj48Rhfzw6l/d0qA31fItcIszQVIsA= +github.com/cockroachdb/pebble v1.1.2/go.mod h1:4exszw1r40423ZsmkG/09AFEG83I0uDgfujJdbL6kYU= +github.com/cockroachdb/redact v1.1.5 h1:u1PMllDkdFfPWaNGMyLD1+so+aq3uUItthCFqzwPJ30= +github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAKVxetITBuuhv3BI9cMrmStnpT18zmgmTxunpo= github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= github.com/consensys/bavard v0.1.13 h1:oLhMLOFGTLdlda/kma4VOJazblc7IM5y5QPd2A/YjhQ= github.com/consensys/bavard v0.1.13/go.mod h1:9ItSMtA/dXMAiL7BG6bqW2m3NdSEObYWoH223nGHukI= -github.com/consensys/gnark-crypto v0.12.1 h1:lHH39WuuFgVHONRl3J0LRBtuYdQTumFSDtJF7HpyG8M= -github.com/consensys/gnark-crypto v0.12.1/go.mod h1:v2Gy7L/4ZRosZ7Ivs+9SfUDr0f5UlG+EM5t7MPHiLuY= -github.com/crate-crypto/go-kzg-4844 v0.7.0 h1:C0vgZRk4q4EZ/JgPfzuSoxdCq3C3mOZMBShovmncxvA= -github.com/crate-crypto/go-kzg-4844 v0.7.0/go.mod h1:1kMhvPgI0Ky3yIa+9lFySEBUBXkYxeOi8ZF1sYioxhc= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= -github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/deckarep/golang-set/v2 v2.1.0 h1:g47V4Or+DUdzbs8FxCCmgb6VYd+ptPAngjM6dtGktsI= -github.com/deckarep/golang-set/v2 v2.1.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= -github.com/ethereum/c-kzg-4844 v0.4.0 h1:3MS1s4JtA868KpJxroZoepdV0ZKBp3u/O5HcZ7R3nlY= -github.com/ethereum/c-kzg-4844 v0.4.0/go.mod h1:VewdlzQmpT5QSrVhbBuGoCdFJkpaJlO1aQputP83wc0= -github.com/ethereum/go-ethereum v1.13.8 h1:1od+thJel3tM52ZUNQwvpYOeRHlbkVFZ5S8fhi0Lgsg= -github.com/ethereum/go-ethereum v1.13.8/go.mod h1:sc48XYQxCzH3fG9BcrXCOOgQk2JfZzNAmIKnceogzsA= -github.com/fxamacker/cbor/v2 v2.4.0 h1:ri0ArlOR+5XunOP8CRUowT0pSJOwhW098ZCUyskZD88= -github.com/fxamacker/cbor/v2 v2.4.0/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= -github.com/getsentry/sentry-go v0.13.0 h1:20dgTiUSfxRB/EhMPtxcL9ZEbM1ZdR+W/7f7NWD+xWo= -github.com/getsentry/sentry-go v0.13.0/go.mod h1:EOsfu5ZdvKPfeHYV6pTVQnsjfp30+XA7//UooKNumH0= -github.com/go-ole/go-ole v1.2.5 h1:t4MGB5xEDZvXI+0rMjjsfBsD7yAgp/s9ZDkL1JndXwY= -github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= +github.com/consensys/gnark-crypto v0.13.0 h1:VPULb/v6bbYELAPTDFINEVaMTTybV5GLxDdcjnS+4oc= +github.com/consensys/gnark-crypto v0.13.0/go.mod h1:wKqwsieaKPThcFkHe0d0zMsbHEUWFmZcG7KBCse210o= +github.com/crate-crypto/go-kzg-4844 v1.1.0 h1:EN/u9k2TF6OWSHrCCDBBU6GLNMq88OspHHlMnHfoyU4= +github.com/crate-crypto/go-kzg-4844 v1.1.0/go.mod h1:JolLjpSff1tCCJKaJx4psrlEdlXuJEC996PL3tTAFks= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/deckarep/golang-set/v2 v2.6.0 h1:XfcQbWM1LlMB8BsJ8N9vW5ehnnPVIw0je80NsVHagjM= +github.com/deckarep/golang-set/v2 v2.6.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 h1:rpfIENRNNilwHwZeG5+P150SMrnNEcHYvcCuK6dPZSg= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= +github.com/ethereum/c-kzg-4844 v1.0.0 h1:0X1LBXxaEtYD9xsyj9B9ctQEZIpnvVDeoBx8aHEwTNA= +github.com/ethereum/c-kzg-4844 v1.0.0/go.mod h1:VewdlzQmpT5QSrVhbBuGoCdFJkpaJlO1aQputP83wc0= +github.com/ethereum/go-ethereum v1.14.8 h1:NgOWvXS+lauK+zFukEvi85UmmsS/OkV0N23UZ1VTIig= +github.com/ethereum/go-ethereum v1.14.8/go.mod h1:TJhyuDq0JDppAkFXgqjwpdlQApywnu/m10kFPxh8vvs= +github.com/fxamacker/cbor/v2 v2.7.0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv5E= +github.com/fxamacker/cbor/v2 v2.7.0/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ= +github.com/getsentry/sentry-go v0.27.0 h1:Pv98CIbtB3LkMWmXi4Joa5OOcwbmnX88sF5qbK3r3Ps= +github.com/getsentry/sentry-go v0.27.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY= +github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= +github.com/go-ole/go-ole v1.3.0 h1:Dt6ye7+vXGIKZ7Xtk4s6/xVdGDQynvom7xCFEdWr6uE= +github.com/go-ole/go-ole v1.3.0/go.mod h1:5LS6F96DhAwUc7C+1HLexzMXY1xGRSryjyPPKW6zv78= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb h1:PBC98N2aIaM3XXiurYmW7fx4GZkL8feAMVq7nEjURHk= github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= -github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc= -github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/holiman/uint256 v1.2.4 h1:jUc4Nk8fm9jZabQuqr2JzednajVmBpC+oiTiXZJEApU= -github.com/holiman/uint256 v1.2.4/go.mod h1:EOMSn4q6Nyt9P6efbI3bueV4e1b3dGlUCXeiRV4ng7E= +github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg= +github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/holiman/uint256 v1.3.1 h1:JfTzmih28bittyHM8z360dCjIA9dbPIBlcTI6lmctQs= +github.com/holiman/uint256 v1.3.1/go.mod h1:EOMSn4q6Nyt9P6efbI3bueV4e1b3dGlUCXeiRV4ng7E= github.com/joho/godotenv v1.4.0 h1:3l4+N6zfMWnkbPEXKng2o2/MR5mSwTrBih4ZEkkz1lg= github.com/joho/godotenv v1.4.0/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= -github.com/klauspost/compress v1.15.15 h1:EF27CXIuDsYJ6mmvtBRlEuB2UVOqHG1tAXgZ7yIO+lw= -github.com/klauspost/compress v1.15.15/go.mod h1:ZcK2JAFqKOpnBlxcLsJzYfrS9X1akm9fHZNnD9+Vo/4= +github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA= +github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/mmcloughlin/addchain v0.4.0 h1:SobOdjm2xLj1KkXN5/n0xTIWyZA2+s99UCY1iPfkHRY= github.com/mmcloughlin/addchain v0.4.0/go.mod h1:A86O+tHqZLMNO4w6ZZ4FlVQEadcoqkyU72HC5wJ4RlU= github.com/mmcloughlin/profile v0.1.1/go.mod h1:IhHD7q1ooxgwTgjxQYkACGA77oFTDdFVejUS1/tS/qU= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= +github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/nsf/jsondiff v0.0.0-20210926074059-1e845ec5d249 h1:NHrXEjTNQY7P0Zfx1aMrNhpgxHmow66XQtm0aQLY0AE= github.com/nsf/jsondiff v0.0.0-20210926074059-1e845ec5d249/go.mod h1:mpRZBD8SJ55OIICQ3iWH0Yz3cjzA61JdqMLoWXeB2+8= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= -github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v1.12.0 h1:C+UIj/QWtmqY13Arb8kwMt5j34/0Z2iKamrJ+ryC0Gg= -github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= -github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a h1:CmF68hwI0XsOQ5UwlBopMi2Ow4Pbg32akc4KIVCOm+Y= -github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= -github.com/prometheus/common v0.32.1 h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4= -github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/procfs v0.7.3 h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= -github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible h1:Bn1aCHHRnjv4Bl16T8rcaFjYSrGrIZvpiGO6P3Q4GpU= -github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v1.20.2 h1:5ctymQzZlyOON1666svgwn3s6IKWgfbjsejTMiXIyjg= +github.com/prometheus/client_golang v1.20.2/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE= +github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= +github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= +github.com/prometheus/common v0.55.0 h1:KEi6DK7lXW/m7Ig5i47x0vRzuBsHuvJdi5ee6Y3G1dc= +github.com/prometheus/common v0.55.0/go.mod h1:2SECS4xJG1kd8XF9IcM1gMX6510RAEL65zxzNImwdc8= +github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc= +github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk= +github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= +github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= +github.com/shirou/gopsutil v3.21.11+incompatible h1:+1+c1VGhc88SSonWP6foOcLhvnKlUeu/erjjvaPEYiI= +github.com/shirou/gopsutil v3.21.11+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/supranational/blst v0.3.11 h1:LyU6FolezeWAhvQk0k6O/d49jqgO52MSDDfYgbeoEm4= github.com/supranational/blst v0.3.11/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= -github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU= -github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= -github.com/tklauser/numcpus v0.6.1 h1:ng9scYS7az0Bk4OZLvrNXNSAO2Pxr1XXRAPyjhIx+Fk= -github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= +github.com/tklauser/go-sysconf v0.3.13 h1:GBUpcahXSpR2xN01jhkNAbTLRk2Yzgggk8IM08lq3r4= +github.com/tklauser/go-sysconf v0.3.13/go.mod h1:zwleP4Q4OehZHGn4CYZDipCgg9usW5IJePewFCGVEa0= +github.com/tklauser/numcpus v0.7.0 h1:yjuerZP127QG9m5Zh/mSO4wqurYil27tHrqwRoRjpr4= +github.com/tklauser/numcpus v0.7.0/go.mod h1:bb6dMVcj8A42tSE7i32fsIUCbQNllK5iDguyOZRUzAY= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= -go.uber.org/atomic v1.10.0 h1:9qC72Qh0+3MqyJbAn8YU5xVq1frD8bn3JtD2oXtafVQ= -go.uber.org/atomic v1.10.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= +github.com/yusufpapurcu/wmi v1.2.4 h1:zFUKzehAFReQwLys1b/iSMl+JQGSCSjtVqQn9bBrPo0= +github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0= go.uber.org/mock v0.4.0 h1:VcM4ZOtdbR4f6VXfiOpwpVJDL6lCReaZ6mw31wqh7KU= go.uber.org/mock v0.4.0/go.mod h1:a6FSlNadKUHUa9IP5Vyt1zh4fC7uAwxMutEAscFbkZc= -go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI= -go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ= -go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60= -go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= -golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= -golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= -golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= -golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= -golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= -golang.org/x/net v0.18.0 h1:mIYleuAkSbHh0tCv7RvjL3F6ZVbLjq4+R7zbOn3Kokg= -golang.org/x/net v0.18.0/go.mod h1:/czyP5RqHAH4odGYxBJ1qz0+CE5WZ+2j1YgoEo8F2jQ= -golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= -golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= +go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= +go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8= +go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= +golang.org/x/crypto v0.26.0 h1:RrRspgV4mU+YwB4FYnuBoKsUapNIL5cohGAmSH3azsw= +golang.org/x/crypto v0.26.0/go.mod h1:GY7jblb9wI+FOo5y8/S2oY4zWP07AkOJ4+jxCqdqn54= +golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa h1:ELnwvuAXPNtPk1TJRuGkI9fDTwym6AYBu0qzT8AcHdI= +golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa/go.mod h1:akd2r19cwCdwSwWeIdzYQGa/EZZyqcOdwWiwj5L5eKQ= +golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE= +golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg= +golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= +golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/tools v0.15.0 h1:zdAyfUGbYmuVokhzVmghFl2ZJh5QhcfebBgmVPFYA+8= -golang.org/x/tools v0.15.0/go.mod h1:hpksKq4dtpQWS1uQ61JkdqWM3LscIS6Slf+VVkm+wQk= -google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg= +golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc= +golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= +google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= +google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= diff --git a/hash/hash.go b/hash/hash.go index 0301cb54..71d53cdc 100644 --- a/hash/hash.go +++ b/hash/hash.go @@ -57,7 +57,7 @@ func CalculateTransactionHashCommon( // Returns: // - *felt.Felt: a pointer to a felt.Felt object that represents the calculated hash. // - error: an error object if there was an error during the hash calculation. -func ClassHash(contract rpc.ContractClass) (*felt.Felt, error) { +func ClassHash(contract rpc.ContractClass) *felt.Felt { // https://docs.starknet.io/documentation/architecture_and_concepts/Smart_Contracts/class-hash/ Version := "CONTRACT_CLASS_V" + contract.ContractClassVersion @@ -66,13 +66,10 @@ func ClassHash(contract rpc.ContractClass) (*felt.Felt, error) { ExternalHash := hashEntryPointByType(contract.EntryPointsByType.External) L1HandleHash := hashEntryPointByType(contract.EntryPointsByType.L1Handler) SierraProgamHash := curve.Curve.PoseidonArray(contract.SierraProgram...) - ABIHash, err := curve.Curve.StarknetKeccak([]byte(contract.ABI)) - if err != nil { - return nil, err - } + ABIHash := curve.Curve.StarknetKeccak([]byte(contract.ABI)) // https://docs.starknet.io/documentation/architecture_and_concepts/Network_Architecture/transactions/#deploy_account_hash_calculation - return curve.Curve.PoseidonArray(ContractClassVersionHash, ExternalHash, L1HandleHash, ConstructorHash, ABIHash, SierraProgamHash), nil + return curve.Curve.PoseidonArray(ContractClassVersionHash, ExternalHash, L1HandleHash, ConstructorHash, ABIHash, SierraProgamHash) } // hashEntryPointByType calculates the hash of an entry point by type. diff --git a/hash/hash_test.go b/hash/hash_test.go index 415cd081..1866c38c 100644 --- a/hash/hash_test.go +++ b/hash/hash_test.go @@ -18,7 +18,8 @@ import ( // Parameters: // - t: A testing.T object used for running the test and reporting any failures. // Returns: -// none +// +// none func TestUnmarshalCasmClassHash(t *testing.T) { content, err := os.ReadFile("./tests/hello_starknet_compiled.casm.json") require.NoError(t, err) @@ -36,7 +37,8 @@ func TestUnmarshalCasmClassHash(t *testing.T) { // Parameters: // - t: A testing.T object used for running the test and reporting any failures. // Returns: -// none +// +// none func TestClassHash(t *testing.T) { //https://github.com/software-mansion/starknet.py/blob/development/starknet_py/hash/class_hash_test.py expectedClasshash := "0x4ec2ecf58014bc2ffd7c84843c3525e5ecb0a2cac33c47e9c347f39fc0c0944" @@ -47,8 +49,7 @@ func TestClassHash(t *testing.T) { var class rpc.ContractClass err = json.Unmarshal(content, &class) require.NoError(t, err) - compClassHash, err := hash.ClassHash(class) - require.NoError(t, err) + compClassHash := hash.ClassHash(class) require.Equal(t, expectedClasshash, compClassHash.String()) } @@ -60,7 +61,8 @@ func TestClassHash(t *testing.T) { // Parameters: // - t: A testing.T object used for running the test and reporting any failures. // Returns: -// none +// +// none func TestCompiledClassHash(t *testing.T) { //https://github.com/software-mansion/starknet.py/blob/development/starknet_py/hash/casm_class_hash_test.py expectedHash := "0x785fa5f2bacf0bfe3bc413be5820a61e1ea63f2ec27ef00331ee9f46ad07603" diff --git a/rpc/types_block_test.go b/rpc/types_block_test.go index 4ceea73d..880d7775 100644 --- a/rpc/types_block_test.go +++ b/rpc/types_block_test.go @@ -269,7 +269,6 @@ func TestBlockWithReceipts(t *testing.T) { require.NotEmpty(pBlock.ParentHash, "Error in PendingBlockWithReceipts ParentHash") require.NotEmpty(pBlock.SequencerAddress, "Error in PendingBlockWithReceipts SequencerAddress") require.NotEmpty(pBlock.Timestamp, "Error in PendingBlockWithReceipts Timestamp") - require.NotEmpty(pBlock.Transactions, "Error in PendingBlockWithReceipts Transactions") } default: From 2bf9f35dc7b5d62c17dbd494de299ca8721ead60 Mon Sep 17 00:00:00 2001 From: thiagodeev Date: Thu, 26 Sep 2024 01:01:12 -0300 Subject: [PATCH 23/28] Changes linter version --- .github/workflows/linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index c3455f1b..69692053 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -25,4 +25,4 @@ jobs: uses: golangci/golangci-lint-action@v3 with: # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version - version: v1.56.2 \ No newline at end of file + version: v1.61 \ No newline at end of file From e171fe1153916745cd960bcdd3587c201c1f5a66 Mon Sep 17 00:00:00 2001 From: yevh Date: Mon, 30 Sep 2024 11:22:21 +0200 Subject: [PATCH 24/28] Create codeql.yml (#627) --- .github/workflows/codeql.yml | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 00000000..58abe4eb --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,39 @@ +name: CodeQL SAST +on: + push: + branches: + - main + pull_request: + schedule: + - cron: "23 9 * * 3" + workflow_dispatch: + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: ["go"] + + steps: + - name: Checkout repository + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 #v4.2.0 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@5618c9fc1e675841ca52c1c6b1304f5255a905a0 #v2.19.0 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@5618c9fc1e675841ca52c1c6b1304f5255a905a0 #v2.19.0 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@5618c9fc1e675841ca52c1c6b1304f5255a905a0 #v2.19.0 From 4b606c61495432df835bc3d71642ba9d0fe8a936 Mon Sep 17 00:00:00 2001 From: Daniel Katzan <108216499+dkatzan@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:53:27 +0300 Subject: [PATCH 25/28] fix definition of invoke transaction trace (#631) --- .../trace/mainnetSimulateInvokeTxResp.json | 934 +++++++++++------- rpc/trace_test.go | 2 +- rpc/types_event.go | 2 +- rpc/types_trace.go | 4 +- 4 files changed, 595 insertions(+), 347 deletions(-) diff --git a/rpc/tests/trace/mainnetSimulateInvokeTxResp.json b/rpc/tests/trace/mainnetSimulateInvokeTxResp.json index 9905af39..040e6232 100644 --- a/rpc/tests/trace/mainnetSimulateInvokeTxResp.json +++ b/rpc/tests/trace/mainnetSimulateInvokeTxResp.json @@ -1,364 +1,612 @@ { - + "jsonrpc": "2.0", "result": [ - { - "transaction_trace": { - "validate_invocation": { - "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", - "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", - "0x0", - "0x2", - "0x2", - "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", - "0x1" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x1", - "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", - "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", - "0x0", - "0x2", - "0x2", - "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", - "0x1" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", - "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", - "0x0", - "0x2", - "0x2", - "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", - "0x1" - ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", - "calldata": [ - "0x1", - "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", - "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", - "0x0", - "0x2", - "0x2", - "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", - "0x1" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [ - { - "contract_address": "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", - "entry_point_selector": "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", - "calldata": [ - "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", - "0x1" - ], - "caller_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "class_hash": "0x660f41e2ffebe07703729569eac75f2a68000488b24df74e65acf59fe225b1e", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", - "entry_point_selector": "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", - "calldata": [ - "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", - "0x1" - ], - "caller_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "class_hash": "0x54659ac8392d7627971a4aaeaad88a9ed3c6b8bfac69a6861e475e3173369d3", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [ - { - "keys": [ - "0x6ad9ed7b6318f1bcffefe19df9aeb40d22c36bed567e1925a5ccde0536edd" - ], - "data": [ - "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", - "0x1" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - } - ], - "events": [ - { - "keys": [ - "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" - ], - "data": [ - "0x735b67a69014a5f143a9db9d8c82a2dbb1114fa5705d2f03adf4523067d36d6", - "0x0" - ] - } - ], - "messages": [] - } - ], - "events": [], - "messages": [] - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + { + "transaction_trace": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", + "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", + "0x0", + "0x2", + "0x2", + "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", + "0x1" + ], + "caller_address": "0x0", + "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + + ], + "calls": [ + { + "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x1", + "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", + "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", + "0x0", + "0x2", + "0x2", + "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", + "0x1" + ], + "caller_address": "0x0", + "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", + "entry_point_type": "EXTERNAL", + "call_type": "DELEGATE", + "result": [ + + ], + "calls": [ + + ], + "events": [ + + ], + "messages": [ + + ], + "execution_resources": { + "steps": 351, + "range_check_builtin_applications": 3, + "ecdsa_builtin_applications": 1 + } + } + ], + "events": [ + + ], + "messages": [ + + ], + "execution_resources": { + "steps": 1135, + "range_check_builtin_applications": 22, + "ecdsa_builtin_applications": 1 + } + }, + "execute_invocation": { + "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", + "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", + "0x0", + "0x2", + "0x2", + "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", + "0x1" + ], + "caller_address": "0x0", + "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + + ], + "calls": [ + { + "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "entry_point_selector": "0x15d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad", + "calldata": [ + "0x1", + "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", + "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", + "0x0", + "0x2", + "0x2", + "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", + "0x1" + ], + "caller_address": "0x0", + "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", + "entry_point_type": "EXTERNAL", + "call_type": "DELEGATE", + "result": [ + + ], + "calls": [ + { + "contract_address": "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", + "entry_point_selector": "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x3755fe8345ba", - "0x0" + "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", + "0x1" ], "caller_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", + "class_hash": "0x660f41e2ffebe07703729569eac75f2a68000488b24df74e65acf59fe225b1e", "entry_point_type": "EXTERNAL", "call_type": "CALL", "result": [ - "0x1" + ], "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x3755fe8345ba", - "0x0" + { + "contract_address": "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", + "entry_point_selector": "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a", + "calldata": [ + "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", + "0x1" + ], + "caller_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "class_hash": "0x54659ac8392d7627971a4aaeaad88a9ed3c6b8bfac69a6861e475e3173369d3", + "entry_point_type": "EXTERNAL", + "call_type": "DELEGATE", + "result": [ + + ], + "calls": [ + + ], + "events": [ + { + "order": 0, + "keys": [ + "0x6ad9ed7b6318f1bcffefe19df9aeb40d22c36bed567e1925a5ccde0536edd" ], - "caller_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x3755fe8345ba", - "0x0" - ] - } - ], - "messages": [] + "data": [ + "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "0x3a2fc8b0db9a9ef748227ef61ed254897cb40ad39575a9bde734dc78073f779", + "0x1" + ] + } + ], + "messages": [ + + ], + "execution_resources": { + "steps": 253, + "memory_holes": 10, + "pedersen_builtin_applications": 2, + "range_check_builtin_applications": 3 } + } ], - "events": [], - "messages": [] - } - }, - "fee_estimate": { - "gas_consumed": "0x136a", - "gas_price": "0x2d9ad4d89", - "overall_fee": "0x3755fe8345ba" - } - }, - { - "transaction_trace": { - "validate_invocation": { - "contract_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x2", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", - "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", - "0x3", - "0x12", - "0x15", - "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", - "0x2dc6c00", - "0x0", - "0x2", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0xf4240", - "0x4", - "0x30615bec9c1506bfac97d9dbd3c546307987d467a7f95d5533c2e861eb81f3f", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", - "0xf4240", - "0x4", - "0x691fa7f66d63dc8c89ff4e77732fff5133f282e7dbd41813273692cc595516", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", - "0x2dc6c00", - "0x0", - "0x2dff8d6", - "0x0", - "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891" + "events": [ + ], - "caller_address": "0x0", - "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [], - "calls": [ - { - "contract_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", - "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", - "calldata": [ - "0x2", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", - "0x0", - "0x3", - "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", - "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", - "0x3", - "0x12", - "0x15", - "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", - "0x2dc6c00", - "0x0", - "0x2", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0xf4240", - "0x4", - "0x30615bec9c1506bfac97d9dbd3c546307987d467a7f95d5533c2e861eb81f3f", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", - "0xf4240", - "0x4", - "0x691fa7f66d63dc8c89ff4e77732fff5133f282e7dbd41813273692cc595516", - "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", - "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", - "0x2dc6c00", - "0x0", - "0x2dff8d6", - "0x0", - "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891" - ], - "caller_address": "0x0", - "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [], - "calls": [], - "events": [], - "messages": [] - } + "messages": [ + ], - "events": [], - "messages": [] - }, - "execute_invocation": { - "revert_reason": "Error in the called contract (0x07539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891):\nError at pc=0:12:\nGot an exception while executing a hint: Hint Error: Error in the called contract (0x07539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891):\nError at pc=0:39:\nGot an exception while executing a hint: Hint Error: Error in the called contract (0x01b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62):\nError at pc=0:1371:\nError message: Minimum receive amount not reached\n\nCairo traceback (most recent call last):\nUnknown location (pc=0:1436)\n\nCairo traceback (most recent call last):\nUnknown location (pc=0:1398)\nUnknown location (pc=0:1351)\nUnknown location (pc=0:569)\nUnknown location (pc=0:604)\nError message: argent: multicall 6:13 failed\nUnknown location (pc=0:586)\n\nError in the called contract (0x01b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62):\nError at pc=0:1371:\nError message: Minimum receive amount not reached\n\nCairo traceback (most recent call last):\nUnknown location (pc=0:1436)\n\nCairo traceback (most recent call last):\nUnknown location (pc=0:161)\nUnknown location (pc=0:147)\n\nError in the called contract (0x07539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891):\nError at pc=0:39:\nGot an exception while executing a hint: Hint Error: Error in the called contract (0x01b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62):\nError at pc=0:1371:\nError message: Minimum receive amount not reached\n\nCairo traceback (most recent call last):\nUnknown location (pc=0:1436)\n\nCairo traceback (most recent call last):\nUnknown location (pc=0:1398)\nUnknown location (pc=0:1351)\nUnknown location (pc=0:569)\nUnknown location (pc=0:604)\nError message: argent: multicall 6:13 failed\nUnknown location (pc=0:586)\n\nError in the called contract (0x01b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62):\nError at pc=0:1371:\nError message: Minimum receive amount not reached\n\nCairo traceback (most recent call last):\nUnknown location (pc=0:1436)\n" - }, - "fee_transfer_invocation": { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x357cd822fee4", - "0x0" + "execution_resources": { + "steps": 1037, + "memory_holes": 10, + "pedersen_builtin_applications": 2, + "range_check_builtin_applications": 22 + } + } + ], + "events": [ + { + "order": 1, + "keys": [ + "0x5ad857f66a5b55f1301ff1ed7e098ac6d4433148f0b72ebc4a2945ab85ad53" ], - "caller_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", - "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", - "entry_point_type": "EXTERNAL", - "call_type": "CALL", - "result": [ - "0x1" + "data": [ + "0x735b67a69014a5f143a9db9d8c82a2dbb1114fa5705d2f03adf4523067d36d6", + "0x0" + ] + } + ], + "messages": [ + + ], + "execution_resources": { + "steps": 2011, + "memory_holes": 13, + "pedersen_builtin_applications": 2, + "range_check_builtin_applications": 44 + } + } + ], + "events": [ + + ], + "messages": [ + + ], + "execution_resources": { + "steps": 2795, + "memory_holes": 13, + "pedersen_builtin_applications": 2, + "range_check_builtin_applications": 63 + } + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x27deed359565", + "0x0" + ], + "caller_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [ + { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x27deed359565", + "0x0" + ], + "caller_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", + "entry_point_type": "EXTERNAL", + "call_type": "DELEGATE", + "result": [ + "0x1" + ], + "calls": [ + + ], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" ], - "calls": [ - { - "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "calldata": [ - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x357cd822fee4", - "0x0" - ], - "caller_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", - "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", - "entry_point_type": "EXTERNAL", - "call_type": "LIBRARY_CALL", - "result": [ - "0x1" - ], - "calls": [], - "events": [ - { - "keys": [ - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" - ], - "data": [ - "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", - "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "0x357cd822fee4", - "0x0" - ] - } - ], - "messages": [] - } + "data": [ + "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x27deed359565", + "0x0" + ] + } + ], + "messages": [ + + ], + "execution_resources": { + "steps": 941, + "memory_holes": 40, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 21 + } + } + ], + "events": [ + + ], + "messages": [ + + ], + "execution_resources": { + "steps": 1758, + "memory_holes": 40, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 40 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x7606cac9053e9b8b573a4b0a0ce608880f64869e24b8a605210d7a85bb6e5f1", + "storage_entries": [ + { + "key": "0x60e52d0cc22837e15df939790425bf856c5541fbeac313223060fe43e17de5b", + "value": "0x1" + } + ] + }, + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x112d7aab247b6d3aa8" + }, + { + "key": "0x4400c7a2893f4c4718d406851b2c5a020192ea8f1288f2653e7185e776e037a", + "value": "0x30b11c749f9c058" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0xa3824e360e4fec7a4f1a4ee50e2a70c3de79b73b081f69db655cdc0c4cc85b", + "nonce": "0x32" + } + ], + "deployed_contracts": [ + + ], + "deprecated_declared_classes": [ + + ], + "declared_classes": [ + + ], + "replaced_classes": [ + + ] + }, + "execution_resources": { + "steps": 5688, + "memory_holes": 53, + "pedersen_builtin_applications": 6, + "range_check_builtin_applications": 125, + "ecdsa_builtin_applications": 1, + "data_availability": { + "l1_gas": 3581, + "l1_data_gas": 0 + } + } + }, + "fee_estimation": { + "gas_consumed": "0xdfd", + "gas_price": "0x2d9ad4d89", + "data_gas_consumed": "0x0", + "data_gas_price": "0x1", + "overall_fee": "0x27deed359565", + "unit": "WEI" + } + }, + { + "transaction_trace": { + "type": "INVOKE", + "validate_invocation": { + "contract_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x2", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x0", + "0x3", + "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", + "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", + "0x3", + "0x12", + "0x15", + "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", + "0x2dc6c00", + "0x0", + "0x2", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xf4240", + "0x4", + "0x30615bec9c1506bfac97d9dbd3c546307987d467a7f95d5533c2e861eb81f3f", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0xf4240", + "0x4", + "0x691fa7f66d63dc8c89ff4e77732fff5133f282e7dbd41813273692cc595516", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0x2dc6c00", + "0x0", + "0x2dff8d6", + "0x0", + "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891" + ], + "caller_address": "0x0", + "class_hash": "0x25ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + + ], + "calls": [ + { + "contract_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", + "entry_point_selector": "0x162da33a4585851fe8d3af3c2a9c60b557814e221e0d4f30ff0b2189d9c7775", + "calldata": [ + "0x2", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c", + "0x0", + "0x3", + "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", + "0x15543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29", + "0x3", + "0x12", + "0x15", + "0x1b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62", + "0x2dc6c00", + "0x0", + "0x2", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0xf4240", + "0x4", + "0x30615bec9c1506bfac97d9dbd3c546307987d467a7f95d5533c2e861eb81f3f", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0xf4240", + "0x4", + "0x691fa7f66d63dc8c89ff4e77732fff5133f282e7dbd41813273692cc595516", + "0x53c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8", + "0x68f5c6a61780768455de69077e07e89787839bf8166decfbf92b645209c0fb8", + "0x2dc6c00", + "0x0", + "0x2dff8d6", + "0x0", + "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891" + ], + "caller_address": "0x0", + "class_hash": "0x33434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2", + "entry_point_type": "EXTERNAL", + "call_type": "DELEGATE", + "result": [ + + ], + "calls": [ + + ], + "events": [ + + ], + "messages": [ + + ], + "execution_resources": { + "steps": 374, + "range_check_builtin_applications": 3, + "ecdsa_builtin_applications": 1 + } + } + ], + "events": [ + + ], + "messages": [ + + ], + "execution_resources": { + "steps": 1158, + "range_check_builtin_applications": 22, + "ecdsa_builtin_applications": 1 + } + }, + "execute_invocation": { + "revert_reason": "Transaction execution has failed:\n0: Error in the called contract (contract address: 0x07539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891, class hash: 0x025ec026985a3bf9d0cc1fe17326b245dfdc3ff89b8fde106542a3ea56c5a918, selector: 0x015d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad):\nError at pc=0:12:\nCairo traceback (most recent call last):\nUnknown location (pc=0:161)\nUnknown location (pc=0:147)\n\n1: Error in a library call (contract address: 0x07539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891, class hash: 0x033434ad846cdd5f23eb73ff09fe6fddd568284a0fb7d1be20ee482f044dabe2, selector: 0x015d40a3d6ca2ac30f4031e42be28da9b056fef9bb7357ac5e85627ee876e5ad):\nError at pc=0:39:\nCairo traceback (most recent call last):\nUnknown location (pc=0:1398)\nUnknown location (pc=0:1351)\nUnknown location (pc=0:569)\nUnknown location (pc=0:604)\nError message: argent: multicall 6:13 failed\nUnknown location (pc=0:586)\n\n2: Error in the called contract (contract address: 0x01b23ed400b210766111ba5b1e63e33922c6ba0c45e6ad56ce112e5f4c578e62, class hash: 0x07ab5ccfc00188f7f5a2a507b42f1b452a2115709e714f2ff5c225ae341c539d, selector: 0x015543c3708653cda9d418b4ccd3be11368e40636c10c44b18cfe756b6d88b29):\nError message: Minimum receive amount not reached\nError at pc=0:1371:\nCairo traceback (most recent call last):\nUnknown location (pc=0:1436)\n\nAn ASSERT_EQ instruction failed: 0 != 1.\n" + }, + "fee_transfer_invocation": { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1739ba25ca56", + "0x0" + ], + "caller_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", + "class_hash": "0xd0e183745e9dae3e4e78a8ffedcce0903fc4900beace4e0abf192d4c202da3", + "entry_point_type": "EXTERNAL", + "call_type": "CALL", + "result": [ + "0x1" + ], + "calls": [ + { + "contract_address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "entry_point_selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "calldata": [ + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1739ba25ca56", + "0x0" + ], + "caller_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", + "class_hash": "0x2760f25d5a4fb2bdde5f561fd0b44a3dee78c28903577d37d669939d97036a0", + "entry_point_type": "EXTERNAL", + "call_type": "DELEGATE", + "result": [ + "0x1" + ], + "calls": [ + + ], + "events": [ + { + "order": 0, + "keys": [ + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9" ], - "events": [], - "messages": [] + "data": [ + "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", + "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "0x1739ba25ca56", + "0x0" + ] + } + ], + "messages": [ + + ], + "execution_resources": { + "steps": 937, + "memory_holes": 42, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 21 } - }, - "fee_estimate": { - "gas_consumed": "0x12c4", - "gas_price": "0x2d9ad4d89", - "overall_fee": "0x357cd822fee4" + } + ], + "events": [ + + ], + "messages": [ + + ], + "execution_resources": { + "steps": 1754, + "memory_holes": 42, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 40 + } + }, + "state_diff": { + "storage_diffs": [ + { + "address": "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "storage_entries": [ + { + "key": "0x23e662adad50e7f257b7fbb75b0ee000b72161f6b514fc1b04b3dc10b97e501", + "value": "0x1e5fab9877a69e" + }, + { + "key": "0x5496768776e3db30053404f18067d81a6e06f5a2b0de326e21298fd9d569a9a", + "value": "0x112d7ac25e359304fe" + } + ] + } + ], + "nonces": [ + { + "contract_address": "0x7539032dc35e6680bbe5b681a3b82b62cfcb371f337d60d15a7db2efac22891", + "nonce": "0x24" + } + ], + "deployed_contracts": [ + + ], + "deprecated_declared_classes": [ + + ], + "declared_classes": [ + + ], + "replaced_classes": [ + + ] + }, + "execution_resources": { + "steps": 2912, + "memory_holes": 42, + "pedersen_builtin_applications": 4, + "range_check_builtin_applications": 62, + "ecdsa_builtin_applications": 1, + "data_availability": { + "l1_gas": 2086, + "l1_data_gas": 0 } + } + }, + "fee_estimation": { + "gas_consumed": "0x826", + "gas_price": "0x2d9ad4d89", + "data_gas_consumed": "0x0", + "data_gas_price": "0x1", + "overall_fee": "0x1739ba25ca56", + "unit": "WEI" } - ] -} \ No newline at end of file + } + ], + "id": 1 + } \ No newline at end of file diff --git a/rpc/trace_test.go b/rpc/trace_test.go index 9b6f2a69..ca1fda3e 100644 --- a/rpc/trace_test.go +++ b/rpc/trace_test.go @@ -93,7 +93,7 @@ func TestSimulateTransaction(t *testing.T) { var simulateTxIn SimulateTransactionInput var expectedResp SimulateTransactionOutput if testEnv == "mainnet" { - simulateTxnRaw, err := os.ReadFile("./tests/trace/mainnetSimulateInvokeTx.json.json") + simulateTxnRaw, err := os.ReadFile("./tests/trace/mainnetSimulateInvokeTx.json") require.NoError(t, err, "Error ReadFile simulateInvokeTx") require.NoError(t, json.Unmarshal(simulateTxnRaw, &simulateTxIn), "Error unmarshalling simulateInvokeTx") diff --git a/rpc/types_event.go b/rpc/types_event.go index ab5a0341..0157edd2 100644 --- a/rpc/types_event.go +++ b/rpc/types_event.go @@ -5,7 +5,7 @@ import "github.com/NethermindEth/juno/core/felt" type OrderedEvent struct { // The order of the event within the transaction Order int `json:"order"` - Event Event + *Event } type Event struct { diff --git a/rpc/types_trace.go b/rpc/types_trace.go index bc44af08..0cc44807 100644 --- a/rpc/types_trace.go +++ b/rpc/types_trace.go @@ -133,8 +133,8 @@ type Trace struct { } type ExecInvocation struct { - FunctionInvocation FnInvocation `json:"function_invocation,omitempty"` - RevertReason string `json:"revert_reason,omitempty"` + *FnInvocation + RevertReason string `json:"revert_reason,omitempty"` } // UnmarshalJSON unmarshals the data into a SimulatedTransaction object. From 72af463198c7b5703a64a943518327f1d0fed69c Mon Sep 17 00:00:00 2001 From: rian Date: Wed, 2 Oct 2024 12:54:18 +0300 Subject: [PATCH 26/28] fix test validation bug --- rpc/block_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/block_test.go b/rpc/block_test.go index 71f046f9..5256bcdd 100644 --- a/rpc/block_test.go +++ b/rpc/block_test.go @@ -655,5 +655,5 @@ func validatePendingBlockHeader(t *testing.T, pBlock *PendingBlockHeader) { require.NotZero(t, pBlock.L1GasPrice) require.NotZero(t, pBlock.StarknetVersion) require.NotZero(t, pBlock.L1DataGasPrice) - require.NotZero(t, pBlock.L1DAMode) + require.NotNil(t, pBlock.L1DAMode) } From 022f9ec5142e878a72ae799613bd9e369d5728ae Mon Sep 17 00:00:00 2001 From: Priyank Makwana <117025290+RuneRogue@users.noreply.github.com> Date: Wed, 2 Oct 2024 20:23:15 +0530 Subject: [PATCH 27/28] Update CONTRIBUTING.md --- docs/CONTRIBUTING.md | 58 +++++++++++++++++++++++++++++++++----------- 1 file changed, 44 insertions(+), 14 deletions(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index f9c4445a..35b78cc9 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -1,25 +1,55 @@ # Contributors Guide -starknet.go is an open-source Golang Library for Cairo written by NethermindEth. -We welcome all contributions to this repository to help enrich the Starknet community. +**starknet.go** is an open-source Golang library for Cairo developed by NethermindEth. We welcome all contributions to this repository to help enrich the Starknet community. ## How to Contribute -We operate and maintain this project with an issue and pull request model. We will track -the GitHub issues section [Issues](https://github.com/NethermindEth/starknet.go/issues) of this repository -and contributors can submit [Pull -Requests](https://github.com/NethermindEth/starknet.go/pulls) for review by the maintainers. +We operate and maintain this project using an issue and pull request model. Please track the GitHub issues section [Issues](https://github.com/NethermindEth/starknet.go/issues) of this repository, and contributors can submit [Pull Requests](https://github.com/NethermindEth/starknet.go/pulls) for review by the maintainers. ### General Work-Flow - We recommend the following work-flow for contributors: +We recommend the following work-flow for contributors: - 1. **Find an issue** to work on and use comments to communicate your intentions and ask questions. - 2. **Work in a feature branch** of your personal fork (github.com/YOUR_NAME/starknet.go) of the main repository (github.com/NethermindEth/starknet.go). - 3. After you have implemented or resolved the issue, **create a pull-request** to merge your changes in the main repository - 4. Wait for the repository maintainers to **review your changes** to ensure the issue is addressed. - 5. If the issue is addressed the repository maintainers will **merge your pull-request** +1. **Find an issue** to work on and use comments to communicate your intentions and ask questions. +2. **Work in a feature branch** of your personal fork (github.com/YOUR_NAME/starknet.go) of the main repository (github.com/NethermindEth/starknet.go). +3. After you have implemented or resolved the issue, **create a pull request** to merge your changes into the main repository. +4. Wait for the repository maintainers to **review your changes** to ensure the issue is addressed. +5. If the issue is resolved, the repository maintainers will **merge your pull request**. -### Helpful Article on contribution +### Linter Checks -[guide](https://akrabat.com/the-beginners-guide-to-contributing-to-a-github-project/) +**starknet.go** now requires linter checks to pass. Please follow these steps to install and run the linter: + +1. **Install `golangci-lint`:** + + ```bash + go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3 + ``` + +2. **Run the linter:** + + ```bash + golangci-lint run + ``` + + Ensure that there are no linter errors before submitting your pull request. + +3. **Run the linter on a specific file in a specific directory:** + + To run the linter on a specific file, use: + + ```bash + golangci-lint run path/to/your/file.go + ``` + + To run the linter on all files in a specific directory, use: + + ```bash + golangci-lint run path/to/your/directory + ``` + + Replace `path/to/your/file.go` and `path/to/your/directory` with the actual file and directory paths. + +### Helpful Article on Contribution + +For a detailed guide on contributing to a GitHub project, check out this [guide](https://akrabat.com/the-beginners-guide-to-contributing-to-a-github-project/). From 9d50a597c5e1766e2e7cb2f7e12f20972d897f97 Mon Sep 17 00:00:00 2001 From: Thiago Ribeiro <62709592+thiagodeev@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:07:04 -0300 Subject: [PATCH 28/28] Update lint to the version currently used in CI --- docs/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 35b78cc9..8690fe7c 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -23,7 +23,7 @@ We recommend the following work-flow for contributors: 1. **Install `golangci-lint`:** ```bash - go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3 + go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.0 ``` 2. **Run the linter:**