From c189994535f2b8607180889eb2a0eb6e9c032cd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Fern=C3=A1ndez?= Date: Fri, 3 Feb 2023 13:23:39 +0100 Subject: [PATCH 01/31] Update Chains on EthereumNetwork (#452) * Update chains from ethereum chain list * Update MATIC name to POLYGON * Update XDAI name to GNOSIS * Update name ARBITRUM to ARBITRUM_ONE * Update name AVALANCHE to AVALANCHE_C_CHAIN * Update name BINANCE to BINANCE_SMART_CHAIN_MAINNET * Update name VOLTA to ENERGY_WEB_VOLTA_TESTNET * Update OPTIMISTIC to OPTIMISM Also change FANTOM, MOON_MOONRIVER, OLIMPUS * Update name CELO to CELO_MAINNET * Update name BOBA_NETWORK_BOBABEAM, BOBA_RINKEBY, MOON_MOONBEAM and OKEXCHAIN * Updated name to several chains following ethereum list * Update AURORA to AURORA_MAINNET Rever ganache chain --- gnosis/eth/clients/blockscout_client.py | 50 +- gnosis/eth/clients/etherscan_client.py | 40 +- gnosis/eth/ethereum_network.py | 1034 ++++++++++------- gnosis/eth/multicall.py | 14 +- gnosis/eth/oracles/superfluid.py | 8 +- gnosis/eth/oracles/sushiswap.py | 22 +- .../tests/clients/test_blockscout_client.py | 2 +- gnosis/protocol/gnosis_protocol_api.py | 4 +- .../tests/test_gnosis_protocol_api.py | 2 +- gnosis/safe/api/transaction_service_api.py | 16 +- scripts/chainlist/chains.py | 26 +- 11 files changed, 743 insertions(+), 475 deletions(-) diff --git a/gnosis/eth/clients/blockscout_client.py b/gnosis/eth/clients/blockscout_client.py index 31fb6ac51..c16a0d3b0 100644 --- a/gnosis/eth/clients/blockscout_client.py +++ b/gnosis/eth/clients/blockscout_client.py @@ -19,43 +19,43 @@ class BlockScoutConfigurationProblem(BlockscoutClientException): class BlockscoutClient: NETWORK_WITH_URL = { - EthereumNetwork.XDAI: "https://blockscout.com/poa/xdai/", - EthereumNetwork.MATIC: "https://polygon-explorer-mainnet.chainstacklabs.com/", + EthereumNetwork.GNOSIS: "https://blockscout.com/poa/xdai/", + EthereumNetwork.POLYGON: "https://polygon-explorer-mainnet.chainstacklabs.com/", EthereumNetwork.MUMBAI: "https://polygon-explorer-mumbai.chainstacklabs.com/", EthereumNetwork.ENERGY_WEB_CHAIN: "https://explorer.energyweb.org/", - EthereumNetwork.VOLTA: "https://volta-explorer.energyweb.org/", - EthereumNetwork.OLYMPUS: "https://explorer.polis.tech", - EthereumNetwork.BOBA_NETWORK_BOBABEAM: "https://blockexplorer.bobabeam.boba.network/", - EthereumNetwork.BOBA_RINKEBY: "https://blockexplorer.rinkeby.boba.network/", - EthereumNetwork.BOBA: "https://blockexplorer.boba.network/", - EthereumNetwork.GATHER_DEVNET: "https://devnet-explorer.gather.network/", - EthereumNetwork.GATHER_TESTNET: "https://testnet-explorer.gather.network/", - EthereumNetwork.GATHER_MAINNET: "https://explorer.gather.network/", - EthereumNetwork.METIS_TESTNET: "https://stardust-explorer.metis.io/", + EthereumNetwork.ENERGY_WEB_VOLTA_TESTNET: "https://volta-explorer.energyweb.org/", + EthereumNetwork.POLIS_MAINNET: "https://explorer.polis.tech", + EthereumNetwork.BOBABEAM: "https://blockexplorer.bobabeam.boba.network/", + EthereumNetwork.BOBA_NETWORK_RINKEBY_TESTNET: "https://blockexplorer.rinkeby.boba.network/", + EthereumNetwork.BOBA_NETWORK: "https://blockexplorer.boba.network/", + EthereumNetwork.GATHER_DEVNET_NETWORK: "https://devnet-explorer.gather.network/", + EthereumNetwork.GATHER_TESTNET_NETWORK: "https://testnet-explorer.gather.network/", + EthereumNetwork.GATHER_MAINNET_NETWORK: "https://explorer.gather.network/", + EthereumNetwork.METIS_STARDUST_TESTNET: "https://stardust-explorer.metis.io/", EthereumNetwork.METIS_GOERLI_TESTNET: "https://goerli.explorer.metisdevops.link/", - EthereumNetwork.METIS: "https://andromeda-explorer.metis.io/", + EthereumNetwork.METIS_ANDROMEDA_MAINNET: "https://andromeda-explorer.metis.io/", EthereumNetwork.FUSE_MAINNET: "https://explorer.fuse.io/", - EthereumNetwork.VELAS_MAINNET: "https://evmexplorer.velas.com/", - EthereumNetwork.REI_MAINNET: "https://scan.rei.network/", - EthereumNetwork.REI_TESTNET: "https://scan-test.rei.network/", - EthereumNetwork.METER: "https://scan.meter.io/", + EthereumNetwork.VELAS_EVM_MAINNET: "https://evmexplorer.velas.com/", + EthereumNetwork.REI_NETWORK: "https://scan.rei.network/", + EthereumNetwork.REI_CHAIN_TESTNET: "https://scan-test.rei.network/", + EthereumNetwork.METER_MAINNET: "https://scan.meter.io/", EthereumNetwork.METER_TESTNET: "https://scan-warringstakes.meter.io/", - EthereumNetwork.GODWOKEN_TESTNET: "https://v1.betanet.gwscan.com/", - EthereumNetwork.GODWOKEN: "https://v1.gwscan.com/", + EthereumNetwork.GODWOKEN_TESTNET_V1: "https://v1.betanet.gwscan.com/", + EthereumNetwork.GODWOKEN_MAINNET: "https://v1.gwscan.com/", EthereumNetwork.VENIDIUM_TESTNET: "https://evm-testnet.venidiumexplorer.com/", - EthereumNetwork.VENIDIUM: "https://evm.venidiumexplorer.com/", - EthereumNetwork.KLAY_BAOBAB: "https://baobab.scope.klaytn.com/", - EthereumNetwork.KLAY_CYPRESS: "https://scope.klaytn.com/", - EthereumNetwork.ACA: "https://blockscout.acala.network/", + EthereumNetwork.VENIDIUM_MAINNET: "https://evm.venidiumexplorer.com/", + EthereumNetwork.KLAYTN_TESTNET_BAOBAB: "https://baobab.scope.klaytn.com/", + EthereumNetwork.KLAYTN_MAINNET_CYPRESS: "https://scope.klaytn.com/", + EthereumNetwork.ACALA_NETWORK: "https://blockscout.acala.network/", EthereumNetwork.KARURA_NETWORK_TESTNET: "https://blockscout.karura.network/", EthereumNetwork.ACALA_NETWORK_TESTNET: "https://blockscout.mandala.acala.network/", EthereumNetwork.ASTAR: "https://blockscout.com/astar/", - EthereumNetwork.EVMOS_MAINNET: "https://evm.evmos.org", + EthereumNetwork.EVMOS: "https://evm.evmos.org", EthereumNetwork.EVMOS_TESTNET: "https://evm.evmos.dev", - EthereumNetwork.RABBIT: "https://rabbit.analogscan.com", + EthereumNetwork.RABBIT_ANALOG_TESTNET_CHAIN: "https://rabbit.analogscan.com", EthereumNetwork.KCC_MAINNET: "https://scan.kcc.io/", EthereumNetwork.KCC_TESTNET: "https://scan-testnet.kcc.network/", - EthereumNetwork.ARBITRUM: "https://explorer.arbitrum.io", + EthereumNetwork.ARBITRUM_ONE: "https://explorer.arbitrum.io", EthereumNetwork.ARBITRUM_NOVA: "https://nova-explorer.arbitrum.io", EthereumNetwork.ARBITRUM_GOERLI: "https://goerli-rollup-explorer.arbitrum.io", } diff --git a/gnosis/eth/clients/etherscan_client.py b/gnosis/eth/clients/etherscan_client.py index 6f0065151..2de50bbba 100644 --- a/gnosis/eth/clients/etherscan_client.py +++ b/gnosis/eth/clients/etherscan_client.py @@ -28,19 +28,19 @@ class EtherscanClient: EthereumNetwork.ROPSTEN: "https://ropsten.etherscan.io", EthereumNetwork.GOERLI: "https://goerli.etherscan.io", EthereumNetwork.KOVAN: "https://kovan.etherscan.io", - EthereumNetwork.BINANCE: "https://bscscan.com", - EthereumNetwork.MATIC: "https://polygonscan.com", - EthereumNetwork.OPTIMISTIC: "https://optimistic.etherscan.io", - EthereumNetwork.ARBITRUM: "https://arbiscan.io", + EthereumNetwork.BINANCE_SMART_CHAIN_MAINNET: "https://bscscan.com", + EthereumNetwork.POLYGON: "https://polygonscan.com", + EthereumNetwork.OPTIMISM: "https://optimistic.etherscan.io", + EthereumNetwork.ARBITRUM_ONE: "https://arbiscan.io", EthereumNetwork.ARBITRUM_NOVA: "https://nova.arbiscan.io", EthereumNetwork.ARBITRUM_GOERLI: "https://goerli.arbiscan.io", - EthereumNetwork.AVALANCHE: "https://snowtrace.io", - EthereumNetwork.MOON_MOONBEAM: "https://moonscan.io", - EthereumNetwork.MOON_MOONRIVER: "https://moonriver.moonscan.io", - EthereumNetwork.MOON_MOONBASE: "https://moonbase.moonscan.io", - EthereumNetwork.CRONOS_MAINNET: "https://cronoscan.com", + EthereumNetwork.AVALANCHE_C_CHAIN: "https://snowtrace.io", + EthereumNetwork.MOONBEAM: "https://moonscan.io", + EthereumNetwork.MOONRIVER: "https://moonriver.moonscan.io", + EthereumNetwork.MOONBASE_ALPHA: "https://moonbase.moonscan.io", + EthereumNetwork.CRONOS_MAINNET_BETA: "https://cronoscan.com", EthereumNetwork.CRONOS_TESTNET: "https://testnet.cronoscan.com", - EthereumNetwork.CELO: "https://celoscan.io", + EthereumNetwork.CELO_MAINNET: "https://celoscan.io", } NETWORK_WITH_API_URL = { @@ -49,19 +49,19 @@ class EtherscanClient: EthereumNetwork.ROPSTEN: "https://api-ropsten.etherscan.io", EthereumNetwork.GOERLI: "https://api-goerli.etherscan.io/", EthereumNetwork.KOVAN: "https://api-kovan.etherscan.io", - EthereumNetwork.BINANCE: "https://api.bscscan.com", - EthereumNetwork.MATIC: "https://api.polygonscan.com", - EthereumNetwork.OPTIMISTIC: "https://api-optimistic.etherscan.io", - EthereumNetwork.ARBITRUM: "https://api.arbiscan.io", + EthereumNetwork.BINANCE_SMART_CHAIN_MAINNET: "https://api.bscscan.com", + EthereumNetwork.POLYGON: "https://api.polygonscan.com", + EthereumNetwork.OPTIMISM: "https://api-optimistic.etherscan.io", + EthereumNetwork.ARBITRUM_ONE: "https://api.arbiscan.io", EthereumNetwork.ARBITRUM_NOVA: "https://api-nova.arbiscan.io", EthereumNetwork.ARBITRUM_GOERLI: "https://api-goerli.arbiscan.io", - EthereumNetwork.AVALANCHE: "https://api.snowtrace.io", - EthereumNetwork.MOON_MOONBEAM: "https://api-moonbeam.moonscan.io", - EthereumNetwork.MOON_MOONRIVER: "https://api-moonriver.moonscan.io", - EthereumNetwork.MOON_MOONBASE: "https://api-moonbase.moonscan.io", - EthereumNetwork.CRONOS_MAINNET: "https://api.cronoscan.com", + EthereumNetwork.AVALANCHE_C_CHAIN: "https://api.snowtrace.io", + EthereumNetwork.MOONBEAM: "https://api-moonbeam.moonscan.io", + EthereumNetwork.MOONRIVER: "https://api-moonriver.moonscan.io", + EthereumNetwork.MOONBASE_ALPHA: "https://api-moonbase.moonscan.io", + EthereumNetwork.CRONOS_MAINNET_BETA: "https://api.cronoscan.com", EthereumNetwork.CRONOS_TESTNET: "https://api-testnet.cronoscan.com", - EthereumNetwork.CELO: "https://api.celoscan.io", + EthereumNetwork.CELO_MAINNET: "https://api.celoscan.io", } HTTP_HEADERS = { "User-Agent": "curl/7.77.0", diff --git a/gnosis/eth/ethereum_network.py b/gnosis/eth/ethereum_network.py index 6193ef50a..7d89a1f97 100644 --- a/gnosis/eth/ethereum_network.py +++ b/gnosis/eth/ethereum_network.py @@ -14,470 +14,718 @@ class EthereumNetwork(Enum): UNKNOWN = -1 OLYMPIC = 0 MAINNET = 1 + EXPANSE_NETWORK = 2 ROPSTEN = 3 RINKEBY = 4 GOERLI = 5 - ETC_KOTTI = 6 - TCH = 7 - UBQ = 8 - OPTIMISTIC = 10 - META = 11 - META_TESTNET = 12 - DIODE_TESTNET = 13 - FLR_FLARE = 14 - DIODE = 15 - FLR_COSTON = 16 - TCH_THAIFI = 17 - TST_TESTNET = 18 - SGB_SONGBIRD = 19 - BOBA_RINKEBY = 28 - RSK = 30 + ETHEREUM_CLASSIC_TESTNET_KOTTI = 6 + THAICHAIN = 7 + UBIQ = 8 + UBIQ_NETWORK_TESTNET = 9 + OPTIMISM = 10 + METADIUM_MAINNET = 11 + METADIUM_TESTNET = 12 + DIODE_TESTNET_STAGING = 13 + FLARE_MAINNET = 14 + DIODE_PRENET = 15 + FLARE_TESTNET_COSTON = 16 + THAICHAIN_2_0_THAIFI = 17 + THUNDERCORE_TESTNET = 18 + SONGBIRD_CANARY_NETWORK = 19 + ELASTOS_SMART_CHAIN = 20 + ELASTOS_SMART_CHAIN_TESTNET = 21 + ELA_DID_SIDECHAIN_MAINNET = 22 + ELA_DID_SIDECHAIN_TESTNET = 23 + KARDIACHAIN_MAINNET = 24 + CRONOS_MAINNET_BETA = 25 + GENESIS_L1_TESTNET = 26 + SHIBACHAIN = 27 + BOBA_NETWORK_RINKEBY_TESTNET = 28 + GENESIS_L1 = 29 + RSK_MAINNET = 30 RSK_TESTNET = 31 - GOOD_TESTNET = 32 - GOOD = 33 - TBWG = 35 - VAL = 38 - TLOS = 40 - TLOS_TESTNET = 41 + GOODDATA_TESTNET = 32 + GOODDATA_MAINNET = 33 + DITHEREUM_TESTNET = 34 + TBWG_CHAIN = 35 + DXCHAIN_MAINNET = 36 + SEEDCOIN_NETWORK = 37 + VALORBIT = 38 + UNICORN_ULTRA_TESTNET = 39 + TELOS_EVM_MAINNET = 40 + TELOS_EVM_TESTNET = 41 KOVAN = 42 - PANGOLIN_FREE_TESTNET = 43 - CRAB_CRAB_NETWORK = 44 - XDC = 50 - TXDC_TESTNET = 51 - CSC = 52 - CSC_TESTNET = 53 - BINANCE = 56 - SYS = 57 - ONTOLOGY = 58 - EOS = 59 - GO = 60 - ELLA = 64 + DARWINIA_PANGOLIN_TESTNET = 43 + DARWINIA_CRAB_NETWORK = 44 + DARWINIA_PANGORO_TESTNET = 45 + DARWINIA_NETWORK = 46 + ENNOTHEM_MAINNET_PROTEROZOIC = 48 + ENNOTHEM_TESTNET_PIONEER = 49 + XINFIN_XDC_NETWORK = 50 + XDC_APOTHEM_NETWORK = 51 + COINEX_SMART_CHAIN_MAINNET = 52 + COINEX_SMART_CHAIN_TESTNET = 53 + OPENPIECE_MAINNET = 54 + ZYX_MAINNET = 55 + BINANCE_SMART_CHAIN_MAINNET = 56 + SYSCOIN_MAINNET = 57 + ONTOLOGY_MAINNET = 58 + EOS_MAINNET = 59 + GOCHAIN = 60 + ETHEREUM_CLASSIC_MAINNET = 61 + ETHEREUM_CLASSIC_TESTNET_MORDEN = 62 + ETHEREUM_CLASSIC_TESTNET_MORDOR = 63 + ELLAISM = 64 OKEXCHAIN_TESTNET = 65 - OKEXCHAIN = 66 - DBM_TESTNET = 67 - SOTER = 68 + OKXCHAIN_MAINNET = 66 + DBCHAIN_TESTNET = 67 + SOTERONE_MAINNET = 68 + OPTIMISM_KOVAN = 69 + HOO_SMART_CHAIN = 70 + CONFLUX_ESPACE_TESTNET = 71 + DXCHAIN_TESTNET = 72 + FNCY = 73 + IDCHAIN_MAINNET = 74 + DECIMAL_SMART_CHAIN_MAINNET = 75 MIX = 76 - POA_SOKOL = 77 - PC = 78 + POA_NETWORK_SOKOL = 77 + PRIMUSCHAIN_MAINNET = 78 + ZENITH_MAINNET = 79 GENECHAIN = 80 - METER = 82 + ZENITH_TESTNET_VILNIUS = 81 + METER_MAINNET = 82 METER_TESTNET = 83 - GTTEST_TESTNET = 85 - GT = 86 - TOMO = 88 - EOS_TESTNET = 95 - BSC_CHAPEL = 97 - POA_CORE = 99 - XDAI = 100 + GATECHAIN_TESTNET = 85 + GATECHAIN_MAINNET = 86 + NOVA_NETWORK = 87 + TOMOCHAIN = 88 + TOMOCHAIN_TESTNET = 89 + GARIZON_STAGE0 = 90 + GARIZON_STAGE1 = 91 + GARIZON_STAGE2 = 92 + GARIZON_STAGE3 = 93 + CRYPTOKYLIN_TESTNET = 95 + NEXT_SMART_CHAIN = 96 + BINANCE_SMART_CHAIN_TESTNET = 97 + POA_NETWORK_CORE = 99 + GNOSIS = 100 + ETHERINC = 101 WEB3GAMES_TESTNET = 102 - VELAS_MAINNET = 106 - TT = 108 - XPR_TESTNET = 110 - ETL = 111 + KAIBA_LIGHTNING_CHAIN_TESTNET = 104 + WEB3GAMES_DEVNET = 105 + VELAS_EVM_MAINNET = 106 + NEBULA_TESTNET = 107 + THUNDERCORE_MAINNET = 108 + PROTON_TESTNET = 110 + ETHERLITE_CHAIN = 111 + DEHVO = 113 + FLARE_TESTNET_COSTON2 = 114 + DEBANK_TESTNET = 115 + DEBANK_MAINNET = 116 FUSE_MAINNET = 122 - FUSE_SPARK = 123 - DWU = 124 - FETH_FACTORY127 = 127 - HECO = 128 - MATIC = 137 - DAX = 142 - PHT_SIRIUS = 162 - PHT = 163 - RESIL_TESTNET = 172 - AOX_XDAI = 200 - ENERGY_WEB_CHAIN = 246 - FANTOM = 250 - HECO_TESTNET = 256 - HPB = 269 - BOBA = 288 - KCC_TESTNET = 322 - THETA = 361 - THETA_TESTNET_SAPPHIRE = 363 - THETA_TESTNET_AMBER = 364 - THETA_TESTNET = 365 - CRO = 385 - RUPX = 499 - TAO_CORE = 558 - METIS_TESTNET = 588 - MACA_TESTNET = 595 - METIS_GOERLI_TESTNET = 599 - KAR = 686 - FETH_FACTORY127_TESTNET = 721 - CHEAPETH_CHEAPNET = 777 - ACA = 787 - HAIC = 803 - WAN = 888 - YETI = 977 - WAN_TESTNET = 999 - KLAY_BAOBAB = 1001 - NEW_TESTNET = 1007 - EURUS_MAINNET = 1008 - EVC_EVRICE = 1010 - NEW = 1012 - SAKURA = 1022 - CLOVER_TESTNET = 1023 - CLOVER = 1024 - METIS = 1088 - MATH = 1139 - MATH_TESTNET = 1140 - MOON_MOONBEAM = 1284 - MOON_MOONRIVER = 1285 - MOON_MOONROCK = 1286 - MOON_MOONBASE = 1287 - MOON_MOONSHADOW = 1288 - GANACHE = 1337 - CATECHAIN = 1618 - RABBIT = 1807 - EURUS_TESTNET = 1984 - EGEM = 1987 - PUBLICMINT_TESTNET = 2019 - PUBLICMINT_MAINNET = 2020 - EDG = 2021 - EDG_BERESHEET = 2022 - KORTHO = 2559 - FANTOM_TESTNET = 4002 - IOTEX_IO = 4689 - IOTEX_IO_TESTNET = 4690 - VENIDIUM_TESTNET = 4918 - VENIDIUM = 4919 - ESN = 5197 - SYS_TESTNET = 5700 - ONTOLOGY_TESTNET = 5851 - RBD = 5869 - SHYFT = 7341 - MDGL_TESTNET = 8029 - GENECHAIN_ADENINE = 8080 - KLAY_CYPRESS = 8217 - KORTHO_TEST = 8285 - OLO = 8723 - OLO_TESTNET = 8724 - BLOXBERG = 8995 - SMARTBCH = 10000 - SMARTBCHTEST_TESTNET = 10001 - GEN = 10101 - SHYFT_TESTNET = 11437 - REI_TESTNET = 12357 - MTT = 16000 - MTTTEST_DEVNET = 16001 - GO_TESTNET = 31337 - FSN = 32659 - NRG = 39797 - ARBITRUM = 42161 - ARBITRUM_NOVA = 42170 - CELO = 42220 - ATH_ATHEREUM = 43110 - AVALANCHE = 43114 - CELO_ALFAJORES = 44787 - REI_MAINNET = 47805 - NRG_TESTNET = 49797 - CELO_BAKLAVA = 62320 - GODWOKEN_TESTNET = 71401 - GODWOKEN = 71402 - VOLTA = 73799 - AKA = 200625 - ARTIS_SIGMA1 = 246529 - ARTIS_TAU1 = 246785 - SPARTA_TESTNET = 333888 - OLYMPUS = 333999 - ARBITRUM_TESTNET = 421611 - ARBITRUM_GOERLI = 421613 - ETHO = 1313114 - XERO = 1313500 - MUSIC = 7762959 - MUMBAI = 80001 - PEP_TESTNET = 13371337 - ILT = 18289463 - QKI = 20181205 - AUX = 28945486 - JOYS = 35855456 - AQUA = 61717561 - TOYS_TESTNET = 99415706 - OLT = 311752642 - IPOS = 1122334455 - AURORA = 1313161554 - AURORA_TESTNET = 1313161555 - AURORA_BETANET = 1313161556 - PIRL = 3125659152 - OLT_TESTNET = 4216137055 - PALM_TESTNET = 11297108099 - PALM = 11297108109 - GATHER_DEVNET = 486217935 - GATHER_TESTNET = 356256156 - GATHER_MAINNET = 192837465 - EVMOS_TESTNET = 9000 - EVMOS_MAINNET = 9001 - ASTAR = 592 - SHIDEN = 336 - CRONOS_MAINNET = 25 - CRONOS_TESTNET = 338 - QUARKCHAIN_MAINNET_ROOT = 100000 - QUARKCHAIN_MAINNET_SHARD_0 = 100001 - QUARKCHAIN_MAINNET_SHARD_1 = 100002 - QUARKCHAIN_MAINNET_SHARD_2 = 100003 - QUARKCHAIN_MAINNET_SHARD_3 = 100004 - QUARKCHAIN_MAINNET_SHARD_4 = 100005 - QUARKCHAIN_MAINNET_SHARD_5 = 100006 - QUARKCHAIN_MAINNET_SHARD_6 = 100007 - QUARKCHAIN_MAINNET_SHARD_7 = 100008 - QUARKCHAIN_DEVNET_ROOT = 110000 - QUARKCHAIN_DEVNET_SHARD_0 = 110001 - QUARKCHAIN_DEVNET_SHARD_1 = 110002 - QUARKCHAIN_DEVNET_SHARD_2 = 110003 - QUARKCHAIN_DEVNET_SHARD_3 = 110004 - QUARKCHAIN_DEVNET_SHARD_4 = 110005 - QUARKCHAIN_DEVNET_SHARD_5 = 110006 - QUARKCHAIN_DEVNET_SHARD_6 = 110007 - QUARKCHAIN_DEVNET_SHARD_7 = 110008 - CONFLUX_ESPACE = 1030 - BROCHAIN_MAINNET = 108801 - WAGMI = 11111 - SEPOLIA = 11155111 - IORA_CHAIN = 1197 - SINGULARITY_ZERO_MAINNET = 12052 - POPCATEUM_MAINNET = 1213 - ENTERCHAIN_MAINNET = 1214 - OM_CHAIN_MAINNET = 1246 + FUSE_SPARKNET = 123 + DECENTRALIZED_WEB_MAINNET = 124 + OYCHAIN_TESTNET = 125 OYCHAIN_MAINNET = 126 - HALO_MAINNET = 1280 - PHOENIX_MAINNET = 13381 - SHERPAX_MAINNET = 1506 - BTACHAIN = 1657 - HARMONY_MAINNET_SHARD_0 = 1666600000 - HARMONY_MAINNET_SHARD_1 = 1666600001 - HARMONY_MAINNET_SHARD_2 = 1666600002 - HARMONY_MAINNET_SHARD_3 = 1666600003 + FACTORY_127_MAINNET = 127 + HUOBI_ECO_CHAIN_MAINNET = 128 + ALYX_CHAIN_TESTNET = 135 + POLYGON = 137 + OPENPIECE_TESTNET = 141 + DAX_CHAIN = 142 + PHI_NETWORK_V2 = 144 + ARMONIA_EVA_CHAIN_MAINNET = 160 + ARMONIA_EVA_CHAIN_TESTNET = 161 + LIGHTSTREAMS_TESTNET = 162 + LIGHTSTREAMS_MAINNET = 163 + AIOZ_NETWORK = 168 + HOO_SMART_CHAIN_TESTNET = 170 + LATAM_BLOCKCHAIN_RESIL_TESTNET = 172 + AME_CHAIN_MAINNET = 180 SEELE_MAINNET = 186 BMC_MAINNET = 188 - NTITY_MAINNET = 197710212030 - BTCIX_NETWORK = 19845 + BMC_TESTNET = 189 + CRYPTO_EMERGENCY = 193 BITTORRENT_CHAIN_MAINNET = 199 - ELASTOS_SMART_CHAIN = 20 - RANGERS_PROTOCOL_MAINNET = 2025 - DATAHOPPER = 2021121117 - ECOBALL_MAINNET = 2100 - OMCHAIN_MAINNET = 21816 - ELA_DID_SIDECHAIN_MAINNET = 22 - EVANESCO_MAINNET = 2213 - KAVA_EVM = 2222 - DITHEREUM_MAINNET = 24 - NEON_EVM_DEVNET = 245022926 - NEON_EVM_MAINNET = 245022934 + ARBITRUM_ON_XDAI = 200 + MOAC_TESTNET = 201 + FREIGHT_TRUST_NETWORK = 211 + MAP_MAKALU = 212 + SIRIUSNET_V2 = 217 + SOTERONE_MAINNET_OLD = 218 + PERMISSION = 222 + LACHAIN_MAINNET = 225 + LACHAIN_TESTNET = 226 + ENERGY_WEB_CHAIN = 246 + OASYS_MAINNET = 248 + FANTOM_OPERA = 250 + HUOBI_ECO_CHAIN_TESTNET = 256 SETHEUM = 258 - EZCHAIN_C_CHAIN_MAINNET = 2612 - SHIBACHAIN = 27 - SOCIAL_SMART_CHAIN_MAINNET = 281121 - GENESIS_L1 = 29 - BITGERT_MAINNET = 32520 + SUR_BLOCKCHAIN_NETWORK = 262 + HIGH_PERFORMANCE_BLOCKCHAIN = 269 + ZKSYNC_ALPHA_TESTNET = 280 + BOBA_NETWORK = 288 + OPTIMISM_ON_GNOSIS = 300 + BOBAOPERA = 301 + OMAX_MAINNET = 311 + FILECOIN_MAINNET = 314 + KCC_MAINNET = 321 + KCC_TESTNET = 322 + ZKSYNC_V2 = 324 WEB3Q_MAINNET = 333 + DFK_CHAIN_TEST = 335 + SHIDEN = 336 + CRONOS_TESTNET = 338 + THETA_MAINNET = 361 + THETA_SAPPHIRE_TESTNET = 363 + THETA_AMBER_TESTNET = 364 + THETA_TESTNET = 365 PULSECHAIN_MAINNET = 369 - BITTEX_MAINNET = 3690 + LISINSKI = 385 + HYPERONCHAIN_TESTNET = 400 SX_NETWORK_MAINNET = 416 - PHI_NETWORK = 4181 - PEGGLECOIN = 42069 - EMERALD_PARATIME_MAINNET = 42262 - AUTOBAHN_NETWORK = 45000 + OPTIMISM_GOERLI_TESTNET = 420 + ZEETH_CHAIN = 427 + RUPAYA = 499 + CAMINO_C_CHAIN = 500 + COLUMBUS_TEST_NETWORK = 501 DOUBLE_A_CHAIN_MAINNET = 512 - UZMI_NETWORK_MAINNET = 5315 - DFK_CHAIN = 53935 - ZYX_MAINNET = 55 + DOUBLE_A_CHAIN_TESTNET = 513 + GEAR_ZERO_NETWORK_MAINNET = 516 + XT_SMART_CHAIN_MAINNET = 520 + FIRECHAIN_MAINNET = 529 + F_XCORE_MAINNET_NETWORK = 530 + CANDLE = 534 VELA1_CHAIN_MAINNET = 555 - NAHMII_MAINNET = 5551 - REI_CHAIN_MAINNET = 55555 - MOLEREUM_NETWORK = 6022140761023 - ECREDITS_MAINNET = 63000 - PIXIE_CHAIN_MAINNET = 6626 - HOO_SMART_CHAIN = 70 - THINKIUM_MAINNET_CHAIN_0 = 70000 - THINKIUM_MAINNET_CHAIN_1 = 70001 - THINKIUM_MAINNET_CHAIN_2 = 70002 - THINKIUM_MAINNET_CHAIN_103 = 70103 + TAO_NETWORK = 558 + DOGECHAIN_TESTNET = 568 + METIS_STARDUST_TESTNET = 588 + ASTAR = 592 + ACALA_MANDALA_TESTNET = 595 + KARURA_NETWORK_TESTNET = 596 + ACALA_NETWORK_TESTNET = 597 + METIS_GOERLI_TESTNET = 599 + MESHNYAN_TESTNET = 600 + SX_NETWORK_TESTNET = 647 + PIXIE_CHAIN_TESTNET = 666 + KARURA_NETWORK = 686 + STAR_SOCIAL_TESTNET = 700 BLOCKCHAIN_STATION_MAINNET = 707 - IDCHAIN_MAINNET = 74 - RISE_OF_THE_WARBOTS_TESTNET = 7777 - ZENITH_MAINNET = 79 - TELEPORT = 8000 - NOVA_NETWORK = 87 + BLOCKCHAIN_STATION_TESTNET = 708 + LYCAN_CHAIN = 721 + VENTION_SMART_CHAIN_TESTNET = 741 + QL1 = 766 + OPENCHAIN_TESTNET = 776 + CHEAPETH = 777 + ACALA_NETWORK = 787 + AEROCHAIN_TESTNET = 788 + LUCID_BLOCKCHAIN = 800 + HAIC = 803 + PORTAL_FANTASY_CHAIN_TEST = 808 + QITMEER = 813 + CALLISTO_MAINNET = 820 + CALLISTO_TESTNET_DEPRECATED = 821 + TARAXA_MAINNET = 841 + TARAXA_TESTNET = 842 + ZEETH_CHAIN_DEV = 859 + FANTASIA_CHAIN_MAINNET = 868 + DEXIT_NETWORK = 877 AMBROS_CHAIN_MAINNET = 880 - VISION_MAINNET = 888888 - GENESIS_COIN = 9100 - ELUVIO_CONTENT_FABRIC = 955305 - GARIZON_STAGE0 = 90 - GARIZON_STAGE1 = 91 - GARIZON_STAGE2 = 92 - GARIZON_STAGE3 = 93 - NEXT_SMART_CHAIN = 96 + WANCHAIN = 888 + GARIZON_TESTNET_STAGE0 = 900 + GARIZON_TESTNET_STAGE1 = 901 + GARIZON_TESTNET_STAGE2 = 902 + GARIZON_TESTNET_STAGE3 = 903 + PORTAL_FANTASY_CHAIN = 909 + RINIA_TESTNET = 917 + PULSECHAIN_TESTNET = 940 + PULSECHAIN_TESTNET_V2B = 941 + PULSECHAIN_TESTNET_V3 = 942 + MUNODE_TESTNET = 956 + OORT_MAINNET = 970 + OORT_HUYGENS = 971 + OORT_ASCRAEUS = 972 + NEPAL_BLOCKCHAIN_NETWORK = 977 + TOP_MAINNET_EVM = 980 + MEMO_SMART_CHAIN_MAINNET = 985 + TOP_MAINNET = 989 LUCKY_NETWORK = 998 - UB_SMART_CHAIN = 99999 - ETHEREUM_CLASSIC_MAINNET = 61 - ETHERINC = 101 - FREIGHT_TRUST_NETWORK = 211 - PERMISSION = 222 - SUR_BLOCKCHAIN_NETWORK = 262 - KCC_MAINNET = 321 - CALLISTO_MAINNET = 820 - WORLD_TRADE_TECHNICAL_BLOCKCHAIN = 1202 - ATHEIOS = 1620 - TESLAFUNDS = 1856 - WEBCHAIN = 24484 - MINTME_COM_COIN = 24734 - ETHERSOCIAL_NETWORK = 31102 - CRYSTALEUM = 103090 - ALAYA_MAINNET = 201018 - PLATON_MAINNET = 210425 + WANCHAIN_TESTNET = 999 + GTON_MAINNET = 1000 + KLAYTN_TESTNET_BAOBAB = 1001 + T_EKTA = 1004 + NEWTON_TESTNET = 1007 + EURUS_MAINNET = 1008 + EVRICE_NETWORK = 1010 + NEWTON = 1012 + SAKURA = 1022 + CLOVER_TESTNET = 1023 + CLV_PARACHAIN = 1024 BITTORRENT_CHAIN_TESTNET = 1028 - KAIBA_LIGHTNING_CHAIN_TESTNET = 104 - WEB3GAMES_DEVNET = 105 - NEBULA_TESTNET = 107 - CRYPTOCOINPAY = 10823 - QUADRANS_BLOCKCHAIN = 10946 - QUADRANS_BLOCKCHAIN_TESTNET = 10947 + CONFLUX_ESPACE = 1030 + PROXY_NETWORK_TESTNET = 1031 + BRONOS_TESTNET = 1038 + BRONOS_MAINNET = 1039 + METIS_ANDROMEDA_MAINNET = 1088 + MOAC_MAINNET = 1099 + WEMIX3_0_MAINNET = 1111 + WEMIX3_0_TESTNET = 1112 + CORE_BLOCKCHAIN_MAINNET = 1116 + DEFICHAIN_EVM_NETWORK_MAINNET = 1130 + DEFICHAIN_EVM_NETWORK_TESTNET = 1131 + MATHCHAIN = 1139 + MATHCHAIN_TESTNET = 1140 + SMART_HOST_TEKNOLOJI_TESTNET = 1177 + IORA_CHAIN = 1197 EVANESCO_TESTNET = 1201 - SINGULARITY_ZERO_TESTNET = 12051 - OYCHAIN_TESTNET = 125 - BOBA_NETWORK_BOBABEAM = 1294 - BOBA_NETWORK_BOBABASE = 1297 - BOBA_AVAX_L2 = 43288 - ETND_CHAIN_MAINNETS = 131419 + WORLD_TRADE_TECHNICAL_CHAIN_MAINNET = 1202 + POPCATEUM_MAINNET = 1213 + ENTERCHAIN_MAINNET = 1214 + EXZO_NETWORK_MAINNET = 1229 + ULTRON_TESTNET = 1230 + ULTRON_MAINNET = 1231 + STEP_NETWORK = 1234 + OM_PLATFORM_MAINNET = 1246 + CIC_CHAIN_TESTNET = 1252 + HALO_MAINNET = 1280 + MOONBEAM = 1284 + MOONRIVER = 1285 + MOONROCK_OLD = 1286 + MOONBASE_ALPHA = 1287 + MOONROCK = 1288 + BOBABEAM = 1294 + BOBABASE_TESTNET = 1297 + DOS_FUJI_SUBNET = 1311 + ALYX_MAINNET = 1314 AITD_MAINNET = 1319 AITD_TESTNET = 1320 - KINTSUGI = 1337702 - KILN = 1337802 - OPENPIECE_TESTNET = 141 + GANACHE = 1337 + CIC_CHAIN_MAINNET = 1353 + POLYGON_ZKEVM_TESTNET = 1402 + CTEX_SCAN_BLOCKCHAIN = 1455 + SHERPAX_MAINNET = 1506 SHERPAX_TESTNET = 1507 - HARMONY_TESTNET_SHARD_0 = 1666700000 - HARMONY_TESTNET_SHARD_1 = 1666700001 - HARMONY_TESTNET_SHARD_2 = 1666700002 - HARMONY_TESTNET_SHARD_3 = 1666700003 - AIOZ_NETWORK = 168 + BEAGLE_MESSAGING_CHAIN = 1515 + CATECOIN_CHAIN_MAINNET = 1618 + ATHEIOS = 1620 + BTACHAIN = 1657 LUDAN_MAINNET = 1688 - IVAR_CHAIN_TESTNET = 16888 - HOO_SMART_CHAIN_TESTNET = 170 - AME_CHAIN_MAINNET = 180 + ANYTYPE_EVM_CHAIN = 1701 + TBSI_MAINNET = 1707 + TBSI_TESTNET = 1708 + KERLEANO = 1804 + RABBIT_ANALOG_TESTNET_CHAIN = 1807 CUBE_CHAIN_MAINNET = 1818 CUBE_CHAIN_TESTNET = 1819 - BMC_TESTNET = 189 + TESLAFUNDS = 1856 + GITSHOCK_CARTENZ_TESTNET = 1881 BON_NETWORK = 1898 - CRYPTO_EMERGENCY = 193 - HARADEV_TESTNET = 197710212031 + ONUS_CHAIN_TESTNET = 1945 + D_CHAIN_MAINNET = 1951 + ATELIER = 1971 + ONUS_CHAIN_MAINNET = 1975 + EURUS_TESTNET = 1984 + ETHERGEM = 1987 + EKTA = 1994 + EDEXA_TESTNET = 1995 + DOGECHAIN_MAINNET = 2000 MILKOMEDA_C1_MAINNET = 2001 - MILKOMEDA_C1_TESTNET = 200101 MILKOMEDA_A1_MAINNET = 2002 - MILKOMEDA_A1_TESTNET = 200202 - CLOUDWALK_MAINNET = 2009 CLOUDWALK_TESTNET = 2008 - ALAYA_DEV_TESTNET = 201030 - SMARTMESH_MAINNET = 20180430 + CLOUDWALK_MAINNET = 2009 + MAINNETZ_MAINNET = 2016 + PUBLICMINT_DEVNET = 2018 + PUBLICMINT_TESTNET = 2019 + PUBLICMINT_MAINNET = 2020 + EDGEWARE_MAINNET = 2021 + BERESHEET_TESTNET = 2022 TAYCAN_TESTNET = 2023 - ELA_ETH_SIDECHAIN_TESTNET = 21 - ELA_DID_SIDECHAIN_TESTNET = 23 + RANGERS_PROTOCOL_MAINNET = 2025 + ORIGINTRAIL_PARACHAIN = 2043 + QUOKKACOIN_MAINNET = 2077 + ECOBALL_MAINNET = 2100 ECOBALL_TESTNET_ESPUMA = 2101 - CENNZNET_AZALEA = 21337 + EXOSAMA_NETWORK = 2109 + METAPLAYERONE_MAINNET = 2122 + BOSAGORA_MAINNET = 2151 FINDORA_MAINNET = 2152 FINDORA_TESTNET = 2153 - SOTERONE_MAINNET_OLD = 218 - TAYCAN = 22023 - PLATON_DEV_TESTNET = 2203181 - PLATON_DEV_TESTNET2 = 2206132 + FINDORA_FORGE = 2154 + BITCOIN_EVM = 2203 + EVANESCO_MAINNET = 2213 KAVA_EVM_TESTNET = 2221 + KAVA_EVM = 2222 VCHAIN_MAINNET = 2223 - LACHAIN_MAINNET = 225 - LACHAIN_TESTNET = 226 - HAYMO_TESTNET = 234666 - NEON_EVM_TESTNET = 245022940 + BOMB_CHAIN = 2300 + ALTCOINCHAIN = 2330 + BOMB_CHAIN_TESTNET = 2399 + TCG_VERSE_MAINNET = 2400 + XODEX = 2415 + KORTHO_MAINNET = 2559 TECHPAY_MAINNET = 2569 - GENESIS_L1_TESTNET = 26 + POCRNET = 2606 + REDLIGHT_CHAIN_MAINNET = 2611 + EZCHAIN_C_CHAIN_MAINNET = 2612 EZCHAIN_C_CHAIN_TESTNET = 2613 - OASISCHAIN_MAINNET = 26863 - OPTIMISM_ON_GNOSIS_CHAIN = 300 + BOBA_NETWORK_GOERLI_TESTNET = 2888 + BITYUAN_MAINNET = 2999 CENNZNET_RATA = 3000 CENNZNET_NIKAU = 3001 - PIECE_TESTNET = 30067 + ORLANDO_CHAIN = 3031 + FILECOIN_HYPERSPACE_TESTNET = 3141 + DEBOUNCE_SUBNET_TESTNET = 3306 ZCORE_TESTNET = 3331 WEB3Q_TESTNET = 3333 WEB3Q_GALILEO = 3334 - DFK_CHAIN_TEST = 335 - DITHEREUM_TESTNET = 34 PARIBU_NET_MAINNET = 3400 PARIBU_NET_TESTNET = 3500 JFIN_CHAIN = 3501 - Q_MAINNET = 35441 - Q_TESTNET = 35443 - DXCHAIN_MAINNET = 36 + PANDOPROJECT_MAINNET = 3601 + PANDOPROJECT_TESTNET = 3602 + METACODECHAIN = 3666 + BITTEX_MAINNET = 3690 + EMPIRE_NETWORK = 3693 CROSSBELL = 3737 + DRAC_NETWORK = 3912 DYNO_MAINNET = 3966 DYNO_TESTNET = 3967 YUANCHAIN_MAINNET = 3999 - BOBA_NETWORK_BOBAOPERA_TESTNET = 4051 + FANTOM_TESTNET = 4002 + BOBAOPERA_TESTNET = 4051 AIOZ_NETWORK_TESTNET = 4102 - OPTIMISM_GOERLI_TESTNET = 420 - EMERALD_PARATIME_TESTNET = 42261 - AVALANCHE_FUJI_TESTNET = 43113 - DEXALOT_TESTNET = 432201 - WEELINK_TESTNET = 444900 - DARWINIA_PANGORO_TESTNET = 45 - DARWINIA_NETWORK = 46 - OPENCHAIN_MAINNET = 474142 - CMP_TESTNET = 512512 - DOUBLE_A_CHAIN_TESTNET = 513 + PHI_NETWORK_V1 = 4181 + BOBAFUJI_TESTNET = 4328 + HTMLCOIN_MAINNET = 4444 + IOTEX_NETWORK_MAINNET = 4689 + IOTEX_NETWORK_TESTNET = 4690 + VENIDIUM_TESTNET = 4918 + VENIDIUM_MAINNET = 4919 + MANTLE = 5000 + MANTLE_TESTNET = 5001 TLCHAIN_NETWORK_MAINNET = 5177 - XT_SMART_CHAIN_MAINNET = 520 - F_X_CORE_MAINNET_NETWORK = 530 - CANDLE = 534 - OPENPIECE_MAINNET = 54 + ERASWAP_MAINNET = 5197 + HUMANODE_MAINNET = 5234 + FIRECHAIN_MAINNET_OLD = 5290 + UZMI_NETWORK_MAINNET = 5315 + NAHMII_MAINNET = 5551 NAHMII_TESTNET = 5553 + CHAIN_VERSE_MAINNET = 5555 + SYSCOIN_TANENBAUM_TESTNET = 5700 + ONTOLOGY_TESTNET = 5851 + WEGOCHAIN_RUBIDIUM_MAINNET = 5869 + TRES_TESTNET = 6065 + TRES_MAINNET = 6066 + PIXIE_CHAIN_MAINNET = 6626 + GOLD_SMART_CHAIN_MAINNET = 6789 + TOMB_CHAIN_MAINNET = 6969 + POLYSMARTCHAIN = 6999 + ZETACHAIN_MAINNET = 7000 + ZETACHAIN_ATHENS_TESTNET = 7001 + ELLA_THE_HEART = 7027 + PLANQ_MAINNET = 7070 + SHYFT_MAINNET = 7341 + CANTO = 7700 + RISE_OF_THE_WARBOTS_TESTNET = 7777 + HAZLOR_TESTNET = 7878 + TELEPORT = 8000 + TELEPORT_TESTNET = 8001 + MDGL_TESTNET = 8029 + SHARDEUM_LIBERTY_1_X = 8080 + SHARDEUM_LIBERTY_2_X = 8081 + STREAMUX_BLOCKCHAIN = 8098 + QITMEER_NETWORK_TESTNET = 8131 + BEONE_CHAIN_TESTNET = 8181 + KLAYTN_MAINNET_CYPRESS = 8217 + BLOCKTON_BLOCKCHAIN = 8272 + KORTHOTEST = 8285 + TOKI_NETWORK = 8654 + TOKI_TESTNET = 8655 + TOOL_GLOBAL_MAINNET = 8723 + TOOL_GLOBAL_TESTNET = 8724 + ALPH_NETWORK = 8738 + TMY_CHAIN = 8768 + UNIQUE = 8880 + QUARTZ_BY_UNIQUE = 8881 + OPAL_TESTNET_BY_UNIQUE = 8882 + SAPPHIRE_BY_UNIQUE = 8883 + XANACHAIN = 8888 + VYVO_SMART_CHAIN = 8889 + MAMMOTH_MAINNET = 8898 + JIBCHAIN_L1 = 8899 + GIANT_MAMMOTH_MAINNET = 8989 + BLOXBERG = 8995 + EVMOS_TESTNET = 9000 + EVMOS = 9001 + BERYLBIT_MAINNET = 9012 + GENESIS_COIN = 9100 + RINIA_TESTNET_OLD = 9170 + RANGERS_PROTOCOL_TESTNET_ROBIN = 9527 + QEASYWEB3_TESTNET = 9528 + OORT_MAINNETDEV = 9700 + BOBA_BNB_TESTNET = 9728 + MAINNETZ_TESTNET = 9768 + MYOWN_TESTNET = 9999 + SMART_BITCOIN_CASH = 10000 + SMART_BITCOIN_CASH_TESTNET = 10001 + GON_CHAIN = 10024 + SJATSH = 10086 + BLOCKCHAIN_GENESIS_MAINNET = 10101 + CHIADO_TESTNET = 10200 + _0XTADE = 10248 + NUMBERS_MAINNET = 10507 + NUMBERS_TESTNET = 10508 + CRYPTOCOINPAY = 10823 + QUADRANS_BLOCKCHAIN = 10946 + QUADRANS_BLOCKCHAIN_TESTNET = 10947 + ASTRA = 11110 + WAGMI = 11111 + ASTRA_TESTNET = 11115 + HAQQ_NETWORK = 11235 + SHYFT_TESTNET = 11437 + SARDIS_TESTNET = 11612 + SANR_CHAIN = 11888 + SINGULARITY_ZERO_TESTNET = 12051 + SINGULARITY_ZERO_MAINNET = 12052 + STEP_TESTNET = 12345 + SPS = 13000 + CREDIT_SMARTCHAIN_MAINNET = 13308 + PHOENIX_MAINNET = 13381 + SUSONO = 13812 + SPS_TESTNET = 14000 + TRUST_EVM_TESTNET = 15555 + METADOT_MAINNET = 16000 + METADOT_TESTNET = 16001 + IVAR_CHAIN_TESTNET = 16888 + FRONTIER_OF_DREAMS_TESTNET = 18000 + PROOF_OF_MEMES = 18159 + HOME_VERSE_MAINNET = 19011 + BTCIX_NETWORK = 19845 + CALLISTO_TESTNET = 20729 + P12_CHAIN = 20736 + CENNZNET_AZALEA = 21337 + OMCHAIN_MAINNET = 21816 + TAYCAN = 22023 + MAP_MAINNET = 22776 + OPSIDE_TESTNET = 23118 + OASIS_SAPPHIRE = 23294 + OASIS_SAPPHIRE_TESTNET = 23295 + WEBCHAIN = 24484 + MINTME_COM_COIN = 24734 + HAMMER_CHAIN_MAINNET = 25888 + BITKUB_CHAIN_TESTNET = 25925 + HERTZ_NETWORK_MAINNET = 26600 + OASISCHAIN_MAINNET = 26863 + OPTIMISM_BEDROCK_GOERLI_ALPHA_TESTNET = 28528 + PIECE_TESTNET = 30067 + ETHERSOCIAL_NETWORK = 31102 + CLOUDTX_MAINNET = 31223 + CLOUDTX_TESTNET = 31224 + GOCHAIN_TESTNET = 31337 + FILECOIN_WALLABY_TESTNET = 31415 + BITGERT_MAINNET = 32520 + FUSION_MAINNET = 32659 + AVES_MAINNET = 33333 + J2O_TARO = 35011 + Q_MAINNET = 35441 + Q_TESTNET = 35443 + ENERGI_MAINNET = 39797 + OHO_MAINNET = 39815 + OPULENT_X_BETA = 41500 + PEGGLECOIN = 42069 + ARBITRUM_ONE = 42161 + ARBITRUM_NOVA = 42170 + CELO_MAINNET = 42220 + OASIS_EMERALD_TESTNET = 42261 + OASIS_EMERALD = 42262 + ATHEREUM = 43110 + AVALANCHE_FUJI_TESTNET = 43113 + AVALANCHE_C_CHAIN = 43114 + BOBA_AVAX = 43288 + CELO_ALFAJORES_TESTNET = 44787 + AUTOBAHN_NETWORK = 45000 + FUSION_TESTNET = 46688 + REI_NETWORK = 47805 + FLORIPA = 49049 + BIFROST_TESTNET1 = 49088 + ENERGI_TESTNET = 49797 + LIVEPLEX_ORACLEEVM = 50001 + GTON_TESTNET = 50021 + SARDIS_MAINNET = 51712 + DFK_CHAIN = 53935 + HAQQ_CHAIN_TESTNET = 54211 + REI_CHAIN_MAINNET = 55555 REI_CHAIN_TESTNET = 55556 - DIGEST_SWARM_CHAIN = 5777 - KARURA_NETWORK_TESTNET = 596 - ACALA_NETWORK_TESTNET = 597 - MESHNYAN_TESTNET = 600 + BOBA_BNB_MAINNET = 56288 THINKIUM_TESTNET_CHAIN_0 = 60000 THINKIUM_TESTNET_CHAIN_1 = 60001 - THINKIUM_TESTNET_CHAIN_103 = 60103 THINKIUM_TESTNET_CHAIN_2 = 60002 - ETHEREUM_CLASSIC_TESTNET_MORDEN = 62 - ETHEREUM_CLASSIC_TESTNET_MORDOR = 63 + THINKIUM_TESTNET_CHAIN_103 = 60103 + ETICA_MAINNET = 61803 + DOKEN_SUPER_CHAIN_MAINNET = 61916 + CELO_BAKLAVA_TESTNET = 62320 MULTIVAC_MAINNET = 62621 + ECREDITS_MAINNET = 63000 ECREDITS_TESTNET = 63001 - SX_NETWORK_TESTNET = 647 - PIXIE_CHAIN_TESTNET = 666 - VISION_VPIONEER_TEST_CHAIN = 666666 - OPTIMISM_KOVAN = 69 + SIRIUSNET = 67390 CONDRIEU = 69420 - TOMB_CHAIN_MAINNET = 6969 - STAR_SOCIAL_TESTNET = 700 - ELLA_THE_HEART = 7027 - BLOCKCHAIN_STATION_TESTNET = 708 - CONFLUX_ESPACE_TESTNET = 71 + THINKIUM_MAINNET_CHAIN_0 = 70000 + THINKIUM_MAINNET_CHAIN_1 = 70001 + THINKIUM_MAINNET_CHAIN_2 = 70002 + THINKIUM_MAINNET_CHAIN_103 = 70103 POLYJUICE_TESTNET = 71393 - DXCHAIN_TESTNET = 72 + GODWOKEN_TESTNET_V1 = 71401 + GODWOKEN_MAINNET = 71402 + ENERGY_WEB_VOLTA_TESTNET = 73799 MIXIN_VIRTUAL_MACHINE = 73927 - OPENCHAIN_TESTNET = 776 + RESINCOIN_MAINNET = 75000 + VENTION_SMART_CHAIN_MAINNET = 77612 FIRENZE_TEST_NETWORK = 78110 - HAZLOR_TESTNET = 7878 - AEROCHAIN_TESTNET = 788 - PORTAL_FANTASY_CHAIN_TEST = 808 - ZENITH_TESTNET_VILNIUS = 81 - CALLISTO_TESTNET = 821 - GODWOKEN_TESTNET_V1 = 868455272153094 - AMBROS_CHAIN_TESTNET = 8888 + GOLD_SMART_CHAIN_TESTNET = 79879 + MUMBAI = 80001 IVAR_CHAIN_MAINNET = 88888 - MAMMOTH_MAINNET = 8898 - TOMOCHAIN_TESTNET = 89 - UBIQ_NETWORK_TESTNET = 9 - GARIZON_TESTNET_STAGE0 = 900 - GARIZON_TESTNET_STAGE1 = 901 - GARIZON_TESTNET_STAGE2 = 902 - GARIZON_TESTNET_STAGE3 = 903 - BERYLBIT_MAINNET = 9012 - PORTAL_FANTASY_CHAIN = 909 - PULSECHAIN_TESTNET = 940 - PULSECHAIN_TESTNET_V2B = 941 - PULSECHAIN_TESTNET_V3 = 942 - RANGERS_PROTOCOL_TESTNET_ROBIN = 9527 - TOP_MAINNET_EVM = 980 - TOP_MAINNET = 989 - MYOWN_TESTNET = 9999 + BEVERLY_HILLS = 90210 + LAMBDA_TESTNET = 92001 + BOBA_BNB_MAINNET_OLD = 97288 UB_SMART_CHAIN_TESTNET = 99998 + UB_SMART_CHAIN = 99999 + QUARKCHAIN_MAINNET_ROOT = 100000 + QUARKCHAIN_MAINNET_SHARD_0 = 100001 + QUARKCHAIN_MAINNET_SHARD_1 = 100002 + QUARKCHAIN_MAINNET_SHARD_2 = 100003 + QUARKCHAIN_MAINNET_SHARD_3 = 100004 + QUARKCHAIN_MAINNET_SHARD_4 = 100005 + QUARKCHAIN_MAINNET_SHARD_5 = 100006 + QUARKCHAIN_MAINNET_SHARD_6 = 100007 + QUARKCHAIN_MAINNET_SHARD_7 = 100008 + DEPRECATED_CHIADO_TESTNET = 100100 + SOVERUN_TESTNET = 101010 + CRYSTALEUM = 103090 + BROCHAIN_MAINNET = 108801 + QUARKCHAIN_DEVNET_ROOT = 110000 + QUARKCHAIN_DEVNET_SHARD_0 = 110001 + QUARKCHAIN_DEVNET_SHARD_1 = 110002 + QUARKCHAIN_DEVNET_SHARD_2 = 110003 + QUARKCHAIN_DEVNET_SHARD_3 = 110004 + QUARKCHAIN_DEVNET_SHARD_4 = 110005 + QUARKCHAIN_DEVNET_SHARD_5 = 110006 + QUARKCHAIN_DEVNET_SHARD_6 = 110007 + QUARKCHAIN_DEVNET_SHARD_7 = 110008 + ETND_CHAIN_MAINNETS = 131419 + CONDOR_TEST_NETWORK = 188881 + MILKOMEDA_C1_TESTNET = 200101 + MILKOMEDA_A1_TESTNET = 200202 + AKROMA = 200625 + ALAYA_MAINNET = 201018 + ALAYA_DEV_TESTNET = 201030 + MYTHICAL_CHAIN = 201804 + DECIMAL_SMART_CHAIN_TESTNET = 202020 + JELLIE = 202624 + PLATON_MAINNET = 210425 + MAS_MAINNET = 220315 + HAYMO_TESTNET = 234666 + ARTIS_SIGMA1 = 246529 + ARTIS_TESTNET_TAU1 = 246785 + CMP_MAINNET = 256256 + GEAR_ZERO_NETWORK_TESTNET = 266256 + SOCIAL_SMART_CHAIN_MAINNET = 281121 + FILECOIN_CALIBRATION_TESTNET = 314159 + POLIS_TESTNET = 333888 + POLIS_MAINNET = 333999 + METAL_C_CHAIN = 381931 + METAL_TAHOE_C_CHAIN = 381932 + KEKCHAIN = 420420 + KEKCHAIN_KEKTEST = 420666 + ARBITRUM_RINKEBY = 421611 + ARBITRUM_GOERLI = 421613 + DEXALOT_SUBNET_TESTNET = 432201 + DEXALOT_SUBNET = 432204 + WEELINK_TESTNET = 444900 + OPENCHAIN_MAINNET = 474142 + CMP_TESTNET = 512512 + ETHEREUM_FAIR = 513100 + SCROLL = 534352 + SCROLL_GOERLI_TESTNET = 534353 + SCROLL_PRE_ALPHA_TESTNET = 534354 + BEAR_NETWORK_CHAIN_MAINNET = 641230 + VISION_VPIONEER_TEST_CHAIN = 666666 + OCTASPACE = 800001 + _4GOODNETWORK = 846000 + VISION_MAINNET = 888888 + POSICHAIN_MAINNET_SHARD_0 = 900000 + POSICHAIN_TESTNET_SHARD_0 = 910000 + POSICHAIN_DEVNET_SHARD_0 = 920000 + POSICHAIN_DEVNET_SHARD_1 = 920001 + FNCY_TESTNET = 923018 + ELUVIO_CONTENT_FABRIC = 955305 + ETHO_PROTOCOL = 1313114 + XEROM = 1313500 + KINTSUGI = 1337702 + KILN = 1337802 + ZHEJIANG = 1337803 + PLIAN_MAINNET_MAIN = 2099156 + PLATON_DEV_TESTNET_DEPRECATED = 2203181 + PLATON_DEV_TESTNET2 = 2206132 + FILECOIN_BUTTERFLY_TESTNET = 3141592 + IMVERSED_MAINNET = 5555555 + IMVERSED_TESTNET = 5555558 + OPENVESSEL = 7355310 + QL1_TESTNET = 7668378 + MUSICOIN = 7762959 + PLIAN_MAINNET_SUBCHAIN_1 = 8007736 + PLIAN_TESTNET_SUBCHAIN_1 = 10067275 + SOVERUN_MAINNET = 10101010 + SEPOLIA = 11155111 + PEPCHAIN_CHURCHILL = 13371337 + ANDUSCHAIN_MAINNET = 14288640 + PLIAN_TESTNET_MAIN = 16658437 + IOLITE = 18289463 + SMARTMESH_MAINNET = 20180430 + QUARKBLOCKCHAIN = 20181205 + EXCELON_MAINNET = 22052002 + EXCOINCIAL_CHAIN_VOLTA_TESTNET = 27082017 + EXCOINCIAL_CHAIN_MAINNET = 27082022 + AUXILIUM_NETWORK_MAINNET = 28945486 + FLACHAIN_MAINNET = 29032022 + FILECOIN_LOCAL_TESTNET = 31415926 + JOYS_DIGITAL_MAINNET = 35855456 + MAISTESTSUBNET = 43214913 + AQUACHAIN = 61717561 + JOYS_DIGITAL_TESTNET = 99415706 + GATHER_MAINNET_NETWORK = 192837465 + NEON_EVM_DEVNET = 245022926 + NEON_EVM_MAINNET = 245022934 + NEON_EVM_TESTNET = 245022940 + ONELEDGER_MAINNET = 311752642 + CALYPSO_NFT_HUB_SKALE_TESTNET = 344106930 + GATHER_TESTNET_NETWORK = 356256156 + GATHER_DEVNET_NETWORK = 486217935 + NEBULA_STAGING = 503129905 + IPOS_NETWORK = 1122334455 + AURORA_MAINNET = 1313161554 + AURORA_TESTNET = 1313161555 + AURORA_BETANET = 1313161556 + NEBULA_MAINNET = 1482601649 + CALYPSO_NFT_HUB_SKALE = 1564830818 + HARMONY_MAINNET_SHARD_0 = 1666600000 + HARMONY_MAINNET_SHARD_1 = 1666600001 + HARMONY_MAINNET_SHARD_2 = 1666600002 + HARMONY_MAINNET_SHARD_3 = 1666600003 + HARMONY_TESTNET_SHARD_0 = 1666700000 + HARMONY_TESTNET_SHARD_1 = 1666700001 + HARMONY_TESTNET_SHARD_2 = 1666700002 + HARMONY_TESTNET_SHARD_3 = 1666700003 + HARMONY_DEVNET_SHARD_0 = 1666900000 + DATAHOPPER = 2021121117 + EUROPA_SKALE_CHAIN = 2046399126 + PIRL = 3125659152 + ONELEDGER_TESTNET_FRANKENSTEIN = 4216137055 + PALM_TESTNET = 11297108099 + PALM = 11297108109 + NTITY_MAINNET = 197710212030 + HARADEV_TESTNET = 197710212031 + ZENIQ = 383414847825 + PDC_MAINNET = 666301171999 + MOLEREUM_NETWORK = 6022140761023 @classmethod def _missing_(cls, value): diff --git a/gnosis/eth/multicall.py b/gnosis/eth/multicall.py index ac67357d9..60d0dd636 100644 --- a/gnosis/eth/multicall.py +++ b/gnosis/eth/multicall.py @@ -38,18 +38,18 @@ class MulticallDecodedResult: class Multicall: ADDRESSES = { EthereumNetwork.MAINNET: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696", - EthereumNetwork.ARBITRUM: "0x021CeAC7e681dBCE9b5039d2535ED97590eB395c", - EthereumNetwork.AVALANCHE: "0xAbeC56f92a89eEe33F5194Ca4151DD59785c2C74", - EthereumNetwork.BINANCE: "0xed386Fe855C1EFf2f843B910923Dd8846E45C5A4", - EthereumNetwork.FANTOM: "0xD98e3dBE5950Ca8Ce5a4b59630a5652110403E5c", + EthereumNetwork.ARBITRUM_ONE: "0x021CeAC7e681dBCE9b5039d2535ED97590eB395c", + EthereumNetwork.AVALANCHE_C_CHAIN: "0xAbeC56f92a89eEe33F5194Ca4151DD59785c2C74", + EthereumNetwork.BINANCE_SMART_CHAIN_MAINNET: "0xed386Fe855C1EFf2f843B910923Dd8846E45C5A4", + EthereumNetwork.FANTOM_OPERA: "0xD98e3dBE5950Ca8Ce5a4b59630a5652110403E5c", EthereumNetwork.GOERLI: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696", EthereumNetwork.KOVAN: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696", - EthereumNetwork.MATIC: "0xed386Fe855C1EFf2f843B910923Dd8846E45C5A4", + EthereumNetwork.POLYGON: "0xed386Fe855C1EFf2f843B910923Dd8846E45C5A4", EthereumNetwork.MUMBAI: "0xed386Fe855C1EFf2f843B910923Dd8846E45C5A4", - EthereumNetwork.OPTIMISTIC: "0x2DC0E2aa608532Da689e89e237dF582B783E552C", + EthereumNetwork.OPTIMISM: "0x2DC0E2aa608532Da689e89e237dF582B783E552C", EthereumNetwork.RINKEBY: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696", EthereumNetwork.ROPSTEN: "0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696", - EthereumNetwork.XDAI: "0x08612d3C4A5Dfe2FaaFaFe6a4ff712C2dC675bF7", + EthereumNetwork.GNOSIS: "0x08612d3C4A5Dfe2FaaFaFe6a4ff712C2dC675bF7", EthereumNetwork.KCC_MAINNET: "0x7C1C85C39d3D6b6ecB811dfe949B9C23f6E818B0", EthereumNetwork.KCC_TESTNET: "0x665683D9bd41C09cF38c3956c926D9924F1ADa97", } diff --git a/gnosis/eth/oracles/superfluid.py b/gnosis/eth/oracles/superfluid.py index 57544abba..5d0820e95 100644 --- a/gnosis/eth/oracles/superfluid.py +++ b/gnosis/eth/oracles/superfluid.py @@ -27,10 +27,10 @@ def is_available( :return: `True` if Oracle is available for the EthereumClient provided, `False` otherwise """ return ethereum_client.get_network() in ( - EthereumNetwork.MATIC, - EthereumNetwork.XDAI, - EthereumNetwork.ARBITRUM, - EthereumNetwork.OPTIMISTIC, + EthereumNetwork.POLYGON, + EthereumNetwork.GNOSIS, + EthereumNetwork.ARBITRUM_ONE, + EthereumNetwork.OPTIMISM, ) def get_price(self, token_address: str) -> float: diff --git a/gnosis/eth/oracles/sushiswap.py b/gnosis/eth/oracles/sushiswap.py index 020095189..a37ab2cfc 100644 --- a/gnosis/eth/oracles/sushiswap.py +++ b/gnosis/eth/oracles/sushiswap.py @@ -14,17 +14,17 @@ class SushiswapOracle(UniswapV2Oracle): ) ROUTER_ADDRESSES = { EthereumNetwork.MAINNET: "0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F", - EthereumNetwork.MATIC: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.ARBITRUM: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.AVALANCHE: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.MOON_MOONRIVER: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.FANTOM: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.BINANCE: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.XDAI: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.CELO: "0x1421bDe4B10e8dd459b3BCb598810B1337D56842", + EthereumNetwork.POLYGON: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.ARBITRUM_ONE: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.AVALANCHE_C_CHAIN: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.MOONRIVER: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.FANTOM_OPERA: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.BINANCE_SMART_CHAIN_MAINNET: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.GNOSIS: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.CELO_MAINNET: "0x1421bDe4B10e8dd459b3BCb598810B1337D56842", EthereumNetwork.FUSE_MAINNET: "0xF4d73326C13a4Fc5FD7A064217e12780e9Bd62c3", - EthereumNetwork.OKEXCHAIN: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.OKXCHAIN_MAINNET: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", EthereumNetwork.PALM: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.MOON_MOONBEAM: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", - EthereumNetwork.HECO: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.MOONBEAM: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", + EthereumNetwork.HUOBI_ECO_CHAIN_MAINNET: "0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506", } diff --git a/gnosis/eth/tests/clients/test_blockscout_client.py b/gnosis/eth/tests/clients/test_blockscout_client.py index b88af9064..b03d24242 100644 --- a/gnosis/eth/tests/clients/test_blockscout_client.py +++ b/gnosis/eth/tests/clients/test_blockscout_client.py @@ -13,7 +13,7 @@ def test_blockscout_client(self): with self.assertRaises(BlockScoutConfigurationProblem): BlockscoutClient(EthereumNetwork.MAINNET) - blockscout_client = BlockscoutClient(EthereumNetwork.XDAI) + blockscout_client = BlockscoutClient(EthereumNetwork.GNOSIS) safe_master_copy_abi = sourcify_safe_metadata["output"]["abi"] safe_master_copy_address = "0x6851D6fDFAfD08c0295C392436245E5bc78B0185" contract_metadata = blockscout_client.get_contract_metadata( diff --git a/gnosis/protocol/gnosis_protocol_api.py b/gnosis/protocol/gnosis_protocol_api.py index 0d438cef1..9c1049fb5 100644 --- a/gnosis/protocol/gnosis_protocol_api.py +++ b/gnosis/protocol/gnosis_protocol_api.py @@ -45,13 +45,13 @@ class GnosisProtocolAPI: SETTLEMENT_CONTRACT_ADDRESSES = { EthereumNetwork.MAINNET: "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", EthereumNetwork.GOERLI: "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", - EthereumNetwork.XDAI: "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", + EthereumNetwork.GNOSIS: "0x9008D19f58AAbD9eD0D60971565AA8510560ab41", } API_BASE_URLS = { EthereumNetwork.MAINNET: "https://api.cow.fi/mainnet/api/v1/", EthereumNetwork.GOERLI: "https://api.cow.fi/goerli/api/v1/", - EthereumNetwork.XDAI: "https://api.cow.fi/xdai/api/v1/", + EthereumNetwork.GNOSIS: "https://api.cow.fi/xdai/api/v1/", } def __init__(self, ethereum_network: EthereumNetwork): diff --git a/gnosis/protocol/tests/test_gnosis_protocol_api.py b/gnosis/protocol/tests/test_gnosis_protocol_api.py index c15690b25..78626938d 100644 --- a/gnosis/protocol/tests/test_gnosis_protocol_api.py +++ b/gnosis/protocol/tests/test_gnosis_protocol_api.py @@ -25,7 +25,7 @@ def test_api_is_available(self): for ethereum_network in ( EthereumNetwork.MAINNET, EthereumNetwork.GOERLI, - EthereumNetwork.XDAI, + EthereumNetwork.GNOSIS, ): with self.subTest(ethereum_network=ethereum_network): self.assertEqual( diff --git a/gnosis/safe/api/transaction_service_api.py b/gnosis/safe/api/transaction_service_api.py index 957c7a832..8aa758b79 100644 --- a/gnosis/safe/api/transaction_service_api.py +++ b/gnosis/safe/api/transaction_service_api.py @@ -17,17 +17,17 @@ class TransactionServiceApi(SafeBaseAPI): URL_BY_NETWORK = { - EthereumNetwork.ARBITRUM: "https://safe-transaction-arbitrum.safe.global", - EthereumNetwork.AURORA: "https://safe-transaction-aurora.safe.global", - EthereumNetwork.AVALANCHE: "https://safe-transaction-avalanche.safe.global", - EthereumNetwork.BINANCE: "https://safe-transaction-bsc.safe.global", + EthereumNetwork.ARBITRUM_ONE: "https://safe-transaction-arbitrum.safe.global", + EthereumNetwork.AURORA_MAINNET: "https://safe-transaction-aurora.safe.global", + EthereumNetwork.AVALANCHE_C_CHAIN: "https://safe-transaction-avalanche.safe.global", + EthereumNetwork.BINANCE_SMART_CHAIN_MAINNET: "https://safe-transaction-bsc.safe.global", EthereumNetwork.ENERGY_WEB_CHAIN: "https://safe-transaction-ewc.safe.global", EthereumNetwork.GOERLI: "https://safe-transaction-goerli.safe.global", EthereumNetwork.MAINNET: "https://safe-transaction-mainnet.safe.global", - EthereumNetwork.MATIC: "https://safe-transaction-polygon.safe.global", - EthereumNetwork.OPTIMISTIC: "https://safe-transaction-optimism.safe.global", - EthereumNetwork.VOLTA: "https://safe-transaction-volta.safe.global", - EthereumNetwork.XDAI: "https://safe-transaction-gnosis-chain.safe.global", + EthereumNetwork.POLYGON: "https://safe-transaction-polygon.safe.global", + EthereumNetwork.OPTIMISM: "https://safe-transaction-optimism.safe.global", + EthereumNetwork.ENERGY_WEB_VOLTA_TESTNET: "https://safe-transaction-volta.safe.global", + EthereumNetwork.GNOSIS: "https://safe-transaction-gnosis-chain.safe.global", } @classmethod diff --git a/scripts/chainlist/chains.py b/scripts/chainlist/chains.py index 41fd3c6d3..c06846a7c 100644 --- a/scripts/chainlist/chains.py +++ b/scripts/chainlist/chains.py @@ -1,6 +1,8 @@ import json +import re import shutil from glob import glob +from operator import itemgetter from git import Repo @@ -17,6 +19,16 @@ def clean_resources() -> None: pass +def convert_name(name: str) -> str: + # Change every symbol that is not a word or digit for underscore + name_converted = re.sub(r"[^\w\d]+", r"_", name.upper().replace(")", "")) + # Add underscore at the beggining if start by digit + if name_converted[0].isdigit(): + name_converted = "_" + name_converted + + return name_converted + + def process_chains() -> None: """ Reads all JSON files in the REPO_DIR directory and processes the data @@ -26,15 +38,23 @@ def process_chains() -> None: clean_resources() result_file = open(RESULT_FILE_PATH, "w") Repo.clone_from(GIT_URL, REPO_DIR) - + chains = [] for f_name in glob(REPO_DIR + "/_data/chains/*.json"): f = open(f_name) data = json.load(f) + chain = { + "name": convert_name(data["name"]), + "chainId": data["chainId"], + } + chains.append(chain) + # sort the list by chainId + chains = sorted(chains, key=itemgetter("chainId")) + for chain in chains: result_file.write( "{} = {}\n".format( - data["name"].upper().replace("-", "_").replace(" ", "_"), - data["chainId"], + chain["name"].upper(), + chain["chainId"], ) ) From d9e3dd78f0392fbf72dda95bc105cbffb2d5f661 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Fri, 3 Feb 2023 13:28:26 +0100 Subject: [PATCH 02/31] Set version 5.0.0 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 9a91204ba..dfa881168 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = safe-eth-py -version = 4.9.3 +version = 5.0.0 description = Safe Ecosystem Foundation utilities for Ethereum projects long_description = file: README.rst long_description_content_type = text/x-rst; charset=UTF-8 From de2b9948b22614c41ae0b2ca0a02fb44f0f25e97 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Fri, 3 Feb 2023 17:29:02 +0100 Subject: [PATCH 03/31] Fix cowswap tests --- gnosis/protocol/gnosis_protocol_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnosis/protocol/gnosis_protocol_api.py b/gnosis/protocol/gnosis_protocol_api.py index 9c1049fb5..30a01738f 100644 --- a/gnosis/protocol/gnosis_protocol_api.py +++ b/gnosis/protocol/gnosis_protocol_api.py @@ -85,7 +85,7 @@ def get_quote( data_json = { "sellToken": order.sellToken.lower(), "buyToken": order.buyToken.lower(), - "sellAmountBeforeFee": str(order.sellAmount), + "sellAmountAfterFee": str(order.sellAmount), # "validTo": order.validTo, "appData": HexBytes(order.appData).hex() if isinstance(order.appData, bytes) From 7242f0e97389d033b429c92d8d7483c9a5a475ab Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Mon, 6 Feb 2023 12:34:36 +0100 Subject: [PATCH 04/31] Don't log price oracle failures It's not relevant if a price oracle cannot retrieve the price, as there's already an exception returned for that - Update price oracle logs from `WARNING` to `DEBUG` --- gnosis/eth/oracles/cowswap.py | 6 +++--- gnosis/eth/oracles/kyber.py | 12 ++++++------ gnosis/eth/oracles/oracles.py | 32 +++++++++++++++----------------- gnosis/eth/oracles/uniswap_v3.py | 12 ++++++------ gnosis/eth/oracles/utils.py | 6 +++--- 5 files changed, 33 insertions(+), 35 deletions(-) diff --git a/gnosis/eth/oracles/cowswap.py b/gnosis/eth/oracles/cowswap.py index 947cce643..7b6bcb055 100644 --- a/gnosis/eth/oracles/cowswap.py +++ b/gnosis/eth/oracles/cowswap.py @@ -70,9 +70,9 @@ def get_price( exception = exc result = {} - error_message = ( + message = ( f"Cannot get price from CowSwap {result} " f"for token-1={token_address_1} to token-2={token_address_2}" ) - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) from exception + logger.debug(message) + raise CannotGetPriceFromOracle(message) from exception diff --git a/gnosis/eth/oracles/kyber.py b/gnosis/eth/oracles/kyber.py index 53ba3a70b..ebc36e7a1 100644 --- a/gnosis/eth/oracles/kyber.py +++ b/gnosis/eth/oracles/kyber.py @@ -98,17 +98,17 @@ def get_price( price = (token_unit / expected_rate) if expected_rate else 0 if price <= 0.0: - error_message = ( + message = ( f"price={price} <= 0 from kyber-network-proxy={self.kyber_network_proxy_address} " f"for token-1={token_address_1} to token-2={token_address_2}" ) - logger.warning(error_message) - raise InvalidPriceFromOracle(error_message) + logger.debug(message) + raise InvalidPriceFromOracle(message) return price except (ValueError, BadFunctionCallOutput, DecodingError) as e: - error_message = ( + message = ( f"Cannot get price from kyber-network-proxy={self.kyber_network_proxy_address} " f"for token-1={token_address_1} to token-2={token_address_2}" ) - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) from e + logger.debug(message) + raise CannotGetPriceFromOracle(message) from e diff --git a/gnosis/eth/oracles/oracles.py b/gnosis/eth/oracles/oracles.py index 0acbf9bda..0315ceb46 100644 --- a/gnosis/eth/oracles/oracles.py +++ b/gnosis/eth/oracles/oracles.py @@ -194,9 +194,9 @@ def get_price(self, token_address: str) -> float: if uniswap_exchange_address == NULL_ADDRESS: raise ValueError except (ValueError, BadFunctionCallOutput, DecodingError) as e: - error_message = f"Non existing uniswap exchange for token={token_address}" - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) from e + message = f"Non existing uniswap exchange for token={token_address}" + logger.debug(message) + raise CannotGetPriceFromOracle(message) from e try: balance, token_decimals, token_balance = self._get_balances_using_batching( @@ -210,12 +210,12 @@ def get_price(self, token_address: str) -> float: price = balance / token_balance / 10 ** (18 - token_decimals) if price <= 0.0: - error_message = ( + message = ( f"price={price} <= 0 from uniswap-factory={uniswap_exchange_address} " f"for token={token_address}" ) - logger.warning(error_message) - raise InvalidPriceFromOracle(error_message) + logger.debug(message) + raise InvalidPriceFromOracle(message) return price except ( ValueError, @@ -223,9 +223,9 @@ def get_price(self, token_address: str) -> float: BadFunctionCallOutput, DecodingError, ) as e: - error_message = f"Cannot get token balance for token={token_address}" - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) from e + message = f"Cannot get token balance for token={token_address}" + logger.debug(message) + raise CannotGetPriceFromOracle(message) from e class UniswapV2Oracle(PricePoolOracle, PriceOracle): @@ -391,12 +391,12 @@ def get_price( BadFunctionCallOutput, DecodingError, ) as e: - error_message = ( + message = ( f"Cannot get uniswap v2 price for pair token_1={token_address} " f"token_2={token_address_2}" ) - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) from e + logger.debug(message) + raise CannotGetPriceFromOracle(message) from e def get_price_without_exception( self, token_address: str, token_address_2: Optional[str] = None @@ -458,11 +458,9 @@ def get_pool_token_price(self, pool_token_address: ChecksumAddress) -> float: BadFunctionCallOutput, DecodingError, ) as e: - error_message = ( - f"Cannot get uniswap v2 price for pool token={pool_token_address}" - ) - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) from e + message = f"Cannot get uniswap v2 price for pool token={pool_token_address}" + logger.debug(message) + raise CannotGetPriceFromOracle(message) from e class AaveOracle(PriceOracle): diff --git a/gnosis/eth/oracles/uniswap_v3.py b/gnosis/eth/oracles/uniswap_v3.py index 702666165..31352da01 100644 --- a/gnosis/eth/oracles/uniswap_v3.py +++ b/gnosis/eth/oracles/uniswap_v3.py @@ -162,23 +162,23 @@ def get_price( if (token_balance / 10**token_decimals) < 2 or ( token_2_balance / 10**token_2_decimals ) < 2: - error_message = ( + message = ( f"Not enough liquidity on uniswap v3 for pair token_1={token_address} " f"token_2={token_address_2}, at least 2 units of each token are required" ) - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) + logger.debug(message) + raise CannotGetPriceFromOracle(message) except ( ValueError, BadFunctionCallOutput, DecodingError, ) as e: - error_message = ( + message = ( f"Cannot get uniswap v3 price for pair token_1={token_address} " f"token_2={token_address_2}" ) - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) from e + logger.debug(message) + raise CannotGetPriceFromOracle(message) from e # https://docs.uniswap.org/sdk/guides/fetching-prices if not reversed: diff --git a/gnosis/eth/oracles/utils.py b/gnosis/eth/oracles/utils.py index 6dac0b7a6..8508e1ab4 100644 --- a/gnosis/eth/oracles/utils.py +++ b/gnosis/eth/oracles/utils.py @@ -32,6 +32,6 @@ def get_decimals( BadFunctionCallOutput, DecodingError, ) as e: - error_message = f"Cannot get decimals for token={token_address}" - logger.warning(error_message) - raise CannotGetPriceFromOracle(error_message) from e + message = f"Cannot get decimals for token={token_address}" + logger.debug(message) + raise CannotGetPriceFromOracle(message) from e From 3533aeab0438161379b5b0a8bce86b06c0d392a9 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Thu, 9 Feb 2023 18:11:04 +0100 Subject: [PATCH 05/31] Fix EIP712 encoding - Fix empty arrays - Fix arrays with repeating elements --- gnosis/eth/eip712/__init__.py | 20 +-- gnosis/eth/tests/eip712/test_eip712.py | 195 ++++++++++++++++++++++++- 2 files changed, 203 insertions(+), 12 deletions(-) diff --git a/gnosis/eth/eip712/__init__.py b/gnosis/eth/eip712/__init__.py index 171524e69..bafb6643e 100644 --- a/gnosis/eth/eip712/__init__.py +++ b/gnosis/eth/eip712/__init__.py @@ -4,6 +4,7 @@ Routines for EIP712 encoding and signing. Copyright (C) 2022 Judd Vinet + Uxío Fuentefría Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in @@ -75,15 +76,16 @@ def _encode_field(name, typ, value): return ["bytes32", fast_keccak(value)] if typ.endswith("]"): - parsed_type = typ[:-2] - type_value_pairs = dict( - [_encode_field(name, parsed_type, v) for v in value] - ) - h = fast_keccak( - encode_abi( - list(type_value_pairs.keys()), list(type_value_pairs.values()) - ) - ) + # Array type + if value: + parsed_type = typ[: typ.rindex("[")] + type_value_pairs = [_encode_field(name, parsed_type, v) for v in value] + data_types, data_hashes = zip(*type_value_pairs) + else: + # Empty array + data_types, data_hashes = [], [] + + h = fast_keccak(encode_abi(data_types, data_hashes)) return ["bytes32", h] return [typ, value] diff --git a/gnosis/eth/tests/eip712/test_eip712.py b/gnosis/eth/tests/eip712/test_eip712.py index 5452d39a5..4803c7f57 100644 --- a/gnosis/eth/tests/eip712/test_eip712.py +++ b/gnosis/eth/tests/eip712/test_eip712.py @@ -86,7 +86,7 @@ def test_eip712_encode_hash(self): payload["types"] = self.types self.assertEqual( eip712_encode_hash(payload).hex(), - "d54ecb6637fa990aae0286d420ac70658db995ae6d09cc9bb1dacf364a1417d0", + "7c02fe79823722257b42ea95720e7dd31d51c3f6769dc0f56a271800dd030ef1", ) def test_eip712_encode_hash_string_uint(self): @@ -102,10 +102,9 @@ def test_eip712_encode_hash_string_uint(self): }, "message": self.mailbox, } - self.assertEqual( eip712_encode_hash(payload).hex(), - "d54ecb6637fa990aae0286d420ac70658db995ae6d09cc9bb1dacf364a1417d0", + "7c02fe79823722257b42ea95720e7dd31d51c3f6769dc0f56a271800dd030ef1", ) def test_eip712_encode_hash_string_bytes(self): @@ -134,3 +133,193 @@ def test_eip712_encode_hash_string_bytes(self): eip712_encode_hash(payload).hex(), "2950cf06416c6c20059f24a965e3baf51a24f4ef49a1e7b1a47ee13ee08cde1f", ) + + def test_eip712_encode_nested_with_array(self): + payload = { + "types": { + "Nested": [ + {"name": "nestedString", "type": "string"}, + {"name": "nestedAddress", "type": "address"}, + {"name": "nestedUint256", "type": "uint256"}, + {"name": "nestedUint32", "type": "uint32"}, + {"name": "nestedBytes32", "type": "bytes32"}, + {"name": "nestedBoolean", "type": "bool"}, + ], + "Example": [ + {"name": "testString", "type": "string"}, + {"name": "testAddress", "type": "address"}, + {"name": "testUint256", "type": "uint256"}, + {"name": "testUint32", "type": "uint32"}, + {"name": "testBytes32", "type": "bytes32"}, + {"name": "testBoolean", "type": "bool"}, + {"name": "testNested", "type": "Nested"}, + {"name": "testNestedArray", "type": "Nested[]"}, + ], + "EIP712Domain": [ + {"name": "name", "type": "string"}, + {"name": "version", "type": "string"}, + {"name": "chainId", "type": "uint256"}, + {"name": "verifyingContract", "type": "address"}, + ], + }, + "domain": { + "name": "EIP-1271 Example DApp", + "version": "1.0", + "chainId": "5", + "verifyingContract": "0xaecdfd3a19f777f0c03e6bf99aafb59937d6467b", + }, + "primaryType": "Example", + "message": { + "testString": "Hello Deeeeeemo", + "testAddress": "0xaecdfd3a19f777f0c03e6bf99aafb59937d6467b", + "testUint256": "115792089237316195423570985008687907853269984665640564039457584007908834671663", + "testUint32": "123", + "testBytes32": "0x00000000000000000000000000000000000000000000000000000000deadbeef", + "testBoolean": True, + "testNested": { + "nestedString": "Hello Deeeeeemo", + "nestedAddress": "0x0000000000000000000000000000000000000002", + "nestedUint256": "0", + "nestedUint32": "1", + "nestedBytes32": "0x000000000000000000000000000000000000000000000000000000000000da7a", + "nestedBoolean": False, + }, + "testNestedArray": [ + { + "nestedString": "Hello Deeeeeemo", + "nestedAddress": "0x0000000000000000000000000000000000000002", + "nestedUint256": "0", + "nestedUint32": "1", + "nestedBytes32": "0x000000000000000000000000000000000000000000000000000000000000da7a", + "nestedBoolean": False, + }, + { + "nestedString": "Hello Deeeeeemo", + "nestedAddress": "0x0000000000000000000000000000000000000002", + "nestedUint256": "0", + "nestedUint32": "1", + "nestedBytes32": "0x000000000000000000000000000000000000000000000000000000000000da7a", + "nestedBoolean": False, + }, + ], + }, + } + self.assertEqual( + eip712_encode_hash(payload).hex(), + "2f6856dbd51836973c1e61852b64949556aa2e7f253d9e20e682f9a02d436791", + ) + + def test_eip712_encode_nested_with_empty_array(self): + payload = { + "types": { + "Nested": [ + {"name": "nestedString", "type": "string"}, + {"name": "nestedAddress", "type": "address"}, + {"name": "nestedUint256", "type": "uint256"}, + {"name": "nestedUint32", "type": "uint32"}, + {"name": "nestedBytes32", "type": "bytes32"}, + {"name": "nestedBoolean", "type": "bool"}, + ], + "Example": [ + {"name": "testString", "type": "string"}, + {"name": "testAddress", "type": "address"}, + {"name": "testUint256", "type": "uint256"}, + {"name": "testUint32", "type": "uint32"}, + {"name": "testBytes32", "type": "bytes32"}, + {"name": "testBoolean", "type": "bool"}, + {"name": "testNested", "type": "Nested"}, + {"name": "testNestedArray", "type": "Nested[]"}, + ], + "EIP712Domain": [ + {"name": "name", "type": "string"}, + {"name": "version", "type": "string"}, + {"name": "chainId", "type": "uint256"}, + {"name": "verifyingContract", "type": "address"}, + ], + }, + "domain": { + "name": "EIP-1271 Example DApp", + "version": "1.0", + "chainId": "5", + "verifyingContract": "0xaecdfd3a19f777f0c03e6bf99aafb59937d6467b", + }, + "primaryType": "Example", + "message": { + "testString": "Hello Deeeeeemo", + "testAddress": "0xaecdfd3a19f777f0c03e6bf99aafb59937d6467b", + "testUint256": "115792089237316195423570985008687907853269984665640564039457584007908834671663", + "testUint32": "123", + "testBytes32": "0x00000000000000000000000000000000000000000000000000000000deadbeef", + "testBoolean": True, + "testNested": { + "nestedString": "Hello Deeeeeemo", + "nestedAddress": "0x0000000000000000000000000000000000000002", + "nestedUint256": "0", + "nestedUint32": "1", + "nestedBytes32": "0x000000000000000000000000000000000000000000000000000000000000da7a", + "nestedBoolean": False, + }, + "testNestedArray": [], + }, + } + self.assertEqual( + eip712_encode_hash(payload).hex(), + "5dd3156111fb5e400606d4dd75ff097e36eb56614c84924b5eb6d1cf1b5038cf", + ) + + def test_eip712_encode_nested_without_array(self): + payload = { + "types": { + "Nested": [ + {"name": "nestedString", "type": "string"}, + {"name": "nestedAddress", "type": "address"}, + {"name": "nestedUint256", "type": "uint256"}, + {"name": "nestedUint32", "type": "uint32"}, + {"name": "nestedBytes32", "type": "bytes32"}, + {"name": "nestedBoolean", "type": "bool"}, + ], + "Example": [ + {"name": "testString", "type": "string"}, + {"name": "testAddress", "type": "address"}, + {"name": "testUint256", "type": "uint256"}, + {"name": "testUint32", "type": "uint32"}, + {"name": "testBytes32", "type": "bytes32"}, + {"name": "testBoolean", "type": "bool"}, + {"name": "testNested", "type": "Nested"}, + ], + "EIP712Domain": [ + {"name": "name", "type": "string"}, + {"name": "version", "type": "string"}, + {"name": "chainId", "type": "uint256"}, + {"name": "verifyingContract", "type": "address"}, + ], + }, + "domain": { + "name": "EIP-1271 Example DApp", + "version": "1.0", + "chainId": "5", + "verifyingContract": "0xaecdfd3a19f777f0c03e6bf99aafb59937d6467b", + }, + "primaryType": "Example", + "message": { + "testString": "Hello Deeeeeemo", + "testAddress": "0xaecdfd3a19f777f0c03e6bf99aafb59937d6467b", + "testUint256": "115792089237316195423570985008687907853269984665640564039457584007908834671663", + "testUint32": "123", + "testBytes32": "0x00000000000000000000000000000000000000000000000000000000deadbeef", + "testBoolean": True, + "testNested": { + "nestedString": "Hello Deeeeeemo", + "nestedAddress": "0x0000000000000000000000000000000000000002", + "nestedUint256": "0", + "nestedUint32": "1", + "nestedBytes32": "0x000000000000000000000000000000000000000000000000000000000000da7a", + "nestedBoolean": False, + }, + }, + } + + self.assertEqual( + eip712_encode_hash(payload).hex(), + "9a55335a1d86221594e96018fc3df611a1485d95b5b2afbef1540ac51f63d249", + ) From 4e5c5f32434741985eb2e1c0193f43dcd3d6ff16 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Fri, 10 Feb 2023 11:23:03 +0100 Subject: [PATCH 06/31] Set version 5.0.1 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index dfa881168..0c4a9ae00 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = safe-eth-py -version = 5.0.0 +version = 5.0.1 description = Safe Ecosystem Foundation utilities for Ethereum projects long_description = file: README.rst long_description_content_type = text/x-rst; charset=UTF-8 From e806519205f9522fb42770256caa644dad8e0e0c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 10:33:17 +0100 Subject: [PATCH 07/31] Bump faker from 16.6.1 to 16.8.1 (#461) Bumps [faker](https://github.com/joke2k/faker) from 16.6.1 to 16.8.1. - [Release notes](https://github.com/joke2k/faker/releases) - [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md) - [Commits](https://github.com/joke2k/faker/compare/v16.6.1...v16.8.1) --- updated-dependencies: - dependency-name: faker dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index aa6168fd5..85d0045c4 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,6 +1,6 @@ -r requirements.txt coverage==6.5.0 -faker==16.6.1 +faker==16.8.1 pytest==7.2.1 pytest-django==4.5.2 pytest-env==0.8.1 From d2c6d15713b7e38544bccf40c4e02ac7a412dae5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 10:37:46 +0100 Subject: [PATCH 08/31] Bump pytest-rerunfailures from 11.0 to 11.1 (#462) Bumps [pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures) from 11.0 to 11.1. - [Release notes](https://github.com/pytest-dev/pytest-rerunfailures/releases) - [Changelog](https://github.com/pytest-dev/pytest-rerunfailures/blob/master/CHANGES.rst) - [Commits](https://github.com/pytest-dev/pytest-rerunfailures/compare/11.0...11.1) --- updated-dependencies: - dependency-name: pytest-rerunfailures dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 85d0045c4..33560f92c 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -4,5 +4,5 @@ faker==16.8.1 pytest==7.2.1 pytest-django==4.5.2 pytest-env==0.8.1 -pytest-rerunfailures==11.0 +pytest-rerunfailures==11.1 pytest-sugar==0.9.6 From acb66330602793a1af8118725e578dfacc2e9d02 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 09:38:46 +0000 Subject: [PATCH 09/31] Bump django from 4.1.5 to 4.1.6 Bumps [django](https://github.com/django/django) from 4.1.5 to 4.1.6. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/4.1.5...4.1.6) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c78c88c98..e5a2487d7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -django==4.1.5 +django==4.1.6 django-filter==22.1 djangorestframework==3.14.0 hexbytes==0.2.3 From 6fc433bfbca8a9e4e80246e92326538b98f5aa38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 07:00:01 +0000 Subject: [PATCH 10/31] Bump cla-assistant/github-action from 2.2.1 to 2.3.0 Bumps [cla-assistant/github-action](https://github.com/cla-assistant/github-action) from 2.2.1 to 2.3.0. - [Release notes](https://github.com/cla-assistant/github-action/releases) - [Commits](https://github.com/cla-assistant/github-action/compare/v2.2.1...v2.3.0) --- updated-dependencies: - dependency-name: cla-assistant/github-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/cla.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 413c63b7c..b9383fbe2 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -12,7 +12,7 @@ jobs: - name: "CLA Assistant" if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' # Beta Release - uses: cla-assistant/github-action@v2.2.1 + uses: cla-assistant/github-action@v2.3.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # the below token should have repo scope and must be manually added by you in the repository's secret From 61b958f85ccedd85656e14a5fa4fafdb5f77397b Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Wed, 15 Feb 2023 11:10:31 +0100 Subject: [PATCH 11/31] Add more E2E `trace_block` tests for Erigon - We were missing some E2E for previously problematic blocks --- gnosis/eth/tests/mocks/mock_trace_block.py | 11341 +++++++++++++++++++ gnosis/eth/tests/test_ethereum_client.py | 26 +- 2 files changed, 11360 insertions(+), 7 deletions(-) diff --git a/gnosis/eth/tests/mocks/mock_trace_block.py b/gnosis/eth/tests/mocks/mock_trace_block.py index 06aaaa2ae..8a664fc18 100644 --- a/gnosis/eth/tests/mocks/mock_trace_block.py +++ b/gnosis/eth/tests/mocks/mock_trace_block.py @@ -2512,3 +2512,11344 @@ "type": "reward", }, ] + +trace_block_15630274_mock = [ + { + "action": { + "from": "0xA7B5cA022774BD02842932e4358DDCbea0CCaADe", + "gas": 118862, + "value": 253000000000000000, + "callType": "call", + "input": HexBytes( + "0xa0712d6800000000000000000000000000000000000000000000000000000000000000cb" + ), + "to": "0xcb6B570B8AeAbE38B449Aff31f901B8E1B91e396", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "error": "Reverted", + "result": { + "gasUsed": 30842, + "output": HexBytes( + "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001c4552433732313a20746f6b656e20616c7265616479206d696e74656400000000" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x71453e4f713dd1f102cbdbbf9d7a9995f75ee1f57ab5ded1f7e3cae93dab4c2b", + "transactionPosition": 0, + "type": "call", + }, + { + "action": { + "from": "0x2393eAbFB6885e83822f79cbf5Bd1FC05C95FE54", + "gas": 107737, + "value": 15630274, + "callType": "call", + "input": HexBytes( + "0x3300000000000000000da13006ec0000000280a9d4e297b21218010201f4ff010088e6a0c2ddd26feeb64f039a2c41296fcb3f5640a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48c02aaa39b223fe8d0a0e5c4f27ead9083c756cc203" + ), + "to": "0x9507c04B10486547584C37bCBd931B2a4FeE9A41", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 60937, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0x9507c04B10486547584C37bCBd931B2a4FeE9A41", + "gas": 98772, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb080000000000000000000000009507c04b10486547584c37bcbd931b2a4fee9a410000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffd7f562b1d684dede800000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000da13006ec00000000000000000000000000000000000000000000000280a9d4e297b2121800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 53152, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000da13006ecfffffffffffffffffffffffffffffffffffffffffffffffd7f562b1d684dede8" + ), + }, + "subtraces": 4, + "traceAddress": [0], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "gas": 75814, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000009507c04b10486547584c37bcbd931b2a4fee9a4100000000000000000000000000000000000000000000000280a9d4e297b21218" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8862, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "gas": 66219, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000000020613b1edf2a" + ), + }, + "subtraces": 1, + "traceAddress": [0, 1], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 64454, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000000020613b1edf2a" + ), + }, + "subtraces": 0, + "traceAddress": [0, 1, 0], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "gas": 64129, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e330000000000000000000000000000000000000000000000000000000da13006ecfffffffffffffffffffffffffffffffffffffffffffffffd7f562b1d684dede8000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000da13006ec00000000000000000000000000000000000000000000000280a9d4e297b2121800000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x9507c04B10486547584C37bCBd931B2a4FeE9A41", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 13863, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 2], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0x9507c04B10486547584C37bCBd931B2a4FeE9A41", + "gas": 60026, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f56400000000000000000000000000000000000000000000000000000000da13006ec" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 10417, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [0, 2, 0], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 58355, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f56400000000000000000000000000000000000000000000000000000000da13006ec" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 9628, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 0], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "gas": 49849, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000206edc4ee616" + ), + }, + "subtraces": 1, + "traceAddress": [0, 3], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 48340, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000206edc4ee616" + ), + }, + "subtraces": 0, + "traceAddress": [0, 3, 0], + "transactionHash": "0x55cb57ee60fca9739fc9e90010b0889701c4cebd58a053fa6bfe156484c48244", + "transactionPosition": 1, + "type": "call", + }, + { + "action": { + "from": "0x81FfD37ed3ab472F9bC1d3135D583dC594Bf4795", + "gas": 14, + "value": 0, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x81FfD37ed3ab472F9bC1d3135D583dC594Bf4795", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x649cdb70fa7f1a5a32e154e07ec74183bb15a370cead1461ceda940146902f84", + "transactionPosition": 2, + "type": "call", + }, + { + "action": { + "from": "0xf896736D814F87C3A94eDc7F4D16b1D0b87aCDf7", + "gas": 607121, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xabcffc2600000000000000000000000041684b361557e9282e0373ca51260d9331e518c9000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000008a0000000000000000000000000a888d9616c2222788fa19f05f77221a290eef704000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000f896736d814f87c3a94edc7f4d16b1d0b87acdf70000000000000000000000000000000000000000000000000000dd9a755500060000000000000000000000000000000000000000000000000c576c02cb1573a5000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000041684b361557e9282e0373ca51260d9331e518c900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000dd9a75550006000000000000000000000000000000000000000000000000000000000000006000000000000000000000000096c195f6643a3d797cb90cb6ba0ae2776d51b5f30000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a888d9616c2222788fa19f05f77221a290eef704000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000c576c02cb1573a5000000000000000000000000f896736d814f87c3a94edc7f4d16b1d0b87acdf7000000000000000000000000000000000000000000000000000000006333f8f300000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000004d42fd2fe2eb1e4c7eec64272a1f715dce0ea535000000000000000000000000a888d9616c2222788fa19f05f77221a290eef704000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000041684b361557e9282e0373ca51260d9331e518c90000000000000000000000000000000000000000000000000000dd9a7555000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000060100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c806df3b2bbb68adc8b0e302443692037ed9f91b42000000000000000000000063000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000043df21290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060594a405d53811d3bc4766596efd80fd545a2700000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000003dba93b155bdf0d4f2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000096c195f6643a3d797cb90cb6ba0ae2776d51b5f30000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000008c7b22536f75726365223a22646578746f6f6c73222c2244617461223a227b5c22736f757263655c223a5c22646578746f6f6c735c227d222c22416d6f756e74496e555344223a22313134392e333439363232303437393835222c22416d6f756e744f7574555344223a22313134362e36313133323031323135323637222c22526566657272616c223a22227d0000000000000000000000000000000000000000" + ), + "to": "0x617Dee16B86534a5d792A4d7A62FB491B544111E", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 564703, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000c695eab806c1ab400000000000000000000000000000000000000000000000000000000000899b4" + ), + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x617Dee16B86534a5d792A4d7A62FB491B544111E", + "gas": 591492, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd000000000000000000000000f896736d814f87c3a94edc7f4d16b1d0b87acdf700000000000000000000000041684b361557e9282e0373ca51260d9331e518c90000000000000000000000000000000000000000000000000000dd9a75550006" + ), + "to": "0xA888D9616C2222788fa19f05F77221A290eEf704", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 91897, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x617Dee16B86534a5d792A4d7A62FB491B544111E", + "gas": 492407, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xd9c45357000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000005e0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a888d9616c2222788fa19f05f77221a290eef704000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000c576c02cb1573a5000000000000000000000000f896736d814f87c3a94edc7f4d16b1d0b87acdf7000000000000000000000000000000000000000000000000000000006333f8f300000000000000000000000000000000000000000000000000000000000005400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000c00000000000000000000000004d42fd2fe2eb1e4c7eec64272a1f715dce0ea535000000000000000000000000a888d9616c2222788fa19f05f77221a290eef704000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000041684b361557e9282e0373ca51260d9331e518c90000000000000000000000000000000000000000000000000000dd9a7555000600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000060100000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c806df3b2bbb68adc8b0e302443692037ed9f91b42000000000000000000000063000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000043df21290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060594a405d53811d3bc4766596efd80fd545a2700000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000003dba93b155bdf0d4f2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000096c195f6643a3d797cb90cb6ba0ae2776d51b5f30000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001e" + ), + "to": "0x41684b361557E9282E0373CA51260D9331e518C9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 450179, "output": HexBytes("0x")}, + "subtraces": 23, + "traceAddress": [1], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 478270, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xA888D9616C2222788fa19f05F77221A290eEf704", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2632, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000dd9a75550006" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 474576, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000004d42fd2fe2eb1e4c7eec64272a1f715dce0ea5350000000000000000000000000000000000000000000000000000dd9a75550006" + ), + "to": "0xA888D9616C2222788fa19f05F77221A290eEf704", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 33710, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 438113, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0xeb22d54f00000000000000000000000059a16ece7143459801c3b3f24dc8a0cdfb9565710000000000000000000000004d42fd2fe2eb1e4c7eec64272a1f715dce0ea535000000000000000000000000a888d9616c2222788fa19f05f77221a290eef7040000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0xA9249f4D7e84B206d010Bc90211a11fDA57785b4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 16861, + "output": HexBytes( + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000600ed4459d89ce0000000000000000000000000000000000000000000000000000001dc618188100000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000001e" + ), + }, + "subtraces": 4, + "traceAddress": [1, 2], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA9249f4D7e84B206d010Bc90211a11fDA57785b4", + "gas": 428167, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2504, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000001dc618188100000000000000000000000000000000000000000000000000600ed4459d89ce000000000000000000000000000000000000000000000000000000006333f437" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA9249f4D7e84B206d010Bc90211a11fDA57785b4", + "gas": 420835, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0dfe1681"), + "to": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2381, + "output": HexBytes( + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 1], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA9249f4D7e84B206d010Bc90211a11fDA57785b4", + "gas": 418090, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0xd21220a7"), + "to": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2357, + "output": HexBytes( + "0x000000000000000000000000a888d9616c2222788fa19f05f77221a290eef704" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 2], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA9249f4D7e84B206d010Bc90211a11fDA57785b4", + "gas": 415370, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0dfe1681"), + "to": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 381, + "output": HexBytes( + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 3], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 420581, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000004d42fd2fe2eb1e4c7eec64272a1f715dce0ea535" + ), + "to": "0xA888D9616C2222788fa19f05F77221A290eEf704", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2632, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000060ec6ebaf289d4" + ), + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 417202, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x671a11b50000000000000000000000000000000000000000000000000000dd9a7555000600000000000000000000000000000000000000000000000000600ed4459d89ce0000000000000000000000000000000000000000000000000000001dc618188100000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000001e" + ), + "to": "0xA9249f4D7e84B206d010Bc90211a11fDA57785b4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1070, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000043df2129" + ), + }, + "subtraces": 0, + "traceAddress": [1, 4], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 413064, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 9815, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [1, 5], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 399482, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2529, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [1, 5, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 402924, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0dfe1681"), + "to": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 381, + "output": HexBytes( + "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + ), + }, + "subtraces": 0, + "traceAddress": [1, 6], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 401554, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f0000000000000000000000000000000000000000000000000000000043df2129000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041684b361557e9282e0373ca51260d9331e518c900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 66787, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [1, 7], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + "gas": 388513, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000041684b361557e9282e0373ca51260d9331e518c90000000000000000000000000000000000000000000000000000000043df2129" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 35517, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 7, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 381710, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb00000000000000000000000041684b361557e9282e0373ca51260d9331e518c90000000000000000000000000000000000000000000000000000000043df2129" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 34728, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 7, 0, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + "gas": 352929, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000004d42fd2fe2eb1e4c7eec64272a1f715dce0ea535" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000001d8238f758" + ), + }, + "subtraces": 1, + "traceAddress": [1, 7, 1], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 346685, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a082310000000000000000000000004d42fd2fe2eb1e4c7eec64272a1f715dce0ea535" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000001d8238f758" + ), + }, + "subtraces": 0, + "traceAddress": [1, 7, 1, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x4D42FD2fe2Eb1e4C7eec64272a1f715dce0eA535", + "gas": 351229, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000004d42fd2fe2eb1e4c7eec64272a1f715dce0ea535" + ), + "to": "0xA888D9616C2222788fa19f05F77221A290eEf704", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2632, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000060ec6ebaf289d4" + ), + }, + "subtraces": 0, + "traceAddress": [1, 7, 2], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 333822, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000043df2129" + ), + }, + "subtraces": 1, + "traceAddress": [1, 8], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 327876, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000043df2129" + ), + }, + "subtraces": 0, + "traceAddress": [1, 8, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 328243, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2602, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [1, 9], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 325070, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000043df2129" + ), + }, + "subtraces": 1, + "traceAddress": [1, 10], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 319261, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000043df2129" + ), + }, + "subtraces": 0, + "traceAddress": [1, 10, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 322773, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000043df2129" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 27867, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 11], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 316997, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x095ea7b3000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000043df2129" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 27078, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 11, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 291013, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x52bbbe2900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000041684b361557e9282e0373ca51260d9331e518c9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041684b361557e9282e0373ca51260d9331e518c900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006333f8f306df3b2bbb68adc8b0e302443692037ed9f91b420000000000000000000000630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000043df212900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 113825, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000003dba93b155bdf0d4f2" + ), + }, + "subtraces": 3, + "traceAddress": [1, 12], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "gas": 259390, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x01ec954a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000043df212906df3b2bbb68adc8b0e302443692037ed9f91b420000000000000000000000630000000000000000000000000000000000000000000000000000000000ee7fbf00000000000000000000000041684b361557e9282e0373ca51260d9331e518c900000000000000000000000041684b361557e9282e0373ca51260d9331e518c900000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000002949c2b5d922a7d65cb4d000000000000000000000000000000000000000000000000000002a601af2e47000000000000000000000000000000000000000000000000000002bbe7c65fa7" + ), + "to": "0x06Df3b2bbB68adc8B0e302443692037ED9f91b42", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 33575, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000003dba93b155bdf0d4f2" + ), + }, + "subtraces": 0, + "traceAddress": [1, 12, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "gas": 215110, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000041684b361557e9282e0373ca51260d9331e518c9000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000043df2129" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 10792, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 12, 1], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 211010, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x23b872dd00000000000000000000000041684b361557e9282e0373ca51260d9331e518c9000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c80000000000000000000000000000000000000000000000000000000043df2129" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 9997, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 12, 1, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xBA12222222228d8Ba445958a75a0704d566BF2C8", + "gas": 203036, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000041684b361557e9282e0373ca51260d9331e518c900000000000000000000000000000000000000000000003dba93b155bdf0d4f2" + ), + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 28174, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 12, 2], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 176836, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 602, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000003dba93b155bdf0d4f2" + ), + }, + "subtraces": 0, + "traceAddress": [1, 13], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 174027, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 602, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000003dba93b155bdf0d4f2" + ), + }, + "subtraces": 0, + "traceAddress": [1, 14], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 164881, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [1, 15], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 157690, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb0800000000000000000000000041684b361557e9282e0373ca51260d9331e518c9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000003dba93b155bdf0d4f200000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000041684b361557e9282e0373ca51260d9331e518c9000000000000000000000000000000000000000000000000000000000000006000000000000000000000000060594a405d53811d3bc4766596efd80fd545a2700000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ), + "to": "0x60594a405d53811d3BC4766596EFD80fd545A270", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 82248, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000003dba93b155bdf0d4f2fffffffffffffffffffffffffffffffffffffffffffffffff38d11c4729c0b38" + ), + }, + "subtraces": 4, + "traceAddress": [1, 16], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x60594a405d53811d3BC4766596EFD80fd545A270", + "gas": 120253, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000041684b361557e9282e0373ca51260d9331e518c90000000000000000000000000000000000000000000000000c72ee3b8d63f4c8" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 27962, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 16, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x60594a405d53811d3BC4766596EFD80fd545A270", + "gas": 91856, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000060594a405d53811d3bc4766596efd80fd545a270" + ), + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2602, + "output": HexBytes( + "0x00000000000000000000000000000000000000000001a70d7d7eb6dde38a5829" + ), + }, + "subtraces": 0, + "traceAddress": [1, 16, 1], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x60594a405d53811d3BC4766596EFD80fd545A270", + "gas": 88499, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e3300000000000000000000000000000000000000000000003dba93b155bdf0d4f2fffffffffffffffffffffffffffffffffffffffffffffffff38d11c4729c0b38000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000041684b361557e9282e0373ca51260d9331e518c9000000000000000000000000000000000000000000000000000000000000006000000000000000000000000060594a405d53811d3bc4766596efd80fd545a2700000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ), + "to": "0x41684b361557E9282E0373CA51260D9331e518C9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 9511, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 16, 2], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 84342, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000060594a405d53811d3bc4766596efd80fd545a27000000000000000000000000000000000000000000000003dba93b155bdf0d4f2" + ), + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 6274, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 16, 2, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x60594a405d53811d3BC4766596EFD80fd545A270", + "gas": 78503, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000060594a405d53811d3bc4766596efd80fd545a270" + ), + "to": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 602, + "output": HexBytes( + "0x00000000000000000000000000000000000000000001a74b38126833a17b2d1b" + ), + }, + "subtraces": 0, + "traceAddress": [1, 16, 3], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 74453, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000c72ee3b8d63f4c8" + ), + }, + "subtraces": 0, + "traceAddress": [1, 17], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 72828, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000c72ee3b8d63f4c8" + ), + }, + "subtraces": 0, + "traceAddress": [1, 18], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 71757, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x2e1a7d4d0000000000000000000000000000000000000000000000000c72ee3b8d63f4c8" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 9195, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 19], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "gas": 2300, + "value": 897041215342769352, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x41684b361557E9282E0373CA51260D9331e518C9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 55, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 19, 0], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 52299, + "value": 2691123646028308, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x96c195F6643A3D797cb90cb6BA0Ae2776D51b5F3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 20], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 45081, + "value": 894350091696741044, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xf896736D814F87C3A94eDc7F4D16b1D0b87aCDf7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 21], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0x41684b361557E9282E0373CA51260D9331e518C9", + "gas": 44527, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000041684b361557e9282e0373ca51260d9331e518c9" + ), + "to": "0xA888D9616C2222788fa19f05F77221A290eEf704", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2632, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [1, 22], + "transactionHash": "0x0829191d1e4da5fcf7001059a66f51183c8fa6c343e4a470d9398306c8095ed0", + "transactionPosition": 3, + "type": "call", + }, + { + "action": { + "from": "0xb8DEC574677e4F59Df452bfAACF5011F1B597ea3", + "gas": 73368, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000c7807e24338b41a34d849492920f2b9d0e4de2cd0000000000000000000000000000000000000000000000000291f66b34670000" + ), + "to": "0x0d438F3b5175Bebc262bF23753C1E53d03432bDE", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13006, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xfa5183ed2496b4604a8a000039677bc139744f1049201e48cddd0dfddfe0f365", + "transactionPosition": 4, + "type": "call", + }, + { + "action": { + "from": "0xC241FB19Cf9f9bd9765d99c231a1A16bBe83156E", + "gas": 73368, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000c7807e24338b41a34d849492920f2b9d0e4de2cd000000000000000000000000000000000000000000000000027f7d0bdb920000" + ), + "to": "0x0d438F3b5175Bebc262bF23753C1E53d03432bDE", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13006, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x4c8e5be08977569c9fcbe1ca050459a2b8c67fc6a6e642b113764ae5256af3a7", + "transactionPosition": 5, + "type": "call", + }, + { + "action": { + "from": "0x00A25fbfF2D0173A29cE577f1871f1F2c028e672", + "gas": 73356, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000c7807e24338b41a34d849492920f2b9d0e4de2cd000000000000000000000000000000000000000000000000021c044493571800" + ), + "to": "0x0d438F3b5175Bebc262bF23753C1E53d03432bDE", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13006, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x874d6a00a710e0e8cb6c9e4c394b6f1b0502ca7517af206ed75aab7028cfca57", + "transactionPosition": 6, + "type": "call", + }, + { + "action": { + "from": "0xa483254773CFe94d502557099945Caf90725473f", + "gas": 183050, + "value": 8196, + "callType": "call", + "input": HexBytes( + "0x1cff79cd000000000000000000000000ebd64b5f2e3028fb887d40cc69570d2c59b16bdc000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c404764a8a00000000000000000000000000000000000000000000004468500d55f04e8b0700000000000000000000000000000000000000000005196da08b776a800000000000000000000000000000000000000000000000142156bb9e6f4fd832d5bf890000000000000000000000000000000000000000000000000015e6c584e8d260000000000000000000000000000000000000000000000000000000006333f48e66000000000000000000000000000000000000000000000000000000000104e300000000000000000000000000000000000000000000000000000000" + ), + "to": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 64675, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 178927, + "value": 8196, + "callType": "delegatecall", + "input": HexBytes( + "0x04764a8a00000000000000000000000000000000000000000000004468500d55f04e8b0700000000000000000000000000000000000000000005196da08b776a800000000000000000000000000000000000000000000000142156bb9e6f4fd832d5bf890000000000000000000000000000000000000000000000000015e6c584e8d260000000000000000000000000000000000000000000000000000000006333f48e66000000000000000000000000000000000000000000000000000000000104e3" + ), + "to": "0xEbD64b5f2e3028fb887D40cc69570d2C59b16bdc", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 63335, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000004468500d55f04e8b07000000000000000000000000000000000000000000000000001a85d17de53061" + ), + }, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 175754, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb0800000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000004468500d55f04e8b070000000000000000000000000000000000000000142156bb9e6f4fd832d5bf8900000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000060fa0bb6e2cb1ae1309eb828215322e997e900993704559ef888f3c68337af15f300000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca" + ), + "to": "0xa6Cc3C2531FdaA6Ae1A3CA84c2855806728693e8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 52682, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000004468500d55f04e8b07ffffffffffffffffffffffffffffffffffffffffffffffff93f02483dee07e06" + ), + }, + "subtraces": 4, + "traceAddress": [0, 0], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xa6Cc3C2531FdaA6Ae1A3CA84c2855806728693e8", + "gas": 150190, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf90000000000000000000000000000000000000000000000006c0fdb7c211f81fa" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8862, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xa6Cc3C2531FdaA6Ae1A3CA84c2855806728693e8", + "gas": 140595, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000a6cc3c2531fdaa6ae1a3ca84c2855806728693e8" + ), + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 655, + "output": HexBytes( + "0x000000000000000000000000000000000000000000006007887d398665287216" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xa6Cc3C2531FdaA6Ae1A3CA84c2855806728693e8", + "gas": 139178, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e3300000000000000000000000000000000000000000000004468500d55f04e8b07ffffffffffffffffffffffffffffffffffffffffffffffff93f02483dee07e0600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000060fa0bb6e2cb1ae1309eb828215322e997e900993704559ef888f3c68337af15f300000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca" + ), + "to": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 13309, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 0, 2], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 136429, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000a6cc3c2531fdaa6ae1a3ca84c2855806728693e800000000000000000000000000000000000000000000004468500d55f04e8b07" + ), + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 12700, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 0], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xa6Cc3C2531FdaA6Ae1A3CA84c2855806728693e8", + "gas": 125444, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000a6cc3c2531fdaa6ae1a3ca84c2855806728693e8" + ), + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 655, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000604bf0cd46dc5576fd1d" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 3], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 113873, + "value": 1486864370461342, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0xac7f47a0babae1284b8e16945ea02907cf3e7efa571cc3922ca1fed5fe4e57a6", + "transactionPosition": 7, + "type": "call", + }, + { + "action": { + "from": "0xFF82BF5238637B7E5E345888BaB9cd99F5Ebe331", + "gas": 204230, + "value": 52484, + "callType": "call", + "input": HexBytes( + "0x1cff79cd000000000000000000000000a2657323a987e02b1c4e8e64aa3844f0e48dbff8000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c404764a8a00000000000000000000000000000000000000000000010d10f01a7b1db0922d00000000000000000000000000000000000000000000000000020c46733887f0000000000000000000000000000000000000000000000ccd57af7c2d0cfb859200000000000000000000000000000000000000000000000000019e7b4be9f2fe000000000000000000000000000000000000000000000000000000006333f48b660000000000000000000000000000000000000000000000000000000001335300000000000000000000000000000000000000000000000000000000" + ), + "to": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 69351, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 199753, + "value": 52484, + "callType": "delegatecall", + "input": HexBytes( + "0x04764a8a00000000000000000000000000000000000000000000010d10f01a7b1db0922d00000000000000000000000000000000000000000000000000020c46733887f0000000000000000000000000000000000000000000000ccd57af7c2d0cfb859200000000000000000000000000000000000000000000000000019e7b4be9f2fe000000000000000000000000000000000000000000000000000000006333f48b6600000000000000000000000000000000000000000000000000000000013353" + ), + "to": "0xA2657323a987e02B1C4e8e64AA3844f0e48dBff8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 67987, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000010d10f01a7b1db0922d000000000000000000000000000000000000000000000000001a2b5fa3fc973f" + ), + }, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 196254, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb0800000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000010d10f01a7b1db0922d000000000000000000000000000000000000000000000ccd57af7c2d0cfb859200000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000006041eb661e632bf0d55dfe02085b906a8a326fe309442573b563e0f0f2ed64720b00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000111111111117dc0aa78b770fa6a738034120c302" + ), + "to": "0x9feBc984504356225405e26833608b17719c82Ae", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 57334, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000010d10f01a7b1db0922dffffffffffffffffffffffffffffffffffffffffffffffffffffffff54e86a41" + ), + }, + "subtraces": 4, + "traceAddress": [0, 0], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0x9feBc984504356225405e26833608b17719c82Ae", + "gas": 168614, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf900000000000000000000000000000000000000000000000000000000ab1795bf" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 10417, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [0, 0, 0], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 165247, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf900000000000000000000000000000000000000000000000000000000ab1795bf" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 9628, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 0, 0], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0x9feBc984504356225405e26833608b17719c82Ae", + "gas": 157489, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000009febc984504356225405e26833608b17719c82ae" + ), + "to": "0x111111111117dC0aa78b770fA6A738034120C302", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 510, + "output": HexBytes( + "0x00000000000000000000000000000000000000000001f0e7e21f51f8c1bb91b9" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0x9feBc984504356225405e26833608b17719c82Ae", + "gas": 156215, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e3300000000000000000000000000000000000000000000010d10f01a7b1db0922dffffffffffffffffffffffffffffffffffffffffffffffffffffffff54e86a410000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006041eb661e632bf0d55dfe02085b906a8a326fe309442573b563e0f0f2ed64720b00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000111111111117dc0aa78b770fa6a738034120c302" + ), + "to": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 14913, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 0, 2], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 153200, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf90000000000000000000000009febc984504356225405e26833608b17719c82ae00000000000000000000000000000000000000000000010d10f01a7b1db0922d" + ), + "to": "0x111111111117dC0aa78b770fA6A738034120C302", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 14304, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 0], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0x9feBc984504356225405e26833608b17719c82Ae", + "gas": 140902, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000009febc984504356225405e26833608b17719c82ae" + ), + "to": "0x111111111117dC0aa78b770fA6A738034120C302", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 510, + "output": HexBytes( + "0x00000000000000000000000000000000000000000001f1f4f30f6c73df6c23e6" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 3], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 129794, + "value": 1241303378070017, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0x7aa71de1165fd9ec3a8b959699727d95fe593a06d7eb6f5be08fa3d7415aa42f", + "transactionPosition": 8, + "type": "call", + }, + { + "action": { + "from": "0xD21e14023e8d247e2Ac4C7aDfC1d25441E492278", + "gas": 30080, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000067ccb725b4a13e0c1f8e3a5e4efc758fe21f38af0000000000000000000000000000000000000000000000000000000018701a80" + ), + "to": "0x467719aD09025FcC6cF6F8311755809d45a5E5f3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 12851, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x7904630f15ed02f242085f15b35e46e67143e7dd149a4e7a52ffa955a2f85d99", + "transactionPosition": 9, + "type": "call", + }, + { + "action": { + "from": "0x0edE5Fe301B7f576306e6Fb71A6f6a68547De291", + "gas": 80256, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000003ce9bb52894e2d4bc3b659b4f7a35f7556cb9fdd000000000000000000000000000000000000000000000000000000003b9aca00" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x24036cd410f94faabb55cf432c6011e9f6e7c3d27617a1ea5c4071e407a05b92", + "transactionPosition": 10, + "type": "call", + }, + { + "action": { + "from": "0x4b121b149Fa9D07342cE43AEa89F3d1f75a107Da", + "gas": 80244, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000003ce9bb52894e2d4bc3b659b4f7a35f7556cb9fdd000000000000000000000000000000000000000000000000000000003489c51d" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x2d56ca1e01c6a843884439032fb0e881b10e8c63607f72b8f0719bc6e5608dea", + "transactionPosition": 11, + "type": "call", + }, + { + "action": { + "from": "0x4BbEF72ed57B043e633121976Dc71B7c481FCA73", + "gas": 80232, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000003ce9bb52894e2d4bc3b659b4f7a35f7556cb9fdd00000000000000000000000000000000000000000000000000000002f96b422e" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x7ad91e43ef805dff57fde8087fbc9e0b88b0bc7f8905254c968cc743c3cfdab9", + "transactionPosition": 12, + "type": "call", + }, + { + "action": { + "from": "0xA6807d794411D9a80bc435dfC4CDa0Ba0DddE979", + "gas": 236545, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x2e7a21ce000000000000000000000000b0f4a77bde7fee134265307c5cc19abff0ba409b0000000000000000000000000000000000000000000002d2baaac40963d00000000000000000000000000000000000000000000000000821c8e965ac1180000000000000000000000000000000000000000000000000081e5c08fa801380000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000003865c048cedf0" + ), + "to": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 106592, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + "gas": 226825, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x3850c7bd"), + "to": "0xB0F4a77Bde7fEE134265307C5CC19abfF0ba409B", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2696, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000821c92eac2b21a64f19fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb900600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + "gas": 221701, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb0800000000000000000000000098c3d3183c4b8a650614ad179a1a98be0a8d6b8e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000002d2baaac40963d0000000000000000000000000000000000000000000000000081e5c08fa801380000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xB0F4a77Bde7fEE134265307C5CC19abfF0ba409B", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 85732, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000002d2baaac40963d00000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff462c6662" + ), + }, + "subtraces": 4, + "traceAddress": [1], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0xB0F4a77Bde7fEE134265307C5CC19abfF0ba409B", + "gas": 185368, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000098c3d3183c4b8a650614ad179a1a98be0a8d6b8e00000000000000000000000000000000000000000000000000000000b9d3999e" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0xB0F4a77Bde7fEE134265307C5CC19abfF0ba409B", + "gas": 158043, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000b0f4a77bde7fee134265307c5cc19abff0ba409b" + ), + "to": "0x3506424F91fD33084466F402d5D97f05F8e3b4AF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2679, + "output": HexBytes( + "0x00000000000000000000000000000000000000000003b39ba9e502b68f23ead4" + ), + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0xB0F4a77Bde7fEE134265307C5CC19abfF0ba409B", + "gas": 154653, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e330000000000000000000000000000000000000000000002d2baaac40963d00000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff462c666200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 16098, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 2], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + "gas": 150300, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000b0f4a77bde7fee134265307c5cc19abff0ba409b0000000000000000000000000000000000000000000002d2baaac40963d00000" + ), + "to": "0x3506424F91fD33084466F402d5D97f05F8e3b4AF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13599, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 0], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0xB0F4a77Bde7fEE134265307C5CC19abfF0ba409B", + "gas": 138173, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000b0f4a77bde7fee134265307c5cc19abff0ba409b" + ), + "to": "0x3506424F91fD33084466F402d5D97f05F8e3b4AF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 679, + "output": HexBytes( + "0x00000000000000000000000000000000000000000003b66e648fc6bff2f3ead4" + ), + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + "gas": 2300, + "value": 992154701590000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x1b46582c3a74483e15f3eb783af8535f482bc4564b94ec42052568641b55d6d3", + "transactionPosition": 13, + "type": "call", + }, + { + "action": { + "from": "0x46340b20830761efd32832A74d7169B29FEB9758", + "gas": 328392, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000e9c353dcbc3bfc0429d63e22c042a46dacfe6a5300000000000000000000000000000000000000000000000000000000055d4a80" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x9f22bd44194f4149cea1d3ca9b180f973407b287e542beeecb9576e23879a294", + "transactionPosition": 14, + "type": "call", + }, + { + "action": { + "from": "0x46340b20830761efd32832A74d7169B29FEB9758", + "gas": 328392, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000001cc25e012db2c60f6b35fe889eff58bf8d021e9600000000000000000000000000000000000000000000000000000000825182e0" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 44017, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x026e0528519b6ec3a9257f394c67f3bb4aa37b425bae9cbd7030c0fe4e997a9f", + "transactionPosition": 15, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 316130, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb0000000000000000000000001cc25e012db2c60f6b35fe889eff58bf8d021e9600000000000000000000000000000000000000000000000000000000825182e0" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 36728, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x026e0528519b6ec3a9257f394c67f3bb4aa37b425bae9cbd7030c0fe4e997a9f", + "transactionPosition": 15, + "type": "call", + }, + { + "action": { + "from": "0x46340b20830761efd32832A74d7169B29FEB9758", + "gas": 329000, + "value": 900000000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xF26A1896377568742767A777C53357442Ebf9af1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xbe0cd9c33f8c5285aabc7dbe705ae4b41598072ce541cb948c20eefadcd5d6c4", + "transactionPosition": 16, + "type": "call", + }, + { + "action": { + "from": "0x46340b20830761efd32832A74d7169B29FEB9758", + "gas": 329000, + "value": 7070000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x1E3a01AE80b3B7B8576AE26880D16fFA8d2d1FA4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xd455e7c376623ff7004818166cb7b52166d7c0439ae31c75aa53341fcd3b57d6", + "transactionPosition": 17, + "type": "call", + }, + { + "action": { + "from": "0x8a2376824Dd78BBD73ae0646039E0f2D7d9eF561", + "gas": 138441, + "value": 255464174780706438, + "callType": "call", + "input": HexBytes( + "0x7ff36ab500000000000000000000000000000000000000001741d4bd0b135072c04c86480000000000000000000000000000000000000000000000000000000000000080000000000000000000000000398b7a15e6254b51f84f06673f7a93f06d1f9de200000000000000000000000000000000000000000000000000000000633410630000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000048878490702f1ba61ab02546f93fc92e04c36007" + ), + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 120956, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000038b97503ea46e86000000000000000000000000000000000000000017426d2811f68424876f5923" + ), + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x7da753a1abc52d90449a075dc7753ef7fd8ed4504b36908e75570abd1ce73a06", + "transactionPosition": 18, + "type": "call", + }, + { + "action": { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 131549, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x2430c43867EcAE58A4B2C2e41d08C916A062b700", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2504, + "output": HexBytes( + "0x000000000000000000000000000000000000000e12a8b89c699adc80e044d8c40000000000000000000000000000000000000000000000021ff21fad56960d7e000000000000000000000000000000000000000000000000000000006333f42b" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x7da753a1abc52d90449a075dc7753ef7fd8ed4504b36908e75570abd1ce73a06", + "transactionPosition": 18, + "type": "call", + }, + { + "action": { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 118557, + "value": 255464174780706438, + "callType": "call", + "input": HexBytes("0xd0e30db0"), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 23974, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x7da753a1abc52d90449a075dc7753ef7fd8ed4504b36908e75570abd1ce73a06", + "transactionPosition": 18, + "type": "call", + }, + { + "action": { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 93746, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000002430c43867ecae58a4b2c2e41d08c916a062b700000000000000000000000000000000000000000000000000038b97503ea46e86" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8062, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x7da753a1abc52d90449a075dc7753ef7fd8ed4504b36908e75570abd1ce73a06", + "transactionPosition": 18, + "type": "call", + }, + { + "action": { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 83763, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f000000000000000000000000000000000000000017426d2811f68424876f59230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000398b7a15e6254b51f84f06673f7a93f06d1f9de200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x2430c43867EcAE58A4B2C2e41d08C916A062b700", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 67151, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0x7da753a1abc52d90449a075dc7753ef7fd8ed4504b36908e75570abd1ce73a06", + "transactionPosition": 18, + "type": "call", + }, + { + "action": { + "from": "0x2430c43867EcAE58A4B2C2e41d08C916A062b700", + "gas": 69289, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000398b7a15e6254b51f84f06673f7a93f06d1f9de2000000000000000000000000000000000000000017426d2811f68424876f5923" + ), + "to": "0x48878490702f1BA61aB02546F93fc92e04c36007", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 32260, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x7da753a1abc52d90449a075dc7753ef7fd8ed4504b36908e75570abd1ce73a06", + "transactionPosition": 18, + "type": "call", + }, + { + "action": { + "from": "0x2430c43867EcAE58A4B2C2e41d08C916A062b700", + "gas": 36912, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000002430c43867ecae58a4b2c2e41d08c916a062b700" + ), + "to": "0x48878490702f1BA61aB02546F93fc92e04c36007", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000dfb664b7457a4585c58d57fa1" + ), + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0x7da753a1abc52d90449a075dc7753ef7fd8ed4504b36908e75570abd1ce73a06", + "transactionPosition": 18, + "type": "call", + }, + { + "action": { + "from": "0x2430c43867EcAE58A4B2C2e41d08C916A062b700", + "gas": 35980, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000002430c43867ecae58a4b2c2e41d08c916a062b700" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000002237db6fd953a7c04" + ), + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x7da753a1abc52d90449a075dc7753ef7fd8ed4504b36908e75570abd1ce73a06", + "transactionPosition": 18, + "type": "call", + }, + { + "action": { + "from": "0x950C40afcECEd6911609D4f6Ae81a48749681452", + "gas": 285804, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x5eaa9cedee4fcdeed773931af0bcd16cfcea5b366682ffbd4994cf78b4f0a6a40b570340000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000004be00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000001d8ce2c9c15fff000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000953706f745072696365000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000036f686d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036574680000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xe8218cACb0a5421BC6409e498d9f8CC8869945ea", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 272740, "output": HexBytes("0x")}, + "subtraces": 6, + "traceAddress": [], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0xe8218cACb0a5421BC6409e498d9f8CC8869945ea", + "gas": 271215, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x699f200ffa522e460446113e8fd353d7fa015625a68bc0369712213a42e006346440891e" + ), + "to": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2466, + "output": HexBytes( + "0x000000000000000000000000e8218cacb0a5421bc6409e498d9f8cc8869945ea" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0xe8218cACb0a5421BC6409e498d9f8CC8869945ea", + "gas": 265108, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x733bdef0000000000000000000000000950c40afceced6911609d4f6ae81a48749681452" + ), + "to": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 9759, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000062e10133" + ), + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + "gas": 256070, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x733bdef0000000000000000000000000950c40afceced6911609d4f6ae81a48749681452" + ), + "to": "0xf98624E9924CAA2cbD21cC6288215Ec2ef7cFE80", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 4741, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000062e10133" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0xe8218cACb0a5421BC6409e498d9f8CC8869945ea", + "gas": 254956, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xb59e14d45d9fadfc729fd027e395e5157ef1b53ef9fa4a8f053043c5f159307543e7cc97" + ), + "to": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2428, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000056bc75e2d63100000" + ), + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0xe8218cACb0a5421BC6409e498d9f8CC8869945ea", + "gas": 252084, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000950c40afceced6911609d4f6ae81a48749681452" + ), + "to": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8585, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000072faf9150e708553f" + ), + }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + "gas": 247679, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a08231000000000000000000000000950c40afceced6911609d4f6ae81a48749681452" + ), + "to": "0xf98624E9924CAA2cbD21cC6288215Ec2ef7cFE80", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8070, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000072faf9150e708553f" + ), + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0xe8218cACb0a5421BC6409e498d9f8CC8869945ea", + "gas": 101988, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000e8218cacb0a5421bc6409e498d9f8cc8869945ea" + ), + "to": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8585, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000cd186b8a8676d039d9e" + ), + }, + "subtraces": 1, + "traceAddress": [4], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + "gas": 99928, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a08231000000000000000000000000e8218cacb0a5421bc6409e498d9f8cc8869945ea" + ), + "to": "0xf98624E9924CAA2cbD21cC6288215Ec2ef7cFE80", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8070, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000cd186b8a8676d039d9e" + ), + }, + "subtraces": 0, + "traceAddress": [4, 0], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0xe8218cACb0a5421BC6409e498d9f8CC8869945ea", + "gas": 90356, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000950c40afceced6911609d4f6ae81a487496814520000000000000000000000000000000000000000000000000b1a2bc2ec500000" + ), + "to": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 62631, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [5], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + "gas": 88475, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb000000000000000000000000950c40afceced6911609d4f6ae81a487496814520000000000000000000000000000000000000000000000000b1a2bc2ec500000" + ), + "to": "0xf98624E9924CAA2cbD21cC6288215Ec2ef7cFE80", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 62113, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [5, 0], + "transactionHash": "0x6935c24a01508d4296c6d75809d66f8f55acc4916c7487ee984096baac7e4f72", + "transactionPosition": 19, + "type": "call", + }, + { + "action": { + "from": "0x0809616c35784DB5f758e0338e9d9B25A2fd1932", + "gas": 477472, + "value": 15630274, + "callType": "call", + "input": HexBytes( + "0x355ec1520000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000045592c2b869be4ecc00000000000000000000000000000000000000000000000000000000255aca508000000000000000000000000000000000000000000000000000000000000002b514910771af9ca656af840dff83e8264ecf986ca000bb8a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000" + ), + "to": "0x000000000dFDe7deaF24138722987c9a6991e2D4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 97062, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x44348924e614dec6d93d35139ee2e7984fcda0f13d81a1b927e0f42b0c1b93f0", + "transactionPosition": 20, + "type": "call", + }, + { + "action": { + "from": "0x000000000dFDe7deaF24138722987c9a6991e2D4", + "gas": 462272, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb08000000000000000000000000000000000dfde7deaf24138722987c9a6991e2d40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000045592c2b869be4ecc000000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002b514910771af9ca656af840dff83e8264ecf986ca000bb8a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000" + ), + "to": "0xFAD57d2039C21811C8F2B5D5B65308aa99D31559", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 88906, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000045592c2b869be4ecc0fffffffffffffffffffffffffffffffffffffffffffffffffffffffdaa364769" + ), + }, + "subtraces": 4, + "traceAddress": [0], + "transactionHash": "0x44348924e614dec6d93d35139ee2e7984fcda0f13d81a1b927e0f42b0c1b93f0", + "transactionPosition": 20, + "type": "call", + }, + { + "action": { + "from": "0xFAD57d2039C21811C8F2B5D5B65308aa99D31559", + "gas": 420054, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000000000000dfde7deaf24138722987c9a6991e2d40000000000000000000000000000000000000000000000000000000255c9b897" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 26917, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [0, 0], + "transactionHash": "0x44348924e614dec6d93d35139ee2e7984fcda0f13d81a1b927e0f42b0c1b93f0", + "transactionPosition": 20, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 406359, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb000000000000000000000000000000000dfde7deaf24138722987c9a6991e2d40000000000000000000000000000000000000000000000000000000255c9b897" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 19628, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x44348924e614dec6d93d35139ee2e7984fcda0f13d81a1b927e0f42b0c1b93f0", + "transactionPosition": 20, + "type": "call", + }, + { + "action": { + "from": "0xFAD57d2039C21811C8F2B5D5B65308aa99D31559", + "gas": 390225, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000fad57d2039c21811c8f2b5d5b65308aa99d31559" + ), + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2655, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000f7f92dd2a37ae8d7b4c" + ), + }, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0x44348924e614dec6d93d35139ee2e7984fcda0f13d81a1b927e0f42b0c1b93f0", + "transactionPosition": 20, + "type": "call", + }, + { + "action": { + "from": "0xFAD57d2039C21811C8F2B5D5B65308aa99D31559", + "gas": 386850, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e33000000000000000000000000000000000000000000000045592c2b869be4ecc0fffffffffffffffffffffffffffffffffffffffffffffffffffffffdaa3647690000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000002b514910771af9ca656af840dff83e8264ecf986ca000bb8a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000" + ), + "to": "0x000000000dFDe7deaF24138722987c9a6991e2D4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 14611, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 2], + "transactionHash": "0x44348924e614dec6d93d35139ee2e7984fcda0f13d81a1b927e0f42b0c1b93f0", + "transactionPosition": 20, + "type": "call", + }, + { + "action": { + "from": "0x000000000dFDe7deaF24138722987c9a6991e2D4", + "gas": 377802, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000fad57d2039c21811c8f2b5d5b65308aa99d31559000000000000000000000000000000000000000000000045592c2b869be4ecc0" + ), + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 11345, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0], + "transactionHash": "0x44348924e614dec6d93d35139ee2e7984fcda0f13d81a1b927e0f42b0c1b93f0", + "transactionPosition": 20, + "type": "call", + }, + { + "action": { + "from": "0xFAD57d2039C21811C8F2B5D5B65308aa99D31559", + "gas": 371834, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000fad57d2039c21811c8f2b5d5b65308aa99d31559" + ), + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 655, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000fc4ec0955be4a72680c" + ), + }, + "subtraces": 0, + "traceAddress": [0, 3], + "transactionHash": "0x44348924e614dec6d93d35139ee2e7984fcda0f13d81a1b927e0f42b0c1b93f0", + "transactionPosition": 20, + "type": "call", + }, + { + "action": { + "from": "0xE1A612Fc97CCAa4c65Ea2f86eeC1974776343578", + "gas": 44000, + "value": 1136218530785000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xBf864026C2f50ADe50AC9C6a139724Bb72bFd14C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xa9ca435c275811c7b8b253ebb42590b309497a3d8285cb9789b35f6f212c56c0", + "transactionPosition": 21, + "type": "call", + }, + { + "action": { + "from": "0x42d1542cFbE0392ad63bf681FcbE48a06804Dc62", + "gas": 278356, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000016b2e1230fe07a340d4e541bb55d025136d54b2f0000000000000000000000000000000000000000000000eb45995db1cb500000" + ), + "to": "0x0b38210ea11411557c13457D4dA7dC6ea731B88a", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 12946, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x115923f7c2ac2e9dfde3ecad01b3c549e5274c8f5c2424b4c1d5f315265fc528", + "transactionPosition": 22, + "type": "call", + }, + { + "action": { + "from": "0x19e4A1C4095c90800afE8DF09512E361755BC161", + "gas": 723148, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x7af5352f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000853d955acef822db058eb8505911ed77f175b99e000000000000000000000000000000000000000000000044f5dab062ba940000000000000000000000000000000000000000000000000000000a8e6a4f06326000000000000000000000000000000000000000000000000000000000000d59f800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cb0bc7c879bb3e9cfeb9d8efef653f33b3d242e9000000000000000000000000853d955acef822db058eb8505911ed77f175b99e000000000000000000000000579cea1889991f68acc35ff5c3dd0621ff29b0c90000000000000000000000000000000000000000000000128f61e352842811c00000000000000000000000000000000000000000000010002b299d7893ae80000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6c783b257e662ca949b441a4fcb08a53fc49914000000000000000000000000579cea1889991f68acc35ff5c3dd0621ff29b0c9000000000000000000000000853d955acef822db058eb8505911ed77f175b99e0000000000000000000000000000000000000000000010002b299d7893ae8000000000000000000000000000000000000000000000000012db2ca253583c1d000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91" + ), + "to": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 250132, "output": HexBytes("0x")}, + "subtraces": 6, + "traceAddress": [], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 706444, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91" + ), + "to": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2666, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000a1052abd79074f2d" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 693272, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0xD6c783B257E662CA949b441a4FcB08a53fc49914", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2504, + "output": HexBytes( + "0x00000000000000000000000000000000000000000003fbe4251744a378394e2a0000000000000000000000000000000000000000000004c86e68e0c2fc7608c6000000000000000000000000000000000000000000000000000000006333ec4b" + ), + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 685775, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0xcB0bC7C879bb3E9CFEB9d8EFef653F33B3d242e9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2470, + "output": HexBytes( + "0x000000000000000000000000000000000000000000ec90113cc16446f57ea0f9000000000000000000000000000000000000000000011181d0ded8cc0fab8b37000000000000000000000000000000000000000000000000000000006333f44f" + ), + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 678276, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cb0bc7c879bb3e9cfeb9d8efef653f33b3d242e9000000000000000000000000853d955acef822db058eb8505911ed77f175b99e000000000000000000000000579cea1889991f68acc35ff5c3dd0621ff29b0c90000000000000000000000000000000000000000000000128f27a8dfa6c87379000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f0000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6c783b257e662ca949b441a4fcb08a53fc49914000000000000000000000000579cea1889991f68acc35ff5c3dd0621ff29b0c9000000000000000000000000853d955acef822db058eb8505911ed77f175b99e000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f000000000000000000000000000000000000000000000012db2ca253583c1d000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91" + ), + "to": "0xcB0bC7C879bb3E9CFEB9d8EFef653F33B3d242e9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 204115, "output": HexBytes("0x")}, + "subtraces": 4, + "traceAddress": [3], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0xcB0bC7C879bb3E9CFEB9d8EFef653F33B3d242e9", + "gas": 652238, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f" + ), + "to": "0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 30046, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0xcB0bC7C879bb3E9CFEB9d8EFef653F33B3d242e9", + "gas": 621639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x10d1e85c0000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cb0bc7c879bb3e9cfeb9d8efef653f33b3d242e9000000000000000000000000853d955acef822db058eb8505911ed77f175b99e000000000000000000000000579cea1889991f68acc35ff5c3dd0621ff29b0c90000000000000000000000000000000000000000000000128f27a8dfa6c87379000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f0000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6c783b257e662ca949b441a4fcb08a53fc49914000000000000000000000000579cea1889991f68acc35ff5c3dd0621ff29b0c9000000000000000000000000853d955acef822db058eb8505911ed77f175b99e000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f000000000000000000000000000000000000000000000012db2ca253583c1d000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91" + ), + "to": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 68322, + "output": HexBytes( + "0x10d1e85c0000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cb0bc7c879bb3e9cfeb9d8efef653f33b3d242e9000000000000000000000000853d955acef822db058eb8505911ed77f175b99e000000000000000000000000579cea1889991f68acc35ff5c3dd0621ff29b0c90000000000000000000000000000000000000000000000128f27a8dfa6c87379000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f0000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6c783b257e662ca949b441a4fcb08a53fc49914000000000000000000000000579cea1889991f68acc35ff5c3dd0621ff29b0c9000000000000000000000000853d955acef822db058eb8505911ed77f175b99e000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f000000000000000000000000000000000000000000000012db2ca253583c1d000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91" + ), + }, + "subtraces": 3, + "traceAddress": [3, 1], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 607207, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000d6c783b257e662ca949b441a4fcb08a53fc49914000000000000000000000000000000000000000000000ffff9cf90b1a26c9f1f" + ), + "to": "0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8146, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3, 1, 0], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 597491, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012db2ca253583c1d000000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea9100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xD6c783B257E662CA949b441a4FcB08a53fc49914", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 43646, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [3, 1, 1], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0xD6c783B257E662CA949b441a4FcB08a53fc49914", + "gas": 577420, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91000000000000000000000000000000000000000000000012db2ca253583c1d00" + ), + "to": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 11123, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3, 1, 1, 0], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0xD6c783B257E662CA949b441a4FcB08a53fc49914", + "gas": 565869, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000d6c783b257e662ca949b441a4fcb08a53fc49914" + ), + "to": "0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000040be41ee6d5551aa5ed49" + ), + }, + "subtraces": 0, + "traceAddress": [3, 1, 1, 1], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0xD6c783B257E662CA949b441a4FcB08a53fc49914", + "gas": 564938, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000d6c783b257e662ca949b441a4fcb08a53fc49914" + ), + "to": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 666, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000004b5933c3e6fa439ebc6" + ), + }, + "subtraces": 0, + "traceAddress": [3, 1, 1, 2], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 553574, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000cb0bc7c879bb3e9cfeb9d8efef653f33b3d242e90000000000000000000000000000000000000000000000128f27a8dfa6c87379" + ), + "to": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8323, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3, 1, 2], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0xcB0bC7C879bb3E9CFEB9d8EFef653F33B3d242e9", + "gas": 554061, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000cb0bc7c879bb3e9cfeb9d8efef653f33b3d242e9" + ), + "to": "0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000ec801142f1d3955312035f" + ), + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0xcB0bC7C879bb3E9CFEB9d8EFef653F33B3d242e9", + "gas": 553006, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000cb0bc7c879bb3e9cfeb9d8efef653f33b3d242e9" + ), + "to": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 666, + "output": HexBytes( + "0x000000000000000000000000000000000000000000011194600681abb673fecb" + ), + }, + "subtraces": 0, + "traceAddress": [3, 3], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 476472, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000000352086e5ce73fc2ec4c41fef56361f7def6ea91" + ), + "to": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 666, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000ed0a24312a7af8b4" + ), + }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x0352086e5Ce73fc2eC4C41fef56361F7dEF6Ea91", + "gas": 2300, + "value": 1167926018433314, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [5], + "transactionHash": "0x96cca7a715699d94646169b9be9e40b8ec08dd09258fdde7b9fd65413d000282", + "transactionPosition": 23, + "type": "call", + }, + { + "action": { + "from": "0x7BEB799366052d6dc32D774617dfB8C455D3b173", + "gas": 0, + "value": 31124609545948299, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x54D7eD95a8cd1282b14a2C843b146CeF93e0AFd6", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x786c4a7a2bc4393c10859e181e0b89bfd794e1a44e45dcea3650f1049cfdc79b", + "transactionPosition": 24, + "type": "call", + }, + { + "action": { + "from": "0x8e8f818d3371F797A2Db7eDB32803607c8b3c6A9", + "gas": 231369, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x2e7a21ce000000000000000000000000ff29d3e552155180809ea3a877408a46200580860000000000000000000000000000000000000000000000ecbc4ca2a472dc000000000000000000000000000000000000000000000000059c675993e79ec0000000000000000000000000000000000000000000000000059137495acc4b400000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000029ae7fcfef700" + ), + "to": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 93629, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + "gas": 221730, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x3850c7bd"), + "to": "0xFf29D3E552155180809ea3A877408A4620058086", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2696, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000059c6a283eaf05b7cb0afffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb7309000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + "gas": 216606, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb0800000000000000000000000098c3d3183c4b8a650614ad179a1a98be0a8d6b8e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000ecbc4ca2a472dc000000000000000000000000000000000000000000000000059137495acc4b40000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xFf29D3E552155180809ea3A877408A4620058086", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 72769, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000ecbc4ca2a472dc0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffe3330796" + ), + }, + "subtraces": 4, + "traceAddress": [1], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0xFf29D3E552155180809ea3A877408A4620058086", + "gas": 180791, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000098c3d3183c4b8a650614ad179a1a98be0a8d6b8e000000000000000000000000000000000000000000000000000000001cccf86a" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 14501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0xFf29D3E552155180809ea3A877408A4620058086", + "gas": 163309, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000ff29d3e552155180809ea3a877408a4620058086" + ), + "to": "0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2591, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000c64da1376a54df96570f" + ), + }, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0xFf29D3E552155180809ea3A877408A4620058086", + "gas": 160006, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e330000000000000000000000000000000000000000000000ecbc4ca2a472dc0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffe333079600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 13756, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 2], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + "gas": 155569, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000ff29d3e552155180809ea3a877408a46200580860000000000000000000000000000000000000000000000ecbc4ca2a472dc0000" + ), + "to": "0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 11257, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 0], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0xFf29D3E552155180809ea3A877408A4620058086", + "gas": 145832, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000ff29d3e552155180809ea3a877408a4620058086" + ), + "to": "0x940a2dB1B7008B6C776d4faaCa729d6d4A4AA551", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 591, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000c73a5d840cf95272570f" + ), + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0x98C3d3183C4b8A650614ad179A1a98be0a8d6B8E", + "gas": 2300, + "value": 733271126112000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xc1ae5ff001e58d2090cb3e21686172064f481229594bccef528c8a7787852b85", + "transactionPosition": 25, + "type": "call", + }, + { + "action": { + "from": "0x000F422887eA7d370FF31173FD3B46c8F66A5B1c", + "gas": 29000, + "value": 35896069711583952, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x5a2337c1eF439CFdB7347F509B1F0e55AaE20414", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x03d1ad74410f3ec5b02abdd9fa4eb2f27510bc0739a88c406b989e5944d73fd7", + "transactionPosition": 26, + "type": "call", + }, + { + "action": { + "from": "0x96B5Ea9aCF9C45fc9898291911fEE702f5CA261E", + "gas": 9000, + "value": 0, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x96B5Ea9aCF9C45fc9898291911fEE702f5CA261E", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xd01a08701962a549fe8688b8808269ed28bcb1be5c7f28a26ac868fa2e543344", + "transactionPosition": 27, + "type": "call", + }, + { + "action": { + "from": "0xd5cf0Cb9a8DF9B46f077f561d8b76c34A69bD82F", + "gas": 477028, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x11f6bff20000000000000000000000000000000000000000000000000302aa7766ef80fc000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007e6782e37278994d1e99f1a5d03309b4b249d919000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000031c2ab99605e535e96097188bc79752e1b3e581700000000000000000000000000000000000000000000003d353cdc1e89880000" + ), + "to": "0x585C3d4Da9b533C7e3dF8AC7356C882859298cEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 93935, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x1bfd4d5ff57aa8a53dd33874ab86fda8f2116d9176e465aa03c1b4aa664a31eb", + "transactionPosition": 28, + "type": "call", + }, + { + "action": { + "from": "0x585C3d4Da9b533C7e3dF8AC7356C882859298cEe", + "gas": 461557, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x7E6782E37278994d1e99f1a5d03309B4b249d919", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2517, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000001b97cca471f0670000000000000000000000000000000000000000000000023c1a01f74d951a73662000000000000000000000000000000000000000000000000000000006331d087" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x1bfd4d5ff57aa8a53dd33874ab86fda8f2116d9176e465aa03c1b4aa664a31eb", + "transactionPosition": 28, + "type": "call", + }, + { + "action": { + "from": "0x585C3d4Da9b533C7e3dF8AC7356C882859298cEe", + "gas": 455157, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000007e6782e37278994d1e99f1a5d03309b4b249d9190000000000000000000000000000000000000000000000000302aa7766ef80fc" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 12862, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x1bfd4d5ff57aa8a53dd33874ab86fda8f2116d9176e465aa03c1b4aa664a31eb", + "transactionPosition": 28, + "type": "call", + }, + { + "action": { + "from": "0x585C3d4Da9b533C7e3dF8AC7356C882859298cEe", + "gas": 441655, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003dcf2c3279fc533bde00000000000000000000000031c2ab99605e535e96097188bc79752e1b3e581700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x7E6782E37278994d1e99f1a5d03309B4b249d919", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 65500, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [2], + "transactionHash": "0x1bfd4d5ff57aa8a53dd33874ab86fda8f2116d9176e465aa03c1b4aa664a31eb", + "transactionPosition": 28, + "type": "call", + }, + { + "action": { + "from": "0x7E6782E37278994d1e99f1a5d03309B4b249d919", + "gas": 421451, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000031c2ab99605e535e96097188bc79752e1b3e581700000000000000000000000000000000000000000000003dcf2c3279fc533bde" + ), + "to": "0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 30185, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x1bfd4d5ff57aa8a53dd33874ab86fda8f2116d9176e465aa03c1b4aa664a31eb", + "transactionPosition": 28, + "type": "call", + }, + { + "action": { + "from": "0x7E6782E37278994d1e99f1a5d03309B4b249d919", + "gas": 391118, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000007e6782e37278994d1e99f1a5d03309b4b249d919" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000001bc7f74be85f5f0fc" + ), + }, + "subtraces": 0, + "traceAddress": [2, 1], + "transactionHash": "0x1bfd4d5ff57aa8a53dd33874ab86fda8f2116d9176e465aa03c1b4aa664a31eb", + "transactionPosition": 28, + "type": "call", + }, + { + "action": { + "from": "0x7E6782E37278994d1e99f1a5d03309B4b249d919", + "gas": 390169, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000007e6782e37278994d1e99f1a5d03309b4b249d919" + ), + "to": "0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 585, + "output": HexBytes( + "0x000000000000000000000000000000000000000000002383d0f3425f5553fa84" + ), + }, + "subtraces": 0, + "traceAddress": [2, 2], + "transactionHash": "0x1bfd4d5ff57aa8a53dd33874ab86fda8f2116d9176e465aa03c1b4aa664a31eb", + "transactionPosition": 28, + "type": "call", + }, + { + "action": { + "from": "0x392027fDc620d397cA27F0c1C3dCB592F27A4dc3", + "gas": 16846, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000d7fb6add631c1a8c897fa8b92e2f349789539a60000000000000000000000000000000000000000000000045af756742af316858" + ), + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13345, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x23e0c28a9b9aac51dcde3800f62f204697372e83e07de431c42bb84d4ac1270e", + "transactionPosition": 29, + "type": "call", + }, + { + "action": { + "from": "0xFd54078bAdD5653571726C3370AfB127351a6f26", + "gas": 69000, + "value": 1266669401104800, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x70108219110dCCC337B9Ac90f6Db612ab1AE91B4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x7b8604005b12dc2df0399229cf67c42c8e6fcaed43e041b144a14addc5016603", + "transactionPosition": 30, + "type": "call", + }, + { + "action": { + "from": "0xdB0E89a9B003A28A4055ef772E345E8089987bfd", + "gas": 69000, + "value": 41617733000800, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xBe83E7Db6C6fb4F5DB4F22294FAF3868Ca443F2B", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1a5dcfb543029f5d549f78cd215208f8297b5ba9c618e4835555f24eaf6a97ed", + "transactionPosition": 31, + "type": "call", + }, + { + "action": { + "from": "0xf2c758db6EF6DDC43CFb0bA2db73ce8Baf21a6e3", + "gas": 0, + "value": 2228410000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x595063172C85B1e8AC2fe74Fcb6b7dC26844CC2D", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x27bc92882541be215a93a9d32b7b0dcab330f5a6d17769e33a5a07aba9f2d0bd", + "transactionPosition": 32, + "type": "call", + }, + { + "action": { + "from": "0xf363119ea245Ef9BCba0a0aDDB73245D46c60960", + "gas": 0, + "value": 1234330035000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x595063172C85B1e8AC2fe74Fcb6b7dC26844CC2D", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x9bf0c37de713bf58a538605ca5eba0d0f8f647c09922fd5d4f7e2f6b1410ea23", + "transactionPosition": 33, + "type": "call", + }, + { + "action": { + "from": "0x7f2328BF075C94EE27029aA0051F05AE2f6a4468", + "gas": 142563, + "value": 19365266496712552, + "callType": "call", + "input": HexBytes( + "0x7ff36ab500000000000000000000000000000000000000000017c656433967b7ac4c555e00000000000000000000000000000000000000000000000000000000000000800000000000000000000000007f2328bf075c94ee27029aa0051f05ae2f6a4468000000000000000000000000000000000000000000000000000000006333fb3f0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000135783b60cf5d71daff7a377f9eb7db8d2deab9e" + ), + "to": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 135063, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000044cc9b76846f680000000000000000000000000000000000000000001903d9c752d12325d2ebdd" + ), + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0xa08f2afe43351449e3a45e9ee9c823ccb9eafbf048634a9888675f6dc81349df", + "transactionPosition": 34, + "type": "call", + }, + { + "action": { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 135607, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x4f4d050d5C86dD32D276a8D066fA1932EB241c1b", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2504, + "output": HexBytes( + "0x0000000000000000000000000000000000000000c4835c0f884e25302ba0d4d60000000000000000000000000000000000000000000000021a956a29d6c079f0000000000000000000000000000000000000000000000000000000006333f44f" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xa08f2afe43351449e3a45e9ee9c823ccb9eafbf048634a9888675f6dc81349df", + "transactionPosition": 34, + "type": "call", + }, + { + "action": { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 122615, + "value": 19365266496712552, + "callType": "call", + "input": HexBytes("0xd0e30db0"), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 23974, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xa08f2afe43351449e3a45e9ee9c823ccb9eafbf048634a9888675f6dc81349df", + "transactionPosition": 34, + "type": "call", + }, + { + "action": { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 97804, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000004f4d050d5c86dd32d276a8d066fa1932eb241c1b0000000000000000000000000000000000000000000000000044cc9b76846f68" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8062, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xa08f2afe43351449e3a45e9ee9c823ccb9eafbf048634a9888675f6dc81349df", + "transactionPosition": 34, + "type": "call", + }, + { + "action": { + "from": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D", + "gas": 87821, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f0000000000000000000000000000000000000000001903d9c752d12325d2ebdd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f2328bf075c94ee27029aa0051f05ae2f6a446800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x4f4d050d5C86dD32D276a8D066fA1932EB241c1b", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 81258, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [3], + "transactionHash": "0xa08f2afe43351449e3a45e9ee9c823ccb9eafbf048634a9888675f6dc81349df", + "transactionPosition": 34, + "type": "call", + }, + { + "action": { + "from": "0x4f4d050d5C86dD32D276a8D066fA1932EB241c1b", + "gas": 73283, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000007f2328bf075c94ee27029aa0051f05ae2f6a44680000000000000000000000000000000000000000001903d9c752d12325d2ebdd" + ), + "to": "0x135783B60cf5d71DAFF7a377f9eb7dB8D2dEAb9e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 46015, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0xa08f2afe43351449e3a45e9ee9c823ccb9eafbf048634a9888675f6dc81349df", + "transactionPosition": 34, + "type": "call", + }, + { + "action": { + "from": "0x4f4d050d5C86dD32D276a8D066fA1932EB241c1b", + "gas": 27366, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000004f4d050d5c86dd32d276a8d066fa1932eb241c1b" + ), + "to": "0x135783B60cf5d71DAFF7a377f9eb7dB8D2dEAb9e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 886, + "output": HexBytes( + "0x0000000000000000000000000000000000000000c46a5835c0fb540d05cde8f9" + ), + }, + "subtraces": 0, + "traceAddress": [3, 1], + "transactionHash": "0xa08f2afe43351449e3a45e9ee9c823ccb9eafbf048634a9888675f6dc81349df", + "transactionPosition": 34, + "type": "call", + }, + { + "action": { + "from": "0x4f4d050d5C86dD32D276a8D066fA1932EB241c1b", + "gas": 26088, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000004f4d050d5c86dd32d276a8d066fa1932eb241c1b" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000021ada36c54d44e958" + ), + }, + "subtraces": 0, + "traceAddress": [3, 2], + "transactionHash": "0xa08f2afe43351449e3a45e9ee9c823ccb9eafbf048634a9888675f6dc81349df", + "transactionPosition": 34, + "type": "call", + }, + { + "action": { + "from": "0x33030E58c1Ceb9b9d3EE8A0b2A248674C9cB17c7", + "gas": 118862, + "value": 253000000000000000, + "callType": "call", + "input": HexBytes( + "0xa0712d6800000000000000000000000000000000000000000000000000000000000000c9" + ), + "to": "0xcb6B570B8AeAbE38B449Aff31f901B8E1B91e396", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "error": "Reverted", + "result": { + "gasUsed": 30842, + "output": HexBytes( + "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001c4552433732313a20746f6b656e20616c7265616479206d696e74656400000000" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x6450d56ae3625b1a2033ab80bab1d64b836e7d29b5ff3eb767c9bd99c428ebb5", + "transactionPosition": 35, + "type": "call", + }, + { + "action": { + "from": "0xf16E9B0D03470827A95CDfd0Cb8a8A3b46969B91", + "gas": 78356, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000013bf71c7cfb27eeea495e7b6b3908a454c407a8000000000000000000000000000000000000000000000002623de13f9a1a60000" + ), + "to": "0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 17770, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x1c50f2c97fc372bb0abd48e60a5e67325238dc060e0615f8687b884689684d38", + "transactionPosition": 36, + "type": "call", + }, + { + "action": { + "from": "0xDFd5293D8e347dFe59E90eFd55b2956a1343963d", + "gas": 185472, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000007c9e3ec1a3cd5eea12f58ecb8628aa0b833cbe3d0000000000000000000000000000000000000000000001b176ca936057700000" + ), + "to": "0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 20107, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xb85966637dbaf8ccbbde674ec7e0619149e6ae2b634e0d5d65034acf668ce98a", + "transactionPosition": 37, + "type": "call", + }, + { + "action": { + "from": "0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202", + "gas": 175482, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb0000000000000000000000007c9e3ec1a3cd5eea12f58ecb8628aa0b833cbe3d0000000000000000000000000000000000000000000001b176ca936057700000" + ), + "to": "0xe5E8E834086F1a964f9A089eB6Ae11796862e4CE", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 12861, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xb85966637dbaf8ccbbde674ec7e0619149e6ae2b634e0d5d65034acf668ce98a", + "transactionPosition": 37, + "type": "call", + }, + { + "action": { + "from": "0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549", + "gas": 185472, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000985bf21e4071c77df0c5279c35ac767c58266fe1000000000000000000000000000000000000000000000008f5a4b1700f45f000" + ), + "to": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 12580, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x0f7abee5077bf4aeac14a55c12c7df7a043d9700cc57761b344c2365b28b6d2c", + "transactionPosition": 38, + "type": "call", + }, + { + "action": { + "from": "0x28C6c06298d514Db089934071355E5743bf21d60", + "gas": 185472, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000f22c97a596e29b16c1c09dec88a17a40bbd5b49e00000000000000000000000000000000000000000000011f4adcf0767be90000" + ), + "to": "0x514910771AF9Ca656af840dff83E8264EcF986CA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 30445, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x40c38fceedcd1b03ce32979fb9f4175fb3aa95d6d5bb119d684e2d88e62cf094", + "transactionPosition": 39, + "type": "call", + }, + { + "action": { + "from": "0x9696f59E4d72E237BE84fFD425DCaD154Bf96976", + "gas": 185532, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000f43cc69028290cac643acda26447e0438a4a2439000000000000000000000000000000000000000000000000000000004153a200" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x6a6c52cc60b4ea3ce990bd2bec1943dfe2950c3f3be52d3ac7e1e71a44ed92a3", + "transactionPosition": 40, + "type": "call", + }, + { + "action": { + "from": "0x6f6fF053e3B2B9b5403bca233D8a7Ce8484056f9", + "gas": 32271, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfd9f1e100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000006f6ff053e3b2b9b5403bca233d8a7ce8484056f9000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c00000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006333dfda000000000000000000000000000000000000000000000000000000006335a1da0000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000e3566a0fef0c02070000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000f13f29330dca76be26a6c7e268da836aef978e110000000000000000000000000000000000000000000000000000000000000172000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066b214cb09e4000000000000000000000000000000000000000000000000000066b214cb09e40000000000000000000000000006f6ff053e3b2b9b5403bca233d8a7ce8484056f9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68af0bb14000000000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058d15e176280000000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000092c39077bf09cb8149b0222a27785f724ec3d27f" + ), + "to": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 32271, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xeee941aaa821ed7b70144ad564c2c98bcb2a8e1e2181513a6d5bc653e81e0259", + "transactionPosition": 41, + "type": "call", + }, + { + "action": { + "from": "0x56Eddb7aa87536c09CCc2793473599fD21A8b17F", + "gas": 186128, + "value": 14533160000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xFC74E21DD6869B1A503B2e8a617708a5B131ACDd", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x26eee3ca714b8e19ef6a4b385205d7dd1a5df344f2e34cf232d1eae7cb751857", + "transactionPosition": 42, + "type": "call", + }, + { + "action": { + "from": "0xDFd5293D8e347dFe59E90eFd55b2956a1343963d", + "gas": 185508, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000002181cc46014d5454e5a00aa76f4a4e4c87afd48f000000000000000000000000000000000000000000000000000000037e5f5f5b" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xfe0c93f002b5fb58804d65bcc9872ebf0324748d62c336a32897c9b5ec12aec3", + "transactionPosition": 43, + "type": "call", + }, + { + "action": { + "from": "0x28C6c06298d514Db089934071355E5743bf21d60", + "gas": 185520, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000006f433ab671281533ad8d5d0a84de89ac7c64aae2000000000000000000000000000000000000000000000000000000001017df80" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xcbbc531dfdc6414a5a25934ce98e99b58bc94667bca379678f727a08f906d653", + "transactionPosition": 44, + "type": "call", + }, + { + "action": { + "from": "0x4976A4A02f38326660D17bf34b431dC6e2eb2327", + "gas": 186128, + "value": 1253099010000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xF74B5172bE54e9f2f6BFFF064d018232F711bAE2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x44fea50e87ce67241229764d98c575bc45591a476e7b63cb4d90cd0bfead6f0d", + "transactionPosition": 45, + "type": "call", + }, + { + "action": { + "from": "0x9696f59E4d72E237BE84fFD425DCaD154Bf96976", + "gas": 186128, + "value": 93445500000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xdbb36ee008FA0C6e6836989438c2B7C968fCF06d", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x43fd9fbe65bf1ed170514d3ac991c9ce572013cae49f788062dcbabca9b1db51", + "transactionPosition": 46, + "type": "call", + }, + { + "action": { + "from": "0x56Eddb7aa87536c09CCc2793473599fD21A8b17F", + "gas": 185532, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000c6c2c79d29630643e2589f0f7de7bba99f34d4970000000000000000000000000000000000000000000000000000000005aca300" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xefc24ceb70523ebc5dc119060a22210c6637ded58f15766fdde2677bb7a2de66", + "transactionPosition": 47, + "type": "call", + }, + { + "action": { + "from": "0xDFd5293D8e347dFe59E90eFd55b2956a1343963d", + "gas": 186128, + "value": 499040000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x81f6E9966F3786970927d5B847c68A9830CB14fE", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x7e815928c663b393494c33d16e2f894f90635aa23ed2fb1c665699eadc4a9884", + "transactionPosition": 48, + "type": "call", + }, + { + "action": { + "from": "0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549", + "gas": 185520, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000fedc8c9f518ab32212bed05081ac2be860cc2ae70000000000000000000000000000000000000000000000000000000042d11a40" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x9a8c4f892501af624e016a637e1721a30d43556ae87f899d39229ecf2008bedf", + "transactionPosition": 49, + "type": "call", + }, + { + "action": { + "from": "0x28C6c06298d514Db089934071355E5743bf21d60", + "gas": 186128, + "value": 374026950000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xFCf820d0847E485d9d858234b1E8E48542E9bCf8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xe442135f00989923b0ea29109a72623e7d8adf8fce34412abab1d34144dfb4e6", + "transactionPosition": 50, + "type": "call", + }, + { + "action": { + "from": "0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549", + "gas": 186128, + "value": 435757510000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x9F6a0ea6938f4797861556Dbd65444765BeDF95f", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x65991660a702fa60c4480f2170a30d50a5bdb9e26069677916179e5a5adbdad0", + "transactionPosition": 51, + "type": "call", + }, + { + "action": { + "from": "0xB8bfA0945B50f8704A6a53DFeB39462CE536e043", + "gas": 48380, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000b12739d65f4f02c9f5e628e1a26fd5014f1aaef3000000000000000000000000000000000000000000000000000000011d20b4d0" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3584a9ad3d5cd88ba7bbb1ab5b33ea3b5221a4d73ae536ee39708410fd9c31d8", + "transactionPosition": 52, + "type": "call", + }, + { + "action": { + "from": "0x9430801EBAf509Ad49202aaBC5F5Bc6fd8A3dAf8", + "gas": 21000, + "value": 20000000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x7f36c020f878AC4c08E142625DD8d44B418D4CCe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xcc09909856ce2eae7d5c3d81d7d7409daa3df331956cc2168ad9cde80e567ad9", + "transactionPosition": 53, + "type": "call", + }, + { + "action": { + "from": "0xaaD69e7B638205f2f1E3dc563BCC91D4b18d9284", + "gas": 223160, + "value": 7799460277348807, + "callType": "call", + "input": HexBytes( + "0x5cf5402600000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000001b6ea1d2adadd700000000000000000000000017ef75aa22dd5f6c2763b8304ab24f40ee54d48a000000000000000000000000000000000000000000000000000046ef8897bbf00000000000000000000000000000000000000000000000000000000000000128d9627aa40000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000001b6ea1d2adadd700000000000000000000000000000000000000000000004d85081e7c27870c1900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000017ef75aa22dd5f6c2763b8304ab24f40ee54d48a869584cd000000000000000000000000be5998d3d0e9409474ef18abc30436574604b0c500000000000000000000000000000000000000000000006eeddaaaf96333f452000000000000000000000000000000000000000000000000" + ), + "to": "0xe66B31678d6C16E9ebf358268a790B763C133750", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 140343, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000004feacbab4dd993243a" + ), + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xe66B31678d6C16E9ebf358268a790B763C133750", + "gas": 207549, + "value": 77994602773488, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x382fFCe2287252F930E1C8DC9328dac5BF282bA1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xe66B31678d6C16E9ebf358268a790B763C133750", + "gas": 195816, + "value": 7721465674575319, + "callType": "call", + "input": HexBytes( + "0xd9627aa40000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000001b6ea1d2adadd700000000000000000000000000000000000000000000004d85081e7c27870c1900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000017ef75aa22dd5f6c2763b8304ab24f40ee54d48a869584cd000000000000000000000000be5998d3d0e9409474ef18abc30436574604b0c500000000000000000000000000000000000000000000006eeddaaaf96333f452" + ), + "to": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 104912, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000004feacbab4dd993243a" + ), + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF", + "gas": 187266, + "value": 7721465674575319, + "callType": "delegatecall", + "input": HexBytes( + "0xd9627aa40000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000001b6ea1d2adadd700000000000000000000000000000000000000000000004d85081e7c27870c1900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee00000000000000000000000017ef75aa22dd5f6c2763b8304ab24f40ee54d48a869584cd000000000000000000000000be5998d3d0e9409474ef18abc30436574604b0c500000000000000000000000000000000000000000000006eeddaaaf96333f452" + ), + "to": "0xf9b30557AfcF76eA82C04015D80057Fa2147Dfa9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 99158, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000004feacbab4dd993243a" + ), + }, + "subtraces": 4, + "traceAddress": [1, 0], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF", + "gas": 173481, + "value": 7721465674575319, + "callType": "call", + "input": HexBytes("0xd0e30db0"), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 6874, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0, 0], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF", + "gas": 166520, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000ee9b50b74a132912cf55e7699ef3aa7ae2b00e0c000000000000000000000000000000000000000000000000001b6ea1d2adadd7" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8062, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 1], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF", + "gas": 155948, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0xee9b50B74A132912cf55e7699Ef3Aa7aE2b00E0C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2504, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000227138af4348284e2a500000000000000000000000000000000000000000000000000bae2583d6d60e90000000000000000000000000000000000000000000000000000000006333f413" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 2], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF", + "gas": 152998, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f00000000000000000000000000000000000000000000004feacbab4dd993243a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e66b31678d6c16e9ebf358268a790b763c13375000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xee9b50B74A132912cf55e7699Ef3Aa7aE2b00E0C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 67085, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [1, 0, 3], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xee9b50B74A132912cf55e7699Ef3Aa7aE2b00E0C", + "gas": 137442, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000e66b31678d6c16e9ebf358268a790b763c13375000000000000000000000000000000000000000000000004feacbab4dd993243a" + ), + "to": "0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 32260, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 3, 0], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xee9b50B74A132912cf55e7699Ef3Aa7aE2b00E0C", + "gas": 105065, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000ee9b50b74a132912cf55e7699ef3aa7ae2b00e0c" + ), + "to": "0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 468, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000022214de397fa4ebb0616" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 3, 1], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xee9b50B74A132912cf55e7699Ef3Aa7aE2b00E0C", + "gas": 104199, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000ee9b50b74a132912cf55e7699ef3aa7ae2b00e0c" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000bc99425a983bc67" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 3, 2], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xe66B31678d6C16E9ebf358268a790B763C133750", + "gas": 91978, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000e66b31678d6c16e9ebf358268a790b763c133750" + ), + "to": "0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 468, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000004feacbab4dd993243a" + ), + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xe66B31678d6C16E9ebf358268a790B763C133750", + "gas": 90270, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000aad69e7b638205f2f1e3dc563bcc91d4b18d928400000000000000000000000000000000000000000000004feacbab4dd993243a" + ), + "to": "0x17EF75AA22dD5f6C2763b8304Ab24f40eE54D48a", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8360, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0x4800c6b73f11809fad7a7e26176b1da773af4048a924d2433db9d15e7c94d08d", + "transactionPosition": 54, + "type": "call", + }, + { + "action": { + "from": "0xa20E41dD2340E1d738A6555bfaF2f856f4A25637", + "gas": 0, + "value": 1559892055469761500, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x4202a383E8834695d5d6Ccf95Ec010eaA99Ebc1a", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x01e1313588dbb6ca10ad1842229e04b3f023cdcc40c02541bb3f6e621f5d1399", + "transactionPosition": 55, + "type": "call", + }, + { + "action": { + "from": "0xC298Bf0C5dcF8AB55eE568FfBe8b503Da7114675", + "gas": 418033, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x7c025200000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000180000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000074c99f3f5331676f6aec2756e1f39b4fc029a83e000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da71146750000000000000000000000000000000000000000000000001d6978c44b2528e0000000000000000000000000000000000000000000000000000000009efb83660000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dc0c2d6d529883fcacb870d5a8b12dd737459eed4776d18198b0c09094b6511c754bdb8b88b24ea1650f8e68d682822c8badb4259c731807321bc1be3c15c5d2a6e00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000008600000000000000000000000000000000000000000000000000000000000000b4080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a4b757fed600000000000000000000000074c99f3f5331676f6aec2756e1f39b4fc029a83e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000002dc6c0288931fa76d7b0482f0fd0bca9a50bf0d22b9fef0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000604df92bd0800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000500000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064eb5625d9000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000e2e3441004e7d377a2d97142e75d465e0dd36af9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000800000000000000000000000e2e3441004e7d377a2d97142e75d465e0dd36af90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002841e9a2e9200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e8a8700fafd46cbe81aa983d180fe2ee89d3e4010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da7114675000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000a09be57f00000000000000000000000000000000000000000000000000000000a0969e970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006333f4cf0000000000000000000000000000000000000000000000000000018382f200d00267616e64616c6674686562726f776e67786d786e690014248b18d01be8000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000416751eb6bb914a1aaf5dd5f8ce8a17f0214f7cab8536359c5429b91c5251169173ad587504ef1ff24550c3def4cfb352a62d926f4a5187431be1612a4b9f4b6501b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000004480000000000000000000000000000000000000000000000000000000000001040000000000000000000000000000000000000000000000000000000000000064ec77bbdb000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000320000000000000000000000000000003200000000000000000000000000000000000000000000000000000000a09be57f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000024432ce0a7c00000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000044000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a405971224000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000007a229500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004470bdb947000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000a0969e960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016414284aab00000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000100000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb0000000000000000000000001111111254fb6c44bac0bed2854e76f90643097d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e26b9977" + ), + "to": "0x1111111254fb6c44bAC0beD2854e76F90643097d", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 367685, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a028399b0000000000000000000000000000000000000000000000001d6978c44b2528e0000000000000000000000000000000000000000000000000000000000000c547" + ), + }, + "subtraces": 4, + "traceAddress": [], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x1111111254fb6c44bAC0beD2854e76F90643097d", + "gas": 406252, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da711467500000000000000000000000074c99f3f5331676f6aec2756e1f39b4fc029a83e0000000000000000000000000000000000000000000000001d6978c44b2528e0" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 15025, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x1111111254fb6c44bAC0beD2854e76F90643097d", + "gas": 379504, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x2636f7f8000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da7114675c2d6d529883fcacb870d5a8b12dd737459eed4776d18198b0c09094b6511c754bdb8b88b24ea1650f8e68d682822c8badb4259c731807321bc1be3c15c5d2a6e00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000008600000000000000000000000000000000000000000000000000000000000000b4080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a4b757fed600000000000000000000000074c99f3f5331676f6aec2756e1f39b4fc029a83e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000002dc6c0288931fa76d7b0482f0fd0bca9a50bf0d22b9fef0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000604df92bd0800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000500000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064eb5625d9000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000e2e3441004e7d377a2d97142e75d465e0dd36af9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000800000000000000000000000e2e3441004e7d377a2d97142e75d465e0dd36af90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002841e9a2e9200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e8a8700fafd46cbe81aa983d180fe2ee89d3e4010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da7114675000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000a09be57f00000000000000000000000000000000000000000000000000000000a0969e970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006333f4cf0000000000000000000000000000000000000000000000000000018382f200d00267616e64616c6674686562726f776e67786d786e690014248b18d01be8000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000416751eb6bb914a1aaf5dd5f8ce8a17f0214f7cab8536359c5429b91c5251169173ad587504ef1ff24550c3def4cfb352a62d926f4a5187431be1612a4b9f4b6501b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000004480000000000000000000000000000000000000000000000000000000000001040000000000000000000000000000000000000000000000000000000000000064ec77bbdb000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000320000000000000000000000000000003200000000000000000000000000000000000000000000000000000000a09be57f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000024432ce0a7c00000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000044000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a405971224000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000007a229500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004470bdb947000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000a0969e960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016414284aab00000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000100000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb0000000000000000000000001111111254fb6c44bac0bed2854e76f90643097d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 302058, "output": HexBytes("0x")}, + "subtraces": 4, + "traceAddress": [1], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 365155, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xb757fed600000000000000000000000074c99f3f5331676f6aec2756e1f39b4fc029a83e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000002dc6c0288931fa76d7b0482f0fd0bca9a50bf0d22b9fef0000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 92260, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [1, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 358652, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000074c99f3f5331676f6aec2756e1f39b4fc029a83e" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000082813198b8d0d44a32" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 355384, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x74C99F3f5331676f6AEc2756e1F39b4FC029a83E", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2504, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000008263c81ff485af2152000000000000000000000000000000000000000000000000000002c8dd66a6b2000000000000000000000000000000000000000000000000000000006333f437" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 1], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 351652, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a02d7ce3000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x74C99F3f5331676f6AEc2756e1F39b4FC029a83E", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 84284, "output": HexBytes("0x")}, + "subtraces": 4, + "traceAddress": [1, 0, 2], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x74C99F3f5331676f6AEc2756e1F39b4FC029a83E", + "gas": 332961, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000a02d7ce3" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0, 2, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x74C99F3f5331676f6AEc2756e1F39b4FC029a83E", + "gas": 291528, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000074c99f3f5331676f6aec2756e1f39b4fc029a83e" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000082813198b8d0d44a32" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 2, 1], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x74C99F3f5331676f6AEc2756e1F39b4FC029a83E", + "gas": 290597, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000074c99f3f5331676f6aec2756e1f39b4fc029a83e" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1031, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000000002c83d3929cf" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 2, 2], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x74C99F3f5331676f6AEc2756e1F39b4FC029a83E", + "gas": 284478, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0xe380f728"), + "to": "0x9DEB29c9a4c7A88a3C0257393b7f3335338D9A9D", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2342, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000000000000000001e" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 2, 3], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 273216, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xdf92bd0800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000500000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000000005600000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001408000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000064eb5625d9000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000e2e3441004e7d377a2d97142e75d465e0dd36af9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000800000000000000000000000e2e3441004e7d377a2d97142e75d465e0dd36af90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002841e9a2e9200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e8a8700fafd46cbe81aa983d180fe2ee89d3e4010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da7114675000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000a09be57f00000000000000000000000000000000000000000000000000000000a0969e970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006333f4cf0000000000000000000000000000000000000000000000000000018382f200d00267616e64616c6674686562726f776e67786d786e690014248b18d01be8000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000416751eb6bb914a1aaf5dd5f8ce8a17f0214f7cab8536359c5429b91c5251169173ad587504ef1ff24550c3def4cfb352a62d926f4a5187431be1612a4b9f4b6501b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000004480000000000000000000000000000000000000000000000000000000000001040000000000000000000000000000000000000000000000000000000000000064ec77bbdb000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000320000000000000000000000000000003200000000000000000000000000000000000000000000000000000000a09be57f00000000000000000000000000000000000000000000000000000000" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 159328, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [1, 1], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 265948, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0xec77bbdb000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000320000000000000000000000000000003200000000000000000000000000000000000000000000000000000000a09be57f" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2143, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a02d7ce3" + ), + }, + "subtraces": 1, + "traceAddress": [1, 1, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 261072, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1031, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a02d7ce3" + ), + }, + "subtraces": 0, + "traceAddress": [1, 1, 0, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 262522, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xeb5625d9000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000e2e3441004e7d377a2d97142e75d465e0dd36af900000000000000000000000000000000000000000000000000000000a02d7ce3" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 26419, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 1, 1], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 257138, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x095ea7b3000000000000000000000000e2e3441004e7d377a2d97142e75d465e0dd36af900000000000000000000000000000000000000000000000000000000a02d7ce3" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24953, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 1, 1, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 231593, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x1e9a2e9200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e8a8700fafd46cbe81aa983d180fe2ee89d3e4010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da7114675000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000a02d7ce300000000000000000000000000000000000000000000000000000000a09be57f00000000000000000000000000000000000000000000000000000000a0969e970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006333f4cf0000000000000000000000000000000000000000000000000000018382f200d00267616e64616c6674686562726f776e67786d786e690014248b18d01be8000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000416751eb6bb914a1aaf5dd5f8ce8a17f0214f7cab8536359c5429b91c5251169173ad587504ef1ff24550c3def4cfb352a62d926f4a5187431be1612a4b9f4b6501b00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xE2e3441004E7D377A2D97142e75d465e0dD36aF9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 121182, "output": HexBytes("0x")}, + "subtraces": 2, + "traceAddress": [1, 1, 2], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xE2e3441004E7D377A2D97142e75d465e0dD36aF9", + "gas": 224393, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef000000000000000000000000e8a8700fafd46cbe81aa983d180fe2ee89d3e40100000000000000000000000000000000000000000000000000000000a02d7ce3" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 12124, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 1, 2, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xE2e3441004E7D377A2D97142e75d465e0dD36aF9", + "gas": 208301, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xbdeb0ad90000000000000000000000000000000000000000000000000000000000000040000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e8a8700fafd46cbe81aa983d180fe2ee89d3e4010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da7114675000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000a02d7ce300000000000000000000000000000000000000000000000000000000a09be57f00000000000000000000000000000000000000000000000000000000a0969e970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006333f4cf0000000000000000000000000000000000000000000000000000018382f200d00267616e64616c6674686562726f776e67786d786e690014248b18d01be8000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000416751eb6bb914a1aaf5dd5f8ce8a17f0214f7cab8536359c5429b91c5251169173ad587504ef1ff24550c3def4cfb352a62d926f4a5187431be1612a4b9f4b6501b00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xe8A8700faFd46CBE81AA983D180fE2EE89D3E401", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 100932, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 1, 2, 1], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xe8A8700faFd46CBE81AA983D180fE2EE89D3E401", + "gas": 202334, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xbdeb0ad90000000000000000000000000000000000000000000000000000000000000040000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e8a8700fafd46cbe81aa983d180fe2ee89d3e4010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da7114675000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000a02d7ce300000000000000000000000000000000000000000000000000000000a09be57f00000000000000000000000000000000000000000000000000000000a0969e970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006333f4cf0000000000000000000000000000000000000000000000000000018382f200d00267616e64616c6674686562726f776e67786d786e690014248b18d01be8000000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000416751eb6bb914a1aaf5dd5f8ce8a17f0214f7cab8536359c5429b91c5251169173ad587504ef1ff24550c3def4cfb352a62d926f4a5187431be1612a4b9f4b6501b00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x13F257714B2234C7865d5aBe0ec656423BF8be88", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 98140, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 1, 2, 1, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xe8A8700faFd46CBE81AA983D180fE2EE89D3E401", + "gas": 146492, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000a028399b" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 44017, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 1, 2, 1, 0, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 137072, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000a028399b" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 36728, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 1, 2, 1, 0, 0, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 115495, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x32ce0a7c00000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000044000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef00000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a405971224000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000007a229500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004470bdb947000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000a0969e9600000000000000000000000000000000000000000000000000000000" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 5992, "output": HexBytes("0x")}, + "subtraces": 2, + "traceAddress": [1, 2], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 112176, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70bdb947000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000a0969e96" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2284, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [1, 2, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 109677, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a028399b" + ), + }, + "subtraces": 1, + "traceAddress": [1, 2, 0, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 107233, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a08231000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a028399b" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 0, 0, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 108586, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x05971224000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000100000000000000000000000000000000000000000000000000000000007a2295" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 660, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 2, 1], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 108736, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x14284aab00000000000000000000000000000000000000000000000000000000000000808000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000100000000000000000000000000000001000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044a9059cbb0000000000000000000000001111111254fb6c44bac0bed2854e76f90643097d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" + ), + "to": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 32829, "output": HexBytes("0x")}, + "subtraces": 2, + "traceAddress": [1, 3], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 105607, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a028399b" + ), + }, + "subtraces": 1, + "traceAddress": [1, 3, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 103227, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a08231000000000000000000000000288931fa76d7b0482f0fd0bca9a50bf0d22b9fef" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a028399b" + ), + }, + "subtraces": 0, + "traceAddress": [1, 3, 0, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x288931fA76d7B0482f0FD0BCA9a50Bf0D22b9FEf", + "gas": 103196, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000001111111254fb6c44bac0bed2854e76f90643097d00000000000000000000000000000000000000000000000000000000a028399b" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 28717, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 3, 1], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 100851, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb0000000000000000000000001111111254fb6c44bac0bed2854e76f90643097d00000000000000000000000000000000000000000000000000000000a028399b" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 27928, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 3, 1, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x1111111254fb6c44bAC0beD2854e76F90643097d", + "gas": 81585, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000001111111254fb6c44bac0bed2854e76f90643097d" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a028399b" + ), + }, + "subtraces": 1, + "traceAddress": [2], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 79580, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a082310000000000000000000000001111111254fb6c44bac0bed2854e76f90643097d" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000a028399b" + ), + }, + "subtraces": 0, + "traceAddress": [2, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x1111111254fb6c44bAC0beD2854e76F90643097d", + "gas": 78469, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da711467500000000000000000000000000000000000000000000000000000000a028399b" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 28717, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 76510, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb000000000000000000000000c298bf0c5dcf8ab55ee568ffbe8b503da711467500000000000000000000000000000000000000000000000000000000a028399b" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 27928, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x62699a9a1862cffb6de9b5a515e0d88b794f0063d30a18012284fc4e80dfb228", + "transactionPosition": 56, + "type": "call", + }, + { + "action": { + "from": "0x1CbbC8199ec810670b187A93603d8d7495a419fd", + "gas": 62865, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000030741289523c2e4d2a62c7d6722686d14e723851000000000000000000000000000000000000000000000024287c0615218c0000" + ), + "to": "0xdebe620609674F21B1089042527F420372eA98A5", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 15089, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x8201ab74775e340545466eb56aca74a66663cfed5ed882305448008b2958d858", + "transactionPosition": 57, + "type": "call", + }, + { + "action": { + "from": "0x31f8982fEC8a8Af5799868E2Ab61738C5Cf5F7e0", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x4329952703f3451b6bd4192681cc1ac12a9b49c59f8f1cc341916e43edc50528", + "transactionPosition": 58, + "type": "call", + }, + { + "action": { + "from": "0xD947b1482A70606955A5519E42F7E443fFb118ff", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x442faeeac16b6f7d65fd7c446d34a43ce76c75afeef160bbd6b55f91cdc7af67", + "transactionPosition": 59, + "type": "call", + }, + { + "action": { + "from": "0x7d1Bf93a23aEc882A2e2ad066CAa939D7278a777", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xa3345c931a6eefc7ed7fb9871fae9aa58e584b2605fda35a731a2821a5e2d9f9", + "transactionPosition": 60, + "type": "call", + }, + { + "action": { + "from": "0x42dBb58C41464594983Eeb58Ea9ec61B10C9DA6B", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x02dbd77c4d9f4628dbd6c7b6e8aff8a8a0926885b0cfb92470d33e148360da77", + "transactionPosition": 61, + "type": "call", + }, + { + "action": { + "from": "0x70446D32D69C1C2a5b8FBe672541fCdF9f45C199", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x2bd16eb236b0e6ae85530081508a6621caddd08bdce97bde5bbd02c16eaa10b8", + "transactionPosition": 62, + "type": "call", + }, + { + "action": { + "from": "0xe5e7f6783180d786E471862eeecf532337441834", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xead0f6f356d5a7a0a2564f300f72f214128a5332b7f65d8851770435f89874d9", + "transactionPosition": 63, + "type": "call", + }, + { + "action": { + "from": "0x84092801Ee8381905D2d090903570d82b490047c", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x5add90f1d02771bbeae1852b626c67c26461b0369d000f5aaa74570195a3af54", + "transactionPosition": 64, + "type": "call", + }, + { + "action": { + "from": "0x1CbFe2D7180533E0FD23aa182C5dE630B24c6D56", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xee24a81eeb1987a70dfb2ab5715a72fedeaead74789e62ee8969b3064a835c54", + "transactionPosition": 65, + "type": "call", + }, + { + "action": { + "from": "0x53a6FdEf8bdcc806613CdF84fFF68D8e5AD3D9ef", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xa5156879bac0e5aa75b3e12d0b076faf27003d4ddbbf4832581e10904c0f1622", + "transactionPosition": 66, + "type": "call", + }, + { + "action": { + "from": "0xbD2c2F2BA4AC64217183f70AE970286282C4D896", + "gas": 24639, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24639, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xefd2df30d83664509cb1660f10b757c9a4e331c3fb90594b3e9b3169cd8addf1", + "transactionPosition": 67, + "type": "call", + }, + { + "action": { + "from": "0x077D360f11D220E4d5D831430c81C26c9be7C4A4", + "gas": 69000, + "value": 48420970000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x54296C42aAAEfD12786c05d38BB889C0015D83a2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x722282ce78cf93070d5c6eae9a11bf55cf48412f7a7dae849fc3f156d0626841", + "transactionPosition": 68, + "type": "call", + }, + { + "action": { + "from": "0x26cE7c1976C5eec83eA6Ac22D83cB341B08850aF", + "gas": 48268, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x5c19a95c0000000000000000000000006037667a4ee835a0b78258d0cb6ae4c3dd0fa9dcdd0bea13000000000000000000000000000000000000000000000002b5e57320f9bf0e8f" + ), + "to": "0x00000000003b3cc22aF3aE1EAc0440BcEe416B40", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 27417, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xa3faa931dc47cf4357667d1d0b45e855a9b200628287c5584c468de7792c514d", + "transactionPosition": 69, + "type": "call", + }, + { + "action": { + "from": "0x00000000003b3cc22aF3aE1EAc0440BcEe416B40", + "gas": 44432, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xdd0bea13000000000000000000000000000000000000000000000002b5e57320f9bf0e8f" + ), + "to": "0x6037667A4Ee835a0b78258D0cb6Ae4c3DD0fA9dC", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24239, "output": HexBytes("0x")}, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0xa3faa931dc47cf4357667d1d0b45e855a9b200628287c5584c468de7792c514d", + "transactionPosition": 69, + "type": "call", + }, + { + "action": { + "from": "0x00000000003b3cc22aF3aE1EAc0440BcEe416B40", + "gas": 40729, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x2e1a7d4d000000000000000000000000000000000000000000000002b5e57320f9bf0e8f" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 14017, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 0], + "transactionHash": "0xa3faa931dc47cf4357667d1d0b45e855a9b200628287c5584c468de7792c514d", + "transactionPosition": 69, + "type": "call", + }, + { + "action": { + "from": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "gas": 2300, + "value": 50000497023416995471, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x00000000003b3cc22aF3aE1EAc0440BcEe416B40", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 77, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0xa3faa931dc47cf4357667d1d0b45e855a9b200628287c5584c468de7792c514d", + "transactionPosition": 69, + "type": "call", + }, + { + "action": { + "from": "0x00000000003b3cc22aF3aE1EAc0440BcEe416B40", + "gas": 19998, + "value": 50000497023416995471, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x26cE7c1976C5eec83eA6Ac22D83cB341B08850aF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0xa3faa931dc47cf4357667d1d0b45e855a9b200628287c5584c468de7792c514d", + "transactionPosition": 69, + "type": "call", + }, + { + "action": { + "from": "0x6C2eDA9deDBC76A2Dd4b0E05cE5F5ae68B97e60e", + "gas": 0, + "value": 53521723674731263, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x41F3cbBaA1EDA77EccE61E3f6814a843f77CD1eD", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xc411f2adb10200988181ee0bfcfa82ae6816c3081a252ee1f3e1b711514713e7", + "transactionPosition": 70, + "type": "call", + }, + { + "action": { + "from": "0xF062b3fEf2C936e554aaD3Fb0B4009c444A78220", + "gas": 24647, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x160C404B2b49CBC3240055CEaEE026df1e8497A0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24647, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xcc7ff6ce29157a48eb5a666a5d6f1b2d3f686532282ad858afb22828b9cc80dd", + "transactionPosition": 71, + "type": "call", + }, + { + "action": { + "from": "0x6962CA99bdf7349CB1fd18fB39bE16F6EFeF1100", + "gas": 33061, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x42842e0e0000000000000000000000006962ca99bdf7349cb1fd18fb39be16f6efef11000000000000000000000000003516d0795d3515aced88f94d53978460efdbab8c0000000000000000000000000000000000000000000000000000000000001f5c" + ), + "to": "0xe17827609Ac34443B3987661f4e037642F6BD9bA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 32697, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x68b57d91e9bd524d1d8ab7be1dd9aabb89f46856a1c6d05b0d49ca98fd2ceb6a", + "transactionPosition": 72, + "type": "call", + }, + { + "action": { + "from": "0xe17827609Ac34443B3987661f4e037642F6BD9bA", + "gas": 25360, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x42842e0e0000000000000000000000006962ca99bdf7349cb1fd18fb39be16f6efef11000000000000000000000000003516d0795d3515aced88f94d53978460efdbab8c0000000000000000000000000000000000000000000000000000000000001f5c" + ), + "to": "0x64aa40D6865079379e41cA7CF9A001C5B962B94F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 25360, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x68b57d91e9bd524d1d8ab7be1dd9aabb89f46856a1c6d05b0d49ca98fd2ceb6a", + "transactionPosition": 72, + "type": "call", + }, + { + "action": { + "from": "0xA7E5a837382C4B2A484BD2AFAdc8B5A5f6d74e87", + "gas": 1028936, + "value": 0, + "callType": "call", + "input": HexBytes("0x3ccfd60b"), + "to": "0x189Dcc34ad4f90aD4a35160850406fEe3c16c0D7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 78703, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x2e8602f0b166026645e4ec9d9caef4c414b375cd47481a601fda4702bc544f06", + "transactionPosition": 73, + "type": "call", + }, + { + "action": { + "from": "0x189Dcc34ad4f90aD4a35160850406fEe3c16c0D7", + "gas": 1005686, + "value": 0, + "callType": "delegatecall", + "input": HexBytes("0x3ccfd60b"), + "to": "0x63583366554d67319eCE65e1AA031a6817B14123", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 71378, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x2e8602f0b166026645e4ec9d9caef4c414b375cd47481a601fda4702bc544f06", + "transactionPosition": 73, + "type": "call", + }, + { + "action": { + "from": "0x189Dcc34ad4f90aD4a35160850406fEe3c16c0D7", + "gas": 951882, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000a7e5a837382c4b2a484bd2afadc8b5a5f6d74e870000000000000000000000000000000000000000000009695691b976a671c71c" + ), + "to": "0x38B0e3A59183814957D83dF2a97492AED1F003e2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 30748, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x2e8602f0b166026645e4ec9d9caef4c414b375cd47481a601fda4702bc544f06", + "transactionPosition": 73, + "type": "call", + }, + { + "action": { + "from": "0xa5D404f1C6Cf7861869C4Ff954FB653087368b49", + "gas": 24737, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x095ea7b3000000000000000000000000c6a22cc9acd40b4f31467a3580d4d69c3387f3490000000000000000000000000000000000000000000000000000012309ce5400" + ), + "to": "0xa393473d64d2F9F026B60b6Df7859A689715d092", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 24737, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x0faf55ac01d551b886aecf3a06dba27048b570a3109f8adf1f9c4947285562bc", + "transactionPosition": 74, + "type": "call", + }, + { + "action": { + "from": "0xEFCfF30414a3C4720e1a84141fbBA1f16bA8652C", + "gas": 47555, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000073c414e24ae42cb848fd3049bc05a4998e6b96fa0000000000000000000000000000000000000000000000000000000055670a98" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x67698eb06a875e2708a10665f74bd0184d07173053e5f0754e38194d6ba8db1b", + "transactionPosition": 75, + "type": "call", + }, + { + "action": { + "from": "0x0FeaAa5677679bdAa363FB37E72122613FC59F38", + "gas": 0, + "value": 100000000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x30e9c3076Cd4E7453b8F2AEC6B7BC0b759b72231", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x2714ef67d21fa20ca7bf28cea66db566e0ad68d5aed03c501ac683720e9e680c", + "transactionPosition": 76, + "type": "call", + }, + { + "action": { + "from": "0xD4a08cF067c83d1B2Cc1D26831569b7850804bE7", + "gas": 95032, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x647077ee000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000209b000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000633d2eca000000000000000000000000000000000000000000000000000000000000004119339d6d991b6998d0050f817a01b707af126f0bc3ca5d7d896a2fdda0b81da744d6dd52cec6ab22711a16609b8e21d052ea1e4550353e0d7cc7f8cd043244e21c00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xC45f3c76FeeEa53aAE5AFA9b51F166E025145400", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 92850, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [], + "transactionHash": "0x1194635c792344c2a88b105ef26bfb5e8f8c3295910978ba45f655b285ca9772", + "transactionPosition": 77, + "type": "call", + }, + { + "action": { + "from": "0xC45f3c76FeeEa53aAE5AFA9b51F166E025145400", + "gas": 76323, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x6352211e000000000000000000000000000000000000000000000000000000000000209b" + ), + "to": "0x1AFEF6b252cc35Ec061eFe6a9676C90915a73F18", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2916, + "output": HexBytes( + "0x000000000000000000000000d4a08cf067c83d1b2cc1d26831569b7850804be7" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x1194635c792344c2a88b105ef26bfb5e8f8c3295910978ba45f655b285ca9772", + "transactionPosition": 77, + "type": "call", + }, + { + "action": { + "from": "0xC45f3c76FeeEa53aAE5AFA9b51F166E025145400", + "gas": 46095, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x40c10f19000000000000000000000000d4a08cf067c83d1b2cc1d26831569b7850804be70000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x7Eb72B7EC6961C0fad45Ff174403a2B3dc5018f1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 39532, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x1194635c792344c2a88b105ef26bfb5e8f8c3295910978ba45f655b285ca9772", + "transactionPosition": 77, + "type": "call", + }, + { + "action": { + "from": "0xC45f3c76FeeEa53aAE5AFA9b51F166E025145400", + "gas": 6821, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x18160ddd"), + "to": "0x7Eb72B7EC6961C0fad45Ff174403a2B3dc5018f1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2477, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000001701" + ), + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x1194635c792344c2a88b105ef26bfb5e8f8c3295910978ba45f655b285ca9772", + "transactionPosition": 77, + "type": "call", + }, + { + "action": { + "from": "0x5164370B3BA971474d10da1D409ce8872Cb8ca97", + "gas": 31157, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfd9f1e100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000005164370b3ba971474d10da1d409ce8872cb8ca97000000000000000000000000868b0635a8858db9d984b5a27559f961fd2736c0000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006333ef3600000000000000000000000000000000000000000000000000000000633d29960000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013229eed22a7d62618cf13c76c1ffc2168fc47c98453dcc6134f5c88888888888888888888888880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000030000000000000000000000007941d5347148563ca41886c7780e8b2456b839b000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000005164370b3ba971474d10da1d409ce8872cb8ca97" + ), + "to": "0xBb62D5b69AE3A747EcD019aD3bE5EC06D84A21e9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 31157, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x5ccd14a8f0e349a08db8f5484c94284d93d6ab9a50eb2c44d7abace37ef7724e", + "transactionPosition": 78, + "type": "call", + }, + { + "action": { + "from": "0xEAF7057423F7758600a5f8c1DE8446068803771C", + "gas": 265131, + "value": 39393671999522160, + "callType": "call", + "input": HexBytes( + "0x5ae401dc000000000000000000000000000000000000000000000000000000006333fb27000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000e442712a67000000000000000000000000000000000000000000000485ed8c2ddea7c00000000000000000000000000000000000000000000000000000008bf45601ee05700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000eaf7057423f7758600a5f8c1de8446068803771c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000064df3aab3b21cc275bb76c4a581cf8b726478ee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000412210e8a00000000000000000000000000000000000000000000000000000000" + ), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 215637, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000008b4215e5e6780a0000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 259652, + "value": 39393671999522160, + "callType": "delegatecall", + "input": HexBytes( + "0x42712a67000000000000000000000000000000000000000000000485ed8c2ddea7c00000000000000000000000000000000000000000000000000000008bf45601ee05700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000eaf7057423f7758600a5f8c1de8446068803771c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000064df3aab3b21cc275bb76c4a581cf8b726478ee0" + ), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 205016, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000008b4215e5e6780a" + ), + }, + "subtraces": 6, + "traceAddress": [0], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 250769, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x397973Ba6E752943EA9146F88414D1f379fd427e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2504, + "output": HexBytes( + "0x0000000000000000000000000000000000000000003ab50b3c4a14fac426f2940000000000000000000000000000000000000000000000070980a4445369543e000000000000000000000000000000000000000000000000000000006333f383" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 236497, + "value": 39197683581614090, + "callType": "call", + "input": HexBytes("0xd0e30db0"), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 23974, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 212476, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e000000000000000000000000000000000000000000000000008b4215e5e6780a" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8062, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 202911, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x397973Ba6E752943EA9146F88414D1f379fd427e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 504, + "output": HexBytes( + "0x0000000000000000000000000000000000000000003ab50b3c4a14fac426f2940000000000000000000000000000000000000000000000070980a4445369543e000000000000000000000000000000000000000000000000000000006333f383" + ), + }, + "subtraces": 0, + "traceAddress": [0, 3], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 201562, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000070a0be65a394fcc48" + ), + }, + "subtraces": 0, + "traceAddress": [0, 4], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 199360, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f000000000000000000000000000000000000000000000485ed8c2ddea7c1d93a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000eaf7057423f7758600a5f8c1de8446068803771c00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x397973Ba6E752943EA9146F88414D1f379fd427e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 147662, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [0, 5], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x397973Ba6E752943EA9146F88414D1f379fd427e", + "gas": 183079, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000eaf7057423f7758600a5f8c1de8446068803771c000000000000000000000000000000000000000000000485ed8c2ddea7c1d93a" + ), + "to": "0x64Df3aAB3b21cC275bB76c4A581Cf8B726478ee0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 112330, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 5, 0], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x397973Ba6E752943EA9146F88414D1f379fd427e", + "gas": 71883, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e" + ), + "to": "0x64Df3aAB3b21cC275bB76c4A581Cf8B726478ee0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 975, + "output": HexBytes( + "0x0000000000000000000000000000000000000000003ab0854ebde71c1c65195a" + ), + }, + "subtraces": 0, + "traceAddress": [0, 5, 1], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x397973Ba6E752943EA9146F88414D1f379fd427e", + "gas": 70518, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000070a0be65a394fcc48" + ), + }, + "subtraces": 0, + "traceAddress": [0, 5, 2], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 57148, + "value": 39393671999522160, + "callType": "delegatecall", + "input": HexBytes("0x12210e8a"), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 7468, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 49035, + "value": 195988417908070, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xEAF7057423F7758600a5f8c1DE8446068803771C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xc717b2b2671d626c53271c1c0666c280e363b1488c1b04d5aefa79ea8601dff8", + "transactionPosition": 79, + "type": "call", + }, + { + "action": { + "from": "0x3F478216041713A4B1EcB672515cc1b039BBE790", + "gas": 274494, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x6a76120200000000000000000000000040a2accbd92bca938b02010e17a5b8929b49130d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000003c2f80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000004c48d80ff0a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000046b00469788fe6e9e9681c6ebf3bf78e7fd26fc01544600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044bd86e508736166652e657468000000000000000000000000000000000000000000000000000000000000000000000000d662e05ce522b3861b70fc376f60bf50e200abfa00a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c4bf6213e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000005bacaa20000000000000000000000000000000000000000000000012dfc9a7680524000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100142b9e197e79ca94c077397bec601d9758e6ad54bfb308c529fb1ccb649664629507b80014ff96094ee587f52aed4ea98ccdce3ed4cef1139f4cbc45abf4cf3efca2d62b9a7cace73dca2d91ef5456d3fcecc2549d7cfeb33bf495a2505190b3cc6a55a90d3f5817150ad9c8d4fb3c6157c5ab99a2bd90bde5385608e212b9f0c0eb5e6c10b114900b7f894fcd9ba6126d9495341e2b09a684d822a04ba9e3bf40757bdb25323893eeac40649684dae8d5ac9be1b5688df2c8c77ffb1df3a8920c9493e26704a190c539948597a25dd0eadc3e9d3c04eef5e8bbb84dff18696e8fd0248ce2387d7c823f3b28280a73edcfd1b00d103210f5ca8f817b8c90519736c3b51ea1b6472ba406c4456d5b01c3b59343e564aae747fdd47ff6dc8ff4629d28252544a7e92977dccd4b30fb02073f088b2ad1cf0b7f5b2205842f5a78ba2580459420e11a06505b18e5ee6f8ded5bb92ee903d2eaf5d63bbecd73e213ca0870e463abf45cb18f85a835919099f45c6c56581232b3be9c06448420b35c94f4f3628f31b808b09ced67b073ab97919ba14e9389e154be4fe2b10fcdd327302fdc9a0b8cea5373715d2fce8d9ddd244f4259aafb0a21305edfdda956dd84359d69bacd790ff82f7310dd382bf3f53e885e74f5dad9b3aeb7fe96ce926ff47f8e2791b9d07b3e620189a36bf17e30c874e66b205c79492a16cd5a9c5bb65b700a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640087b83f9aef04d6a9b38aab1023696e3b35434a8ba4c1611b39074722e31473dd333d27000000000000000000000000826f446c587159897db0ae01192da1691f12007f0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000410ff58feb0cba6ef7e22c415a7936b8a81fa384ebc5d2ec3718cc5e72730ddcdd296b0b29dd3aba9c64edde30f65ea98066a2cfa3412f9877d6bf3fded867ffd01b00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x826f446C587159897Db0aE01192dA1691f12007f", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 228534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0x826f446C587159897Db0aE01192dA1691f12007f", + "gas": 265117, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x6a76120200000000000000000000000040a2accbd92bca938b02010e17a5b8929b49130d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000003c2f80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000004c48d80ff0a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000046b00469788fe6e9e9681c6ebf3bf78e7fd26fc01544600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044bd86e508736166652e657468000000000000000000000000000000000000000000000000000000000000000000000000d662e05ce522b3861b70fc376f60bf50e200abfa00a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c4bf6213e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000005bacaa20000000000000000000000000000000000000000000000012dfc9a7680524000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100142b9e197e79ca94c077397bec601d9758e6ad54bfb308c529fb1ccb649664629507b80014ff96094ee587f52aed4ea98ccdce3ed4cef1139f4cbc45abf4cf3efca2d62b9a7cace73dca2d91ef5456d3fcecc2549d7cfeb33bf495a2505190b3cc6a55a90d3f5817150ad9c8d4fb3c6157c5ab99a2bd90bde5385608e212b9f0c0eb5e6c10b114900b7f894fcd9ba6126d9495341e2b09a684d822a04ba9e3bf40757bdb25323893eeac40649684dae8d5ac9be1b5688df2c8c77ffb1df3a8920c9493e26704a190c539948597a25dd0eadc3e9d3c04eef5e8bbb84dff18696e8fd0248ce2387d7c823f3b28280a73edcfd1b00d103210f5ca8f817b8c90519736c3b51ea1b6472ba406c4456d5b01c3b59343e564aae747fdd47ff6dc8ff4629d28252544a7e92977dccd4b30fb02073f088b2ad1cf0b7f5b2205842f5a78ba2580459420e11a06505b18e5ee6f8ded5bb92ee903d2eaf5d63bbecd73e213ca0870e463abf45cb18f85a835919099f45c6c56581232b3be9c06448420b35c94f4f3628f31b808b09ced67b073ab97919ba14e9389e154be4fe2b10fcdd327302fdc9a0b8cea5373715d2fce8d9ddd244f4259aafb0a21305edfdda956dd84359d69bacd790ff82f7310dd382bf3f53e885e74f5dad9b3aeb7fe96ce926ff47f8e2791b9d07b3e620189a36bf17e30c874e66b205c79492a16cd5a9c5bb65b700a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640087b83f9aef04d6a9b38aab1023696e3b35434a8ba4c1611b39074722e31473dd333d27000000000000000000000000826f446c587159897db0ae01192da1691f12007f0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000410ff58feb0cba6ef7e22c415a7936b8a81fa384ebc5d2ec3718cc5e72730ddcdd296b0b29dd3aba9c64edde30f65ea98066a2cfa3412f9877d6bf3fded867ffd01b00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 223320, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0x826f446C587159897Db0aE01192dA1691f12007f", + "gas": 239379, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x8d80ff0a0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000046b00469788fe6e9e9681c6ebf3bf78e7fd26fc01544600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044bd86e508736166652e657468000000000000000000000000000000000000000000000000000000000000000000000000d662e05ce522b3861b70fc376f60bf50e200abfa00a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c4bf6213e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000005bacaa20000000000000000000000000000000000000000000000012dfc9a7680524000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100142b9e197e79ca94c077397bec601d9758e6ad54bfb308c529fb1ccb649664629507b80014ff96094ee587f52aed4ea98ccdce3ed4cef1139f4cbc45abf4cf3efca2d62b9a7cace73dca2d91ef5456d3fcecc2549d7cfeb33bf495a2505190b3cc6a55a90d3f5817150ad9c8d4fb3c6157c5ab99a2bd90bde5385608e212b9f0c0eb5e6c10b114900b7f894fcd9ba6126d9495341e2b09a684d822a04ba9e3bf40757bdb25323893eeac40649684dae8d5ac9be1b5688df2c8c77ffb1df3a8920c9493e26704a190c539948597a25dd0eadc3e9d3c04eef5e8bbb84dff18696e8fd0248ce2387d7c823f3b28280a73edcfd1b00d103210f5ca8f817b8c90519736c3b51ea1b6472ba406c4456d5b01c3b59343e564aae747fdd47ff6dc8ff4629d28252544a7e92977dccd4b30fb02073f088b2ad1cf0b7f5b2205842f5a78ba2580459420e11a06505b18e5ee6f8ded5bb92ee903d2eaf5d63bbecd73e213ca0870e463abf45cb18f85a835919099f45c6c56581232b3be9c06448420b35c94f4f3628f31b808b09ced67b073ab97919ba14e9389e154be4fe2b10fcdd327302fdc9a0b8cea5373715d2fce8d9ddd244f4259aafb0a21305edfdda956dd84359d69bacd790ff82f7310dd382bf3f53e885e74f5dad9b3aeb7fe96ce926ff47f8e2791b9d07b3e620189a36bf17e30c874e66b205c79492a16cd5a9c5bb65b700a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640087b83f9aef04d6a9b38aab1023696e3b35434a8ba4c1611b39074722e31473dd333d27000000000000000000000000826f446c587159897db0ae01192da1691f12007f0000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000" + ), + "to": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 201030, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [0, 0], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0x826f446C587159897Db0aE01192dA1691f12007f", + "gas": 232202, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xbd86e508736166652e657468000000000000000000000000000000000000000000000000000000000000000000000000d662e05ce522b3861b70fc376f60bf50e200abfa" + ), + "to": "0x469788fE6E9E9681C6ebF3bF78e7Fd26Fc015446", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24983, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0x826f446C587159897Db0aE01192dA1691f12007f", + "gas": 204798, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xbf6213e4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000005bacaa20000000000000000000000000000000000000000000000012dfc9a7680524000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100142b9e197e79ca94c077397bec601d9758e6ad54bfb308c529fb1ccb649664629507b80014ff96094ee587f52aed4ea98ccdce3ed4cef1139f4cbc45abf4cf3efca2d62b9a7cace73dca2d91ef5456d3fcecc2549d7cfeb33bf495a2505190b3cc6a55a90d3f5817150ad9c8d4fb3c6157c5ab99a2bd90bde5385608e212b9f0c0eb5e6c10b114900b7f894fcd9ba6126d9495341e2b09a684d822a04ba9e3bf40757bdb25323893eeac40649684dae8d5ac9be1b5688df2c8c77ffb1df3a8920c9493e26704a190c539948597a25dd0eadc3e9d3c04eef5e8bbb84dff18696e8fd0248ce2387d7c823f3b28280a73edcfd1b00d103210f5ca8f817b8c90519736c3b51ea1b6472ba406c4456d5b01c3b59343e564aae747fdd47ff6dc8ff4629d28252544a7e92977dccd4b30fb02073f088b2ad1cf0b7f5b2205842f5a78ba2580459420e11a06505b18e5ee6f8ded5bb92ee903d2eaf5d63bbecd73e213ca0870e463abf45cb18f85a835919099f45c6c56581232b3be9c06448420b35c94f4f3628f31b808b09ced67b073ab97919ba14e9389e154be4fe2b10fcdd327302fdc9a0b8cea5373715d2fce8d9ddd244f4259aafb0a21305edfdda956dd84359d69bacd790ff82f7310dd382bf3f53e885e74f5dad9b3aeb7fe96ce926ff47f8e2791b9d07b3e620189a36bf17e30c874e66b205c79492a16cd5a9c5bb65b7" + ), + "to": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 75351, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 0, 1], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "gas": 188502, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000a0b937d5c8e32a80e3a8ed4227cd020221544ee6" + ), + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2886, + "output": HexBytes( + "0x000000000000000000000000000000000000000000295bd306348cee3284339a" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 1, 0], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0x826f446C587159897Db0aE01192dA1691f12007f", + "gas": 130274, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x0087b83f9aef04d6a9b38aab1023696e3b35434a8ba4c1611b39074722e31473dd333d27000000000000000000000000826f446c587159897db0ae01192da1691f12007f0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ), + "to": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 93862, "output": HexBytes("0x")}, + "subtraces": 7, + "traceAddress": [0, 0, 2], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "gas": 119997, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x095ea7b30000000000000000000000008cf60b289f8d31f737049b590b5e4285ff0bd1d10000000000000000000000000000000000000000000000000de0b6b3a7640000" + ), + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 25285, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 0], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "gas": 94401, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000a0b937d5c8e32a80e3a8ed4227cd020221544ee6" + ), + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 886, + "output": HexBytes( + "0x000000000000000000000000000000000000000000295bd306348cee3284339a" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 1], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "gas": 92834, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000826f446c587159897db0ae01192da1691f12007f" + ), + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2886, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 2], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "gas": 85106, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x468721a70000000000000000000000005afe3855358e112b5647b952709e6165e1c1eeee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006423b872dd000000000000000000000000a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000826f446c587159897db0ae01192da1691f12007f0000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x8CF60B289f8d31F737049B590b5E4285Ff0Bd1D1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 41825, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [0, 0, 2, 3], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0x8CF60B289f8d31F737049B590b5E4285Ff0Bd1D1", + "gas": 79018, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x468721a70000000000000000000000005afe3855358e112b5647b952709e6165e1c1eeee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006423b872dd000000000000000000000000a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000826f446c587159897db0ae01192da1691f12007f0000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 36946, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [0, 0, 2, 3, 0], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0x8CF60B289f8d31F737049B590b5E4285Ff0Bd1D1", + "gas": 74535, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd000000000000000000000000a0b937d5c8e32a80e3a8ed4227cd020221544ee6000000000000000000000000826f446c587159897db0ae01192da1691f12007f0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ), + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 32341, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 3, 0, 0], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "gas": 43002, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x095ea7b30000000000000000000000008cf60b289f8d31f737049b590b5e4285ff0bd1d10000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 3285, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 4], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "gas": 39062, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000a0b937d5c8e32a80e3a8ed4227cd020221544ee6" + ), + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 886, + "output": HexBytes( + "0x000000000000000000000000000000000000000000295bd2f853d63a8b20339a" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 5], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xA0b937D5c8E32a80E3a8ed4227CD020221544ee6", + "gas": 37498, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000826f446c587159897db0ae01192da1691f12007f" + ), + "to": "0x5aFE3855358E112B5647B952709E6165e1c1eEEe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 886, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 6], + "transactionHash": "0xc27273dc6e631d275baa527e1b07cd9097887317c26034bf8ea7bbe38c9353f0", + "transactionPosition": 80, + "type": "call", + }, + { + "action": { + "from": "0xE0F06628c2791D1D1Ce7152EB6c7f4f363aaB666", + "gas": 73199, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000003319ed9a3a12e4cbc6c183464c05a0e9950ce53b000000000000000000000000000000000000000000000000000000000bebc200" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x68c46c1ff47dbafc55b1792d90ead3cb2f77e40162701f5f591cf4e939816ddf", + "transactionPosition": 81, + "type": "call", + }, + { + "action": { + "from": "0xcE87E19d211a00955FBB7dF1613F647e43728083", + "gas": 13162, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000099a4b1b291610c6cff40fd1533c5a046b7128633000000000000000000000000000000000000000000000028fb9b8a8a53500000" + ), + "to": "0xE1BDA0c3Bfa2bE7f740f0119B6a34F057BD58Eba", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13162, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x001dab67b0430ee38bbc51020b3ed3e1ea437fddc46f21f558bb07b7599377c7", + "transactionPosition": 82, + "type": "call", + }, + { + "action": { + "from": "0x4dAC3A5DD68e22fbf178566804bb3B0C00bF07fd", + "gas": 199133, + "value": 1700000000000000, + "callType": "call", + "input": HexBytes( + "0xfb0f3ee1000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000567cbd30698000000000000000000000000001b45abfd4a82c438f1bb63b691ac7c662efcf0c6000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c00000000000000000000000000aeab9ecbfae9a0ec5d6035c887d4d115abcae1d00000000000000000000000000000000000000000000000000000000000001fb700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006333f20f00000000000000000000000000000000000000000000000000000000635b7f0f0000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000e434d9a806d01ead0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000026a74d6728000000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000007bb0f7b08000000000000000000000000000efe00956a448d2ec6a1dc60576386e823ae7451f0000000000000000000000000000000000000000000000000000000000000041d31cd770264207b90dc1c19a43992583c7548475ad941b1bae866acf292e8a7d66fc7d0d362bb09dbc05008ce83e91ad342aee68a9583a4a1eb09f013129f7e41b00000000000000000000000000000000000000000000000000000000000000360c6ebe" + ), + "to": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 196962, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x6041f8446dfb2733b9169dd85f070e339dc5e50cacb3a46b42b113f165518d6c", + "transactionPosition": 83, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 174950, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x0e1d31dc833f3ae65130a500c920351e96a7a3f34a7431f5303ddfd886000229eb5d31b50000000000000000000000004dac3a5dd68e22fbf178566804bb3b0c00bf07fd0000000000000000000000001b45abfd4a82c438f1bb63b691ac7c662efcf0c60000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x004C00500000aD104D7DBd00e3ae0A5C00560C00", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 257, + "output": HexBytes( + "0x0e1d31dc00000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x6041f8446dfb2733b9169dd85f070e339dc5e50cacb3a46b42b113f165518d6c", + "transactionPosition": 83, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 145017, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x4ce34aa2000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000aeab9ecbfae9a0ec5d6035c887d4d115abcae1d00000000000000000000000001b45abfd4a82c438f1bb63b691ac7c662efcf0c60000000000000000000000004dac3a5dd68e22fbf178566804bb3b0c00bf07fd0000000000000000000000000000000000000000000000000000000000001fb70000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x1E0049783F008A0085193E00003D00cd54003c71", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 115736, + "output": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0x6041f8446dfb2733b9169dd85f070e339dc5e50cacb3a46b42b113f165518d6c", + "transactionPosition": 83, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 136844, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd0000000000000000000000001b45abfd4a82c438f1bb63b691ac7c662efcf0c60000000000000000000000004dac3a5dd68e22fbf178566804bb3b0c00bf07fd0000000000000000000000000000000000000000000000000000000000001fb7" + ), + "to": "0xaEab9eCBfae9A0ec5D6035c887D4D115aBcAe1D0", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 109620, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x6041f8446dfb2733b9169dd85f070e339dc5e50cacb3a46b42b113f165518d6c", + "transactionPosition": 83, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 21310, + "value": 42500000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x0000a26b00c1F0DF003000390027140000fAa719", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 85, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x6041f8446dfb2733b9169dd85f070e339dc5e50cacb3a46b42b113f165518d6c", + "transactionPosition": 83, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 11718, + "value": 136000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xeFE00956A448d2EC6A1Dc60576386E823AE7451F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0x6041f8446dfb2733b9169dd85f070e339dc5e50cacb3a46b42b113f165518d6c", + "transactionPosition": 83, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 2373, + "value": 1521500000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x1b45aBFD4a82c438f1BB63b691Ac7c662Efcf0C6", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x6041f8446dfb2733b9169dd85f070e339dc5e50cacb3a46b42b113f165518d6c", + "transactionPosition": 83, + "type": "call", + }, + { + "action": { + "from": "0xE6DBd9495b077A63807E7b17FB45751545910894", + "gas": 0, + "value": 5000000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x727bf745e7afb11Bf40Ca3b2B11c63e00EA656c2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x39b30da08a37c206724acdd1420d14bae4183d081df0cef044c3dd778f8946f0", + "transactionPosition": 84, + "type": "call", + }, + { + "action": { + "from": "0x9BaBfAF25025E304Bc7408A39cf5E40d0120BeaA", + "gas": 0, + "value": 500000000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x0C649D071C687288A325A8aA82EF42a917fE8A0F", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x2a72ae1dae981a2568da14d1b5ecf2d495df086dc1bc6399eaad348e20b5b51c", + "transactionPosition": 85, + "type": "call", + }, + { + "action": { + "from": "0xd7cD7a7555d2aa59c514c18F353E97bDa2a2dAfb", + "gas": 73199, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000ddff626f546da128f773dd794159d627c0a1a5f9000000000000000000000000000000000000000000000000000000001dcd6500" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x6b32636fdf28aed992d59d3f74bf179f047724845fac716ea1f9413dfc119ce6", + "transactionPosition": 86, + "type": "call", + }, + { + "action": { + "from": "0x864D77785594CA373F64Ae773B4c7a5FD0FC15D9", + "gas": 51256, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x379607f5000000000000000000000000000000000000000000000000000000000165aa80" + ), + "to": "0x3333336D579A0107849Eb68C9f1c0B92D48C2889", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 50899, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x6095a3a6e9d6444901e9d66abb6a48cda862d7770ef319e8ed8c5be4ee9e772f", + "transactionPosition": 87, + "type": "call", + }, + { + "action": { + "from": "0x3333336D579A0107849Eb68C9f1c0B92D48C2889", + "gas": 30547, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000864d77785594ca373f64ae773b4c7a5fd0fc15d9000000000000000000000000000000000000000000000000000000000165aa80" + ), + "to": "0x888888848B652B3E3a0f34c96E00EEC0F3a23F72", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 30547, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x6095a3a6e9d6444901e9d66abb6a48cda862d7770ef319e8ed8c5be4ee9e772f", + "transactionPosition": 87, + "type": "call", + }, + { + "action": { + "from": "0x0e9B3bDC2Ad4CDa19c1a1E87B70E40C1fAA70103", + "gas": 460178, + "value": 34500000000000000, + "callType": "call", + "input": HexBytes( + "0x9a2b8115000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000007a919134c04000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000010a4bcb00e2a000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008c0000000000000000000000000000000000000000000000000003c6568f12e8000000000000000000000000000000000000000000000000000000000000000008b00000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000007c4357a150b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000001442a668038da0000000000000000000000000000000000000000000000000000000063341e790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba20000000000000000000000000000000000000000000000000000000000000000937dce60c0607487ab48e8940888e0126e20895d36d0fb34ff61fd5bf290607a75ce861c356fc18ea3c95aeacd97fda964599ed5e55bbfca4c3b76f17d4444e5000000000000000000000000000000000000000000000000000000000000001b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000852cd374bd4a959bab1cde357eee70a40000000000000000000000005b61824a3dce92a045697a6728b14578ce80f6ad00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000633544cc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c076154ff00cf910c8ce2f3b67bd9b496205b2e585d6f304478368c0d702d5e8153d541a06a4ea5a942fc877429cbdb26d08d5ea225988a4481f4efad04794b27d000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000003c6568f12e8000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000003c6568f12e80009a3d1fd36a96fc3997cae2aa27d09d2f272561a88e1737e5de8a71315fcaf608000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001388000000000000000000000000d823c605807cc5e6bd6fc0d7e4eea50d3e2d66cd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e2c284391c000000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000006c4357a150b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000acf9dd96d2c80000000000000000000000000000000000000000000000000000000063341e790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba2000000000000000000000000000000000000000000000000000000000000000041b33bb943baf52b1809711cecd805a2c9ff0d811f8ff88c77a6626407eb83e463c5cdab7a45ee31550d2242fd51b799889b97249409295c5f38b7b213765108000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000006d4951d3ca876c4d680448dfbdcb651500000000000000000000000096707ebb51fe5a0de19e90e66058d111a348b42d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000635b80bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c094ad694e53a2a6802023b2a97afcf3489f46b2afc0f4642b627c9ae8cce959aa3e72370dbcb40a33a99e4c6e232527b1e9100d7958085d681e42e57570e8ec87000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000003e2c284391c000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e2c284391c000445cdd01dba01567c9168748699323dc53f6352df130f4c2b8fa4c2c2e189b6b000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001388000000000000000000000000d823c605807cc5e6bd6fc0d7e4eea50d3e2d66cd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 405658, "output": HexBytes("0x")}, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + "gas": 440886, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0xb1283e77000000000000000000000000000000000000000000000000000000000000000e" + ), + "to": "0xadd91d3EbF809f0058D59Db2AC3632B3ce55f0bA", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 4722, + "output": HexBytes( + "0x000000000000000000000000aeb21626259f7980f5dbd08701fbc555265c7b6a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + "gas": 422800, + "value": 34500000000000000, + "callType": "delegatecall", + "input": HexBytes( + "0xbcb00e2a000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000008c0000000000000000000000000000000000000000000000000003c6568f12e8000000000000000000000000000000000000000000000000000000000000000008b00000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000007c4357a150b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000001442a668038da0000000000000000000000000000000000000000000000000000000063341e790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba20000000000000000000000000000000000000000000000000000000000000000937dce60c0607487ab48e8940888e0126e20895d36d0fb34ff61fd5bf290607a75ce861c356fc18ea3c95aeacd97fda964599ed5e55bbfca4c3b76f17d4444e5000000000000000000000000000000000000000000000000000000000000001b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000852cd374bd4a959bab1cde357eee70a40000000000000000000000005b61824a3dce92a045697a6728b14578ce80f6ad00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000633544cc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c076154ff00cf910c8ce2f3b67bd9b496205b2e585d6f304478368c0d702d5e8153d541a06a4ea5a942fc877429cbdb26d08d5ea225988a4481f4efad04794b27d000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000003c6568f12e8000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000003c6568f12e80009a3d1fd36a96fc3997cae2aa27d09d2f272561a88e1737e5de8a71315fcaf608000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001388000000000000000000000000d823c605807cc5e6bd6fc0d7e4eea50d3e2d66cd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e2c284391c000000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000006c4357a150b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000acf9dd96d2c80000000000000000000000000000000000000000000000000000000063341e790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba2000000000000000000000000000000000000000000000000000000000000000041b33bb943baf52b1809711cecd805a2c9ff0d811f8ff88c77a6626407eb83e463c5cdab7a45ee31550d2242fd51b799889b97249409295c5f38b7b213765108000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000006d4951d3ca876c4d680448dfbdcb651500000000000000000000000096707ebb51fe5a0de19e90e66058d111a348b42d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000635b80bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c094ad694e53a2a6802023b2a97afcf3489f46b2afc0f4642b627c9ae8cce959aa3e72370dbcb40a33a99e4c6e232527b1e9100d7958085d681e42e57570e8ec87000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000003e2c284391c000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e2c284391c000445cdd01dba01567c9168748699323dc53f6352df130f4c2b8fa4c2c2e189b6b000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001388000000000000000000000000d823c605807cc5e6bd6fc0d7e4eea50d3e2d66cd00000000000000000000000000000000000000000000000000000000" + ), + "to": "0xAeB21626259f7980F5dBD08701FBC555265C7b6a", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 374609, "output": HexBytes("0x")}, + "subtraces": 4, + "traceAddress": [1], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + "gas": 399181, + "value": 17000000000000000, + "callType": "call", + "input": HexBytes( + "0x357a150b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000001442a668038da0000000000000000000000000000000000000000000000000000000063341e790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba20000000000000000000000000000000000000000000000000000000000000000937dce60c0607487ab48e8940888e0126e20895d36d0fb34ff61fd5bf290607a75ce861c356fc18ea3c95aeacd97fda964599ed5e55bbfca4c3b76f17d4444e5000000000000000000000000000000000000000000000000000000000000001b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000852cd374bd4a959bab1cde357eee70a40000000000000000000000005b61824a3dce92a045697a6728b14578ce80f6ad00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000633544cc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c076154ff00cf910c8ce2f3b67bd9b496205b2e585d6f304478368c0d702d5e8153d541a06a4ea5a942fc877429cbdb26d08d5ea225988a4481f4efad04794b27d000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000003c6568f12e8000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000003c6568f12e80009a3d1fd36a96fc3997cae2aa27d09d2f272561a88e1737e5de8a71315fcaf608000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001388000000000000000000000000d823c605807cc5e6bd6fc0d7e4eea50d3e2d66cd" + ), + "to": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 160460, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 385404, + "value": 17000000000000000, + "callType": "delegatecall", + "input": HexBytes( + "0x357a150b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000005800000000000000000000000000000000000000000000000000001442a668038da0000000000000000000000000000000000000000000000000000000063341e790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba20000000000000000000000000000000000000000000000000000000000000000937dce60c0607487ab48e8940888e0126e20895d36d0fb34ff61fd5bf290607a75ce861c356fc18ea3c95aeacd97fda964599ed5e55bbfca4c3b76f17d4444e5000000000000000000000000000000000000000000000000000000000000001b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000852cd374bd4a959bab1cde357eee70a40000000000000000000000005b61824a3dce92a045697a6728b14578ce80f6ad00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000633544cc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c076154ff00cf910c8ce2f3b67bd9b496205b2e585d6f304478368c0d702d5e8153d541a06a4ea5a942fc877429cbdb26d08d5ea225988a4481f4efad04794b27d000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000354a6ba7a18000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000003c6568f12e8000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000003c6568f12e80009a3d1fd36a96fc3997cae2aa27d09d2f272561a88e1737e5de8a71315fcaf608000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001388000000000000000000000000d823c605807cc5e6bd6fc0d7e4eea50d3e2d66cd" + ), + "to": "0x6D7812d41A08BC2a910B562d8B56411964A4eD88", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 152762, "output": HexBytes("0x")}, + "subtraces": 4, + "traceAddress": [1, 0, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 341650, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x2c436e5b"), + "to": "0xF849de01B080aDC3A814FaBE1E2087475cF2E354", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 281, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 0, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 340127, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xbc553f0f0000000000000000000000005b61824a3dce92a045697a6728b14578ce80f6ad00000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000008b" + ), + "to": "0xF849de01B080aDC3A814FaBE1E2087475cF2E354", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 55995, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 0, 0, 1], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0xF849de01B080aDC3A814FaBE1E2087475cF2E354", + "gas": 327872, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x42842e0e0000000000000000000000005b61824a3dce92a045697a6728b14578ce80f6ad00000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba2000000000000000000000000000000000000000000000000000000000000008b" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 48707, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 0, 0, 1, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + "gas": 275950, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x150b7a02000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e3540000000000000000000000005b61824a3dce92a045697a6728b14578ce80f6ad000000000000000000000000000000000000000000000000000000000000008b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 793, + "output": HexBytes( + "0x150b7a0200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0, 0, 1, 0, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 274917, + "value": 85000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xD823C605807cC5E6Bd6fC0d7e4eEa50d3e2d66cd", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 55, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0, 0, 2], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 263193, + "value": 16915000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x5B61824a3DCe92A045697A6728B14578CE80F6AD", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0, 0, 3], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + "gas": 240573, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba20000000000000000000000000e9b3bdc2ad4cda19c1a1e87b70e40c1faa70103000000000000000000000000000000000000000000000000000000000000008b" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 28791, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + "gas": 201143, + "value": 17500000000000000, + "callType": "call", + "input": HexBytes( + "0x357a150b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000acf9dd96d2c80000000000000000000000000000000000000000000000000000000063341e790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba2000000000000000000000000000000000000000000000000000000000000000041b33bb943baf52b1809711cecd805a2c9ff0d811f8ff88c77a6626407eb83e463c5cdab7a45ee31550d2242fd51b799889b97249409295c5f38b7b213765108000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000006d4951d3ca876c4d680448dfbdcb651500000000000000000000000096707ebb51fe5a0de19e90e66058d111a348b42d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000635b80bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c094ad694e53a2a6802023b2a97afcf3489f46b2afc0f4642b627c9ae8cce959aa3e72370dbcb40a33a99e4c6e232527b1e9100d7958085d681e42e57570e8ec87000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000003e2c284391c000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e2c284391c000445cdd01dba01567c9168748699323dc53f6352df130f4c2b8fa4c2c2e189b6b000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001388000000000000000000000000d823c605807cc5e6bd6fc0d7e4eea50d3e2d66cd" + ), + "to": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 148401, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 2], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 196908, + "value": 17500000000000000, + "callType": "delegatecall", + "input": HexBytes( + "0x357a150b0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000acf9dd96d2c80000000000000000000000000000000000000000000000000000000063341e790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba2000000000000000000000000000000000000000000000000000000000000000041b33bb943baf52b1809711cecd805a2c9ff0d811f8ff88c77a6626407eb83e463c5cdab7a45ee31550d2242fd51b799889b97249409295c5f38b7b213765108000000000000000000000000000000000000000000000000000000000000001b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000006d4951d3ca876c4d680448dfbdcb651500000000000000000000000096707ebb51fe5a0de19e90e66058d111a348b42d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000635b80bd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c094ad694e53a2a6802023b2a97afcf3489f46b2afc0f4642b627c9ae8cce959aa3e72370dbcb40a33a99e4c6e232527b1e9100d7958085d681e42e57570e8ec87000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000003e2c284391c000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e2c284391c000445cdd01dba01567c9168748699323dc53f6352df130f4c2b8fa4c2c2e189b6b000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000001388000000000000000000000000d823c605807cc5e6bd6fc0d7e4eea50d3e2d66cd" + ), + "to": "0x6D7812d41A08BC2a910B562d8B56411964A4eD88", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 147253, "output": HexBytes("0x")}, + "subtraces": 4, + "traceAddress": [1, 2, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 167886, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x2c436e5b"), + "to": "0xF849de01B080aDC3A814FaBE1E2087475cF2E354", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 281, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 0, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 166363, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xbc553f0f00000000000000000000000096707ebb51fe5a0de19e90e66058d111a348b42d00000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f26000000000000000000000000000000000000000000000000000000000000002b" + ), + "to": "0xF849de01B080aDC3A814FaBE1E2087475cF2E354", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 66961, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [1, 2, 0, 1], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0xF849de01B080aDC3A814FaBE1E2087475cF2E354", + "gas": 161253, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x42842e0e00000000000000000000000096707ebb51fe5a0de19e90e66058d111a348b42d00000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba2000000000000000000000000000000000000000000000000000000000000002b" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 64173, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 2, 0, 1, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + "gas": 96710, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x150b7a02000000000000000000000000f849de01b080adc3a814fabe1e2087475cf2e35400000000000000000000000096707ebb51fe5a0de19e90e66058d111a348b42d000000000000000000000000000000000000000000000000000000000000002b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 793, + "output": HexBytes( + "0x150b7a0200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2, 0, 1, 0, 0], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 92820, + "value": 87500000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xD823C605807cC5E6Bd6fC0d7e4eEa50d3e2d66cd", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 55, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 2, 0, 2], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x74312363e45DCaBA76c59ec49a7Aa8A65a67EeD3", + "gas": 83065, + "value": 17412500000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x96707eBB51FE5a0dE19E90E66058D111A348b42D", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 2, 0, 3], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x83C8F28c26bF6aaca652Df1DbBE0e1b56F8baBa2", + "gas": 54406, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000083c8f28c26bf6aaca652df1dbbe0e1b56f8baba20000000000000000000000000e9b3bdc2ad4cda19c1a1e87b70e40c1faa70103000000000000000000000000000000000000000000000000000000000000002b" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 6891, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0x55a3788904325310606d880fc3b68094eb916aed5aae56dddf4fd3b89fd11a3a", + "transactionPosition": 88, + "type": "call", + }, + { + "action": { + "from": "0x2D28eaC15fB119a78900fa08B17CddA18f7fb5EC", + "gas": 0, + "value": 50000000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xE905b9c4415cAb3654cb730F588c1a4aC29C59c1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x01f3743105a053d772c45a726f91919344cd093bbe448ba2c1cca4527151357b", + "transactionPosition": 89, + "type": "call", + }, + { + "action": { + "from": "0xc03e957cebAABec10ccbA9C3271d10EdeA20073e", + "gas": 139431, + "value": 19000000000000000, + "callType": "call", + "input": HexBytes( + "0xfb0f3ee1000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004020611e32200000000000000000000000000062b261590e0d65285b194948b37eeaade9c8b888000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c0000000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f2600000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006333f3f300000000000000000000000000000000000000000000000000000000635b80f40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000001b0028e44b0000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000001b0028e44b00000000000000000000000000067c86de418948c7a5d72b7f664b551c5f95e274e0000000000000000000000000000000000000000000000000000000000000041baad6522fe4f325eee64b02f4eb8587569a900957cf30d4759e9597480d6acd277cb84c8ab8513cbe3de6b9e445a6b69aa84d297e1a7ab8d5532e99c8ca0498d1c00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 137260, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0xd3e569ea90565e790bc87900f674290be212c552d25bb413f600e1fe169209dd", + "transactionPosition": 90, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 116180, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x0e1d31dc4c98b72308d658b56c06a929c6791ca92d00f414faf9dd10dbc333a05ffa4ea7000000000000000000000000c03e957cebaabec10ccba9c3271d10edea20073e00000000000000000000000062b261590e0d65285b194948b37eeaade9c8b8880000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x004C00500000aD104D7DBd00e3ae0A5C00560C00", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 257, + "output": HexBytes( + "0x0e1d31dc00000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xd3e569ea90565e790bc87900f674290be212c552d25bb413f600e1fe169209dd", + "transactionPosition": 90, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 86247, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000016d1884381d94b372e6020a28bf41bbabe8c1f2600000000000000000000000062b261590e0d65285b194948b37eeaade9c8b888000000000000000000000000c03e957cebaabec10ccba9c3271d10edea20073e00000000000000000000000000000000000000000000000000000000000000dc0000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x1E0049783F008A0085193E00003D00cd54003c71", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 56034, + "output": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0xd3e569ea90565e790bc87900f674290be212c552d25bb413f600e1fe169209dd", + "transactionPosition": 90, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 78993, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000062b261590e0d65285b194948b37eeaade9c8b888000000000000000000000000c03e957cebaabec10ccba9c3271d10edea20073e00000000000000000000000000000000000000000000000000000000000000dc" + ), + "to": "0x16d1884381d94B372e6020a28BF41BBaBe8C1F26", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 49918, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xd3e569ea90565e790bc87900f674290be212c552d25bb413f600e1fe169209dd", + "transactionPosition": 90, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 21310, + "value": 475000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x0000a26b00c1F0DF003000390027140000fAa719", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 85, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xd3e569ea90565e790bc87900f674290be212c552d25bb413f600e1fe169209dd", + "transactionPosition": 90, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 11718, + "value": 475000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x67C86dE418948C7a5d72b7f664b551C5F95e274e", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0xd3e569ea90565e790bc87900f674290be212c552d25bb413f600e1fe169209dd", + "transactionPosition": 90, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 2373, + "value": 18050000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x62B261590e0D65285b194948B37eEAaDE9C8B888", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0xd3e569ea90565e790bc87900f674290be212c552d25bb413f600e1fe169209dd", + "transactionPosition": 90, + "type": "call", + }, + { + "action": { + "from": "0x26A548330E548cE1b938DaC9f5130222f522b5e4", + "gas": 0, + "value": 60771415537162015, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x0F8922e5C5ccC3fa8B9F7f13f3189Ca7397721f9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x933463ae7b1fc39d4f252d31c938b5a9d768d01f521d3b254ae116de2764a6d6", + "transactionPosition": 91, + "type": "call", + }, + { + "action": { + "from": "0x108954d73D674997EEbaeb96CefAC4a41744D188", + "gas": 118862, + "value": 253000000000000000, + "callType": "call", + "input": HexBytes( + "0xa0712d6800000000000000000000000000000000000000000000000000000000000000cb" + ), + "to": "0xcb6B570B8AeAbE38B449Aff31f901B8E1B91e396", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "error": "Reverted", + "result": { + "gasUsed": 30842, + "output": HexBytes( + "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001c4552433732313a20746f6b656e20616c7265616479206d696e74656400000000" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x5327768b86412dc5a79b2c38a3780e61aa13894875f154d2aa275bc75e32c606", + "transactionPosition": 92, + "type": "call", + }, + { + "action": { + "from": "0x258bC09d202e4b62fA8D84B1CdCfd06c9Dc7429B", + "gas": 24615, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa22cb4650000000000000000000000001e0049783f008a0085193e00003d00cd54003c710000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x34Bc797F40Df0445c8429d485232874B15561728", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24615, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x255c5f1233a9c41794535147e6b7d00db8f45f10f2e95779108214ab2c7730b1", + "transactionPosition": 93, + "type": "call", + }, + { + "action": { + "from": "0xf3140BDbC0C880c3eE641aD72cF445D354A59012", + "gas": 128783, + "value": 106000000000000000, + "callType": "call", + "input": HexBytes( + "0xfb0f3ee10000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000152edcb679280000000000000000000000000007eb77bfd9afc2046053619464194132ad2c63c65000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c00000000000000000000000000dcf68c8ebb18df1419c7dff17ed33505faf8a20c000000000000000000000000000000000000000000000000000000000000050200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006333f22500000000000000000000000000000000000000000000000000000000635b7f250000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000d5afb58f4e1adbfe0000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000096a2934a7a0000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000001c3e7b9df6e0000000000000000000000000004e5a0d50de3675b70cff0fab90c8960ade6a93ab000000000000000000000000000000000000000000000000000000000000004115002781e0b70a8751b75afbbebea027d4e13a14d4580e4e064b94573e19caf205a9094da325d1d95d3211118001c3c491b150adf023f7299d3244f3ca2b06421b00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 126612, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x5dcf7fc06962ebc0ceec7c661099bb9f2f318757bf5972334e126b0bc728ff87", + "transactionPosition": 94, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 105699, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x0e1d31dc666cfc8249d1bd06f0859946c6891d5b7ffc3dac55a9873c99eb4bcb645084dc000000000000000000000000f3140bdbc0c880c3ee641ad72cf445d354a590120000000000000000000000007eb77bfd9afc2046053619464194132ad2c63c650000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x004C00500000aD104D7DBd00e3ae0A5C00560C00", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 257, + "output": HexBytes( + "0x0e1d31dc00000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x5dcf7fc06962ebc0ceec7c661099bb9f2f318757bf5972334e126b0bc728ff87", + "transactionPosition": 94, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 75766, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x4ce34aa2000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000dcf68c8ebb18df1419c7dff17ed33505faf8a20c0000000000000000000000007eb77bfd9afc2046053619464194132ad2c63c65000000000000000000000000f3140bdbc0c880c3ee641ad72cf445d354a5901200000000000000000000000000000000000000000000000000000000000005020000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x1E0049783F008A0085193E00003D00cd54003c71", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 39057, + "output": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0x5dcf7fc06962ebc0ceec7c661099bb9f2f318757bf5972334e126b0bc728ff87", + "transactionPosition": 94, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 68675, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd0000000000000000000000007eb77bfd9afc2046053619464194132ad2c63c65000000000000000000000000f3140bdbc0c880c3ee641ad72cf445d354a590120000000000000000000000000000000000000000000000000000000000000502" + ), + "to": "0xDCf68c8eBB18Df1419C7DFf17ed33505Faf8A20C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 32941, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x5dcf7fc06962ebc0ceec7c661099bb9f2f318757bf5972334e126b0bc728ff87", + "transactionPosition": 94, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 27540, + "value": 2650000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x0000a26b00c1F0DF003000390027140000fAa719", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 85, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x5dcf7fc06962ebc0ceec7c661099bb9f2f318757bf5972334e126b0bc728ff87", + "transactionPosition": 94, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 17948, + "value": 7950000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x4E5a0d50De3675b70Cff0FAB90C8960aDE6A93AB", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 6329, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x5dcf7fc06962ebc0ceec7c661099bb9f2f318757bf5972334e126b0bc728ff87", + "transactionPosition": 94, + "type": "call", + }, + { + "action": { + "from": "0x4E5a0d50De3675b70Cff0FAB90C8960aDE6A93AB", + "gas": 12960, + "value": 7950000000000000, + "callType": "delegatecall", + "input": HexBytes("0x"), + "to": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 1504, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x5dcf7fc06962ebc0ceec7c661099bb9f2f318757bf5972334e126b0bc728ff87", + "transactionPosition": 94, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 2373, + "value": 95400000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x7EB77BfD9AFC2046053619464194132AD2c63c65", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x5dcf7fc06962ebc0ceec7c661099bb9f2f318757bf5972334e126b0bc728ff87", + "transactionPosition": 94, + "type": "call", + }, + { + "action": { + "from": "0xB59bff945A74a427c74Fb27Ae423fCF81Da27c24", + "gas": 140774, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfb90b320000000000000000000000000ecdb63c30d46e8c86bf1292fa7d4519535b161c3000000000000000000000000000000000000000000000000000000000000611c" + ), + "to": "0xFfa397285Ce46FB78C588a9e993286AaC68c37cD", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 70774, "output": HexBytes("0x")}, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0xbbbbb6c3d6bda93e291f424649832ac28143649b52e6406f43e696f29f582421", + "transactionPosition": 95, + "type": "call", + }, + { + "action": { + "from": "0xFfa397285Ce46FB78C588a9e993286AaC68c37cD", + "gas": 104430, + "value": 0, + "init": HexBytes( + "0x3d602d80600a3d3981f3363d3d373d3d3d363d73059ffafdc6ef594230de44f824e2bd0a51ca5ded5af43d82803e903d91602b57fd5bf3" + ), + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 9031, + "code": HexBytes( + "0x363d3d373d3d3d363d73059ffafdc6ef594230de44f824e2bd0a51ca5ded5af43d82803e903d91602b57fd5bf3" + ), + "address": "0x0304536d9Ed7fE3aBD2076f913a994DC84E939C4", + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xbbbbb6c3d6bda93e291f424649832ac28143649b52e6406f43e696f29f582421", + "transactionPosition": 95, + "type": "create", + }, + { + "action": { + "from": "0xFfa397285Ce46FB78C588a9e993286AaC68c37cD", + "gas": 95177, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x19ab453c000000000000000000000000ecdb63c30d46e8c86bf1292fa7d4519535b161c3" + ), + "to": "0x0304536d9Ed7fE3aBD2076f913a994DC84E939C4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 25290, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0xbbbbb6c3d6bda93e291f424649832ac28143649b52e6406f43e696f29f582421", + "transactionPosition": 95, + "type": "call", + }, + { + "action": { + "from": "0x0304536d9Ed7fE3aBD2076f913a994DC84E939C4", + "gas": 91096, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x19ab453c000000000000000000000000ecdb63c30d46e8c86bf1292fa7d4519535b161c3" + ), + "to": "0x059FFAFdC6eF594230dE44F824E2bD0A51CA5dED", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 22621, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xbbbbb6c3d6bda93e291f424649832ac28143649b52e6406f43e696f29f582421", + "transactionPosition": 95, + "type": "call", + }, + { + "action": { + "from": "0xe3E0596AC55Ae6044b757baB27426F7dC9e018d4", + "gas": 708016, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xc9807539000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000400010100010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002800000000000000000000000fdbbdb75150c57aeca759e59855f1a380001eff00402030408090d010b0a070e050c00060f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000001e6971e7000000000000000000000000000000000000000000000000000000001e6971e7000000000000000000000000000000000000000000000000000000001e6971e7000000000000000000000000000000000000000000000000000000001e69caea000000000000000000000000000000000000000000000000000000001e69caea000000000000000000000000000000000000000000000000000000001e6bac54000000000000000000000000000000000000000000000000000000001e6bac54000000000000000000000000000000000000000000000000000000001e6bac54000000000000000000000000000000000000000000000000000000001e727466000000000000000000000000000000000000000000000000000000001e74bd35000000000000000000000000000000000000000000000000000000001e7628bd000000000000000000000000000000000000000000000000000000001e79dc57000000000000000000000000000000000000000000000000000000001e7f0ea7000000000000000000000000000000000000000000000000000000001e8771d3000000000000000000000000000000000000000000000000000000001e8771d3000000000000000000000000000000000000000000000000000000001e8771d300000000000000000000000000000000000000000000000000000000000000069aa926428fccd8977bcb6b11035c187e97ee848c5adb189ed174491b9b06023d9632e89194313abb8ca2141807171b8445da8bd343fd82b2a072dcf0d9540e9b685dc31daf22087673024ac91f7ea567f5695052974a415ceb8cade87b1543bd25c5d1bae1d24697ebd9ad3a906178302a030841bf8dc8d36d01c1b2671aa205151dca68d41d948c3e55a32d478b7547606abadc0cf75a9ff27985996b7cd43a911f3c5ac6eb80669f35c20e7fd7c5ffe4fa3e7184e226545dbcbeae8cd10f4a000000000000000000000000000000000000000000000000000000000000000678eef8eb9c42c8cc6025ffc2a19f9addea104d4b0fe8e08a269511f05444480f26f5925d3fba3538e5f8a25bc8fc9da702b136708def12df0503c96873ad84ef1c3f98959954de0100670a69067fc1c302f4e322441a090f0e9e1e0fdb9ae1b94fda056891a8fbea5b3e35bf49cc700957a2f2bbb2e0aec2aec91672eca9a1a07cdd0091038349fdbfcde7a631d2f944a0ed92391b8b2bc841bcb124ac627a3274940dc5e5311b01114be956436868efcb4fbf7b24e09096659f75d7b195f545" + ), + "to": "0xbd9350a3a2fd6e3Ad0a053a567f2609a1bf6c505", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 144515, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x09424eb20228cd916606a02acdb6f1d182249a5950a73282c8197780b5491b16", + "transactionPosition": 96, + "type": "call", + }, + { + "action": { + "from": "0x10e163Df55fFD8C19332CC5FbFdd3135bB31a243", + "gas": 56900, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000004f5febe16e4238c9ed1b5ed8cca8bf2d08a3d1da0000000000000000000000000000000000000000000007aa67eb2c2e14a00000" + ), + "to": "0x12b6893cE26Ea6341919FE289212ef77e51688c8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 30715, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xa76abd7792a83a4b898f2058c2406840ccc59451d99b12e56653b4c7b2b01900", + "transactionPosition": 97, + "type": "call", + }, + { + "action": { + "from": "0xB59bff945A74a427c74Fb27Ae423fCF81Da27c24", + "gas": 478200, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x2da034090000000000000000000000000304536d9ed7fe3abd2076f913a994dc84e939c4000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7" + ), + "to": "0xecdB63C30D46e8c86bf1292fA7D4519535b161c3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 47948, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x105e7cf0b25cd24261c036abc2b46a5936eea632eb96de89c63e616f8b3be881", + "transactionPosition": 98, + "type": "call", + }, + { + "action": { + "from": "0xecdB63C30D46e8c86bf1292fA7D4519535b161c3", + "gas": 457673, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x3ef13367000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7" + ), + "to": "0x0304536d9Ed7fE3aBD2076f913a994DC84E939C4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 34644, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x105e7cf0b25cd24261c036abc2b46a5936eea632eb96de89c63e616f8b3be881", + "transactionPosition": 98, + "type": "call", + }, + { + "action": { + "from": "0x0304536d9Ed7fE3aBD2076f913a994DC84E939C4", + "gas": 447928, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x3ef13367000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7" + ), + "to": "0x059FFAFdC6eF594230dE44F824E2bD0A51CA5dED", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 31975, "output": HexBytes("0x")}, + "subtraces": 2, + "traceAddress": [0, 0], + "transactionHash": "0x105e7cf0b25cd24261c036abc2b46a5936eea632eb96de89c63e616f8b3be881", + "transactionPosition": 98, + "type": "call", + }, + { + "action": { + "from": "0x0304536d9Ed7fE3aBD2076f913a994DC84E939C4", + "gas": 435734, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000000304536d9ed7fe3abd2076f913a994dc84e939c4" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 5031, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000004c4b40" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x105e7cf0b25cd24261c036abc2b46a5936eea632eb96de89c63e616f8b3be881", + "transactionPosition": 98, + "type": "call", + }, + { + "action": { + "from": "0x0304536d9Ed7fE3aBD2076f913a994DC84E939C4", + "gas": 429793, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000ecdb63c30d46e8c86bf1292fa7d4519535b161c300000000000000000000000000000000000000000000000000000000004c4b40" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 20501, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0x105e7cf0b25cd24261c036abc2b46a5936eea632eb96de89c63e616f8b3be881", + "transactionPosition": 98, + "type": "call", + }, + { + "action": { + "from": "0x441aD8454FE01cA70402D69b73fC7D7fc2299857", + "gas": 119134, + "value": 245000000000000000, + "callType": "call", + "input": HexBytes( + "0xfb0f3ee1000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030f5f94ecf94000000000000000000000000000ef134569ec50879f253411c42149ec09638e69fd000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c000000000000000000000000003727ac93ed1ff0472ec91619cfaa011f76a5baae000000000000000000000000000000000000000000000000000000000000110700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006332600e000000000000000000000000000000000000000000000000000000006359ed0e0000000000000000000000000000000000000000000000000000000000000000360c6ebe000000000000000000000000000000000000000079371e3299f47f650000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000015c2a7b13fd0000000000000000000000000000000a26b00c1f0df003000390027140000faa719000000000000000000000000000000000000000000000000004147f713bf70000000000000000000000000008d207b47a26fd218b99f97f171353e448960bfc9000000000000000000000000000000000000000000000000000000000000004154603c8825c5587da4291ad4083a7ccbf02a8014f9771da687da69d5c45e887b3c2ecd2729c35e6e7103e6f8634a8deb69de92f542ad4aaeb3978e98557b6ead1b00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 116963, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0x0978cbeb211b934581d2d2e5f552c61cef51e564923379f99ad6a80dd841b861", + "transactionPosition": 99, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 96201, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x0e1d31dcee980086f6c3b9878113b148263e15e5bedf1bb9d7ad259b403875fc313392fb000000000000000000000000441ad8454fe01ca70402d69b73fc7d7fc2299857000000000000000000000000ef134569ec50879f253411c42149ec09638e69fd0000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x004C00500000aD104D7DBd00e3ae0A5C00560C00", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 257, + "output": HexBytes( + "0x0e1d31dc00000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x0978cbeb211b934581d2d2e5f552c61cef51e564923379f99ad6a80dd841b861", + "transactionPosition": 99, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 66268, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x4ce34aa20000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000003727ac93ed1ff0472ec91619cfaa011f76a5baae000000000000000000000000ef134569ec50879f253411c42149ec09638e69fd000000000000000000000000441ad8454fe01ca70402d69b73fc7d7fc229985700000000000000000000000000000000000000000000000000000000000011070000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x1E0049783F008A0085193E00003D00cd54003c71", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 35737, + "output": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0x0978cbeb211b934581d2d2e5f552c61cef51e564923379f99ad6a80dd841b861", + "transactionPosition": 99, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 59326, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd000000000000000000000000ef134569ec50879f253411c42149ec09638e69fd000000000000000000000000441ad8454fe01ca70402d69b73fc7d7fc22998570000000000000000000000000000000000000000000000000000000000001107" + ), + "to": "0x3727aC93ED1FF0472eC91619CfaA011F76A5BAAe", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 29621, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x0978cbeb211b934581d2d2e5f552c61cef51e564923379f99ad6a80dd841b861", + "transactionPosition": 99, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 21310, + "value": 6125000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x0000a26b00c1F0DF003000390027140000fAa719", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 85, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x0978cbeb211b934581d2d2e5f552c61cef51e564923379f99ad6a80dd841b861", + "transactionPosition": 99, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 11718, + "value": 18375000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x8D207b47A26Fd218b99f97f171353e448960BFc9", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0x0978cbeb211b934581d2d2e5f552c61cef51e564923379f99ad6a80dd841b861", + "transactionPosition": 99, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 2373, + "value": 220500000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xEF134569EC50879F253411C42149eC09638E69fD", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0x0978cbeb211b934581d2d2e5f552c61cef51e564923379f99ad6a80dd841b861", + "transactionPosition": 99, + "type": "call", + }, + { + "action": { + "from": "0x7A4907BDE575123Fb406b3C70BEa0940d03eea2e", + "gas": 115633, + "value": 19200000000000000, + "callType": "call", + "input": HexBytes( + "0xfb0f3ee1000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f18a03b360000000000000000000000000000a660a7ad59d9529700f13c614403b5929802bae3000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c0000000000000000000000000012b180b635dd9f07a78736fb4e43438fcdb41555000000000000000000000000000000000000000000000000000000000000136e00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006332aaab0000000000000000000000000000000000000000000000000000000063578f640000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000d08c8d595c90e7980000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f00000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000001b48eb57e00000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000003691d6afc000000000000000000000000000008e07e198ef6d77cd77cfbc4e9366503eadfdeed000000000000000000000000000000000000000000000000000000000000004182ac12cec0351f0d9477a2c90b881b278ea8eb56a26857d0fc221e0763703a5b0c20febed24a4fd2f46042bafc463efa58bb683592e86a90dd01018cbdd6f1e21c00000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 113462, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 5, + "traceAddress": [], + "transactionHash": "0xebbe947f3619e7001cd9997f61f16acfd545b5074c84fad092e5a2b363c05512", + "transactionPosition": 100, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 92754, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x0e1d31dcae2211d6472fbc23ce9eb74b2c2269d1ecfa912fa52452ed4347b6dcd524f7150000000000000000000000007a4907bde575123fb406b3c70bea0940d03eea2e000000000000000000000000a660a7ad59d9529700f13c614403b5929802bae30000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x004C00500000aD104D7DBd00e3ae0A5C00560C00", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 257, + "output": HexBytes( + "0x0e1d31dc00000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xebbe947f3619e7001cd9997f61f16acfd545b5074c84fad092e5a2b363c05512", + "transactionPosition": 100, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 62821, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000012b180b635dd9f07a78736fb4e43438fcdb41555000000000000000000000000a660a7ad59d9529700f13c614403b5929802bae30000000000000000000000007a4907bde575123fb406b3c70bea0940d03eea2e000000000000000000000000000000000000000000000000000000000000136e0000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x1E0049783F008A0085193E00003D00cd54003c71", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 30831, + "output": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [1], + "transactionHash": "0xebbe947f3619e7001cd9997f61f16acfd545b5074c84fad092e5a2b363c05512", + "transactionPosition": 100, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 55933, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd000000000000000000000000a660a7ad59d9529700f13c614403b5929802bae30000000000000000000000007a4907bde575123fb406b3c70bea0940d03eea2e000000000000000000000000000000000000000000000000000000000000136e" + ), + "to": "0x12b180b635dD9f07a78736fB4E43438fcdb41555", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 24715, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0xebbe947f3619e7001cd9997f61f16acfd545b5074c84fad092e5a2b363c05512", + "transactionPosition": 100, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 22693, + "value": 480000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x0000a26b00c1F0DF003000390027140000fAa719", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 85, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xebbe947f3619e7001cd9997f61f16acfd545b5074c84fad092e5a2b363c05512", + "transactionPosition": 100, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 13101, + "value": 960000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x08E07e198eF6d77cd77cFBC4E9366503EADfDEed", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 1405, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0xebbe947f3619e7001cd9997f61f16acfd545b5074c84fad092e5a2b363c05512", + "transactionPosition": 100, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 2373, + "value": 17760000000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xA660a7AD59D9529700f13c614403B5929802Bae3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0xebbe947f3619e7001cd9997f61f16acfd545b5074c84fad092e5a2b363c05512", + "transactionPosition": 100, + "type": "call", + }, + { + "action": { + "from": "0x845Aa04Faf21F7d445632Cdb85750322553A1395", + "gas": 51568, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000f8f3c1dbc6575874b2c0bcaea553b05d2600cfe600000000000000000000000000000000000000000000000000000000b2d05e00" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 26917, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x80f46ae07bde59613b16e0ba77882743390b6eb682410a30c780a3288810ea84", + "transactionPosition": 101, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 43631, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb000000000000000000000000f8f3c1dbc6575874b2c0bcaea553b05d2600cfe600000000000000000000000000000000000000000000000000000000b2d05e00" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 19628, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x80f46ae07bde59613b16e0ba77882743390b6eb682410a30c780a3288810ea84", + "transactionPosition": 101, + "type": "call", + }, + { + "action": { + "from": "0x6A0Ac34A3726daFF83a83E5e454A4a976e33FFac", + "gas": 29799, + "value": 20000000000000000000, + "callType": "call", + "input": HexBytes( + "0x4b14557e0000000000000000000000006a0ac34a3726daff83a83e5e454a4a976e33ffac000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001158e460913d00000" + ), + "to": "0x64192819Ac13Ef72bF6b5AE239AC672B43a9AF08", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 29486, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xfe4632252c3a16367eadbea91e279e6d36a3cc25976d54758f466b46dcd18803", + "transactionPosition": 102, + "type": "call", + }, + { + "action": { + "from": "0x64192819Ac13Ef72bF6b5AE239AC672B43a9AF08", + "gas": 22170, + "value": 20000000000000000000, + "callType": "delegatecall", + "input": HexBytes( + "0x4b14557e0000000000000000000000006a0ac34a3726daff83a83e5e454a4a976e33ffac000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001158e460913d00000" + ), + "to": "0x71356E37e0368Bd10bFDbF41dC052fE5FA24cD05", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 22170, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xfe4632252c3a16367eadbea91e279e6d36a3cc25976d54758f466b46dcd18803", + "transactionPosition": 102, + "type": "call", + }, + { + "action": { + "from": "0x9077f38Ad1E19a15153e2316Ad9Edb9399a06696", + "gas": 101392, + "value": 70000000000000000, + "callType": "call", + "input": HexBytes( + "0xec91be730000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0xE6A0bD3C8d6f664a6a1D1Ff70e723d352804A2f4", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 60527, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x8da3b9c6101c5aa3606595adb35c1be3c175656596ae4509b9583b71ff59995f", + "transactionPosition": 103, + "type": "call", + }, + { + "action": { + "from": "0x7Ec084f5975a49c5A1E7D3C5870D877d8F98d4Ca", + "gas": 31375, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x095ea7b30000000000000000000000001111111254fb6c44bac0bed2854e76f90643097dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 24420, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xe7af46ff8f590b99f434e17a4f4bef83fbcd0c813fc880169ba10e2b7f9d259e", + "transactionPosition": 104, + "type": "call", + }, + { + "action": { + "from": "0x33be5E9723187141A089432dA6D1583aC14Bbcc4", + "gas": 187348, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x32389b7100000000000000000000000000000000000000000000000000000000000000400000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000060000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000002000000000000000000000000209e639a0ec166ac7a1a4ba41968fa967db30221000000000000000000000000000000000000000000000000000000000000120400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000209e639a0ec166ac7a1a4ba41968fa967db3022100000000000000000000000000000000000000000000000000000000000016ab00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f30000000000000000000000000000000000000000000000000000000000000a0400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f300000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f3000000000000000000000000000000000000000000000000000000000000069600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f3000000000000000000000000000000000000000000000000000000000000011b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f300000000000000000000000000000000000000000000000000000000000008840000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x0000000000c2d145a2526bD8C716263bFeBe1A72", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 184996, + "output": HexBytes( + "0x32389b7100000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x0000000000c2d145a2526bD8C716263bFeBe1A72", + "gas": 165597, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x4ce34aa2000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000002000000000000000000000000209e639a0ec166ac7a1a4ba41968fa967db3022100000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f000000000000000000000000000000000000000000000000000000000000120400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000209e639a0ec166ac7a1a4ba41968fa967db3022100000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f00000000000000000000000000000000000000000000000000000000000016ab00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f300000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f0000000000000000000000000000000000000000000000000000000000000a0400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f300000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f00000000000000000000000000000000000000000000000000000000000000fe00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f300000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f000000000000000000000000000000000000000000000000000000000000069600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f300000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f000000000000000000000000000000000000000000000000000000000000011b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000fde881c7b76ad10b59a82247e1cd3cbad0d739f300000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f00000000000000000000000000000000000000000000000000000000000008840000000000000000000000000000000000000000000000000000000000000001" + ), + "to": "0x1E0049783F008A0085193E00003D00cd54003c71", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 165477, + "output": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 7, + "traceAddress": [0], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 157103, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f0000000000000000000000000000000000000000000000000000000000001204" + ), + "to": "0x209e639a0EC166Ac7a1A4bA41968fa967dB30221", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 29627, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 126879, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f00000000000000000000000000000000000000000000000000000000000016ab" + ), + "to": "0x209e639a0EC166Ac7a1A4bA41968fa967dB30221", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 16027, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 107581, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f0000000000000000000000000000000000000000000000000000000000000a04" + ), + "to": "0xFDe881c7B76ad10B59a82247E1cD3CBAd0d739F3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 45509, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 2], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 61723, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f00000000000000000000000000000000000000000000000000000000000000fe" + ), + "to": "0xFDe881c7B76ad10B59a82247E1cD3CBAd0d739F3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 14809, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 3], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 46085, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f0000000000000000000000000000000000000000000000000000000000000696" + ), + "to": "0xFDe881c7B76ad10B59a82247E1cD3CBAd0d739F3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 14809, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 4], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 30447, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f000000000000000000000000000000000000000000000000000000000000011b" + ), + "to": "0xFDe881c7B76ad10B59a82247E1cD3CBAd0d739F3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 14809, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 5], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 14809, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000033be5e9723187141a089432da6d1583ac14bbcc4000000000000000000000000689fd9a89c8ac640ee7ce6d1132447e68191e61f0000000000000000000000000000000000000000000000000000000000000884" + ), + "to": "0xFDe881c7B76ad10B59a82247E1cD3CBAd0d739F3", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 14809, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 6], + "transactionHash": "0x8f14db912558c6ea8e4aac57d92e3dc907409b4a3b5745989dfb4ef05658d3a7", + "transactionPosition": 105, + "type": "call", + }, + { + "action": { + "from": "0x43e4715ae093a4C86B5eCdDb52216c4f879e9672", + "gas": 256368, + "value": 10245, + "callType": "call", + "input": HexBytes( + "0x1cff79cd000000000000000000000000fc588723ead01d032b837229577f6a532e5a0c20000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c41f3cc1fe0000000000000000000000000000000000000000000000000000000aca87a03400000000000000000000000000000000000000000000000011996b3dff2fb9000000000000000000000000000000000000006db804f4fa6c673cecb87e7d867e0000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000006333f4940000000000000000000000000000000000006db9cb19d7e48cb4977f3ae42ebf00000000000000000000000000000000000000000000000000000000" + ), + "to": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "error": "Reverted", + "result": {"gasUsed": 9506, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xc96ca0a60cede355f1e6a01572c372cb5bfe2ae57ea368824955977983949202", + "transactionPosition": 106, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 248631, + "value": 10245, + "callType": "delegatecall", + "input": HexBytes( + "0x1f3cc1fe0000000000000000000000000000000000000000000000000000000aca87a03400000000000000000000000000000000000000000000000011996b3dff2fb9000000000000000000000000000000000000006db804f4fa6c673cecb87e7d867e0000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000006333f4940000000000000000000000000000000000006db9cb19d7e48cb4977f3ae42ebf" + ), + "to": "0xfc588723eAD01D032B837229577f6A532e5a0c20", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "error": "Reverted", + "result": { + "gasUsed": 5680, + "output": HexBytes( + "0x08c379a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000023135000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0xc96ca0a60cede355f1e6a01572c372cb5bfe2ae57ea368824955977983949202", + "transactionPosition": 106, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 241971, + "value": 0, + "callType": "call", + "input": HexBytes("0x3850c7bd"), + "to": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2696, + "output": HexBytes( + "0x0000000000000000000000000000000000006db716140d536c0000016b7fab84000000000000000000000000000000000000000000000000000000000003204700000000000000000000000000000000000000000000000000000000000001f300000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xc96ca0a60cede355f1e6a01572c372cb5bfe2ae57ea368824955977983949202", + "transactionPosition": 106, + "type": "call", + }, + { + "action": { + "from": "0x69181A03fD84D1e2679Eb520DFDE72C97e1Ce524", + "gas": 399982, + "value": 259, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x69181A03fD84D1e2679Eb520DFDE72C97e1Ce524", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3e0cf9f9dd09599dcd4288a08b3cb5fae027c589e85a408ee8426e19efd6a1d1", + "transactionPosition": 107, + "type": "call", + }, + { + "action": { + "from": "0x8b803E4C274933cED6b2b70A2aBf7e6A678d4784", + "gas": 61715, + "value": 5200000000000000, + "callType": "call", + "input": HexBytes( + "0x3f2e5fc30000000000000000000000008b803e4c274933ced6b2b70a2abf7e6a678d47840000000000000000000000000000000000000000000000000012795f58d50000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000018382f1d90900000000000000000000000000000000000000000000000000000000000147d2" + ), + "to": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 59531, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x1b800abc991f002b6cadcbc7db318d16d9f555741580eb3f57e5fcf4e0cc0288", + "transactionPosition": 108, + "type": "call", + }, + { + "action": { + "from": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "gas": 12207, + "value": 5200000000000000, + "callType": "call", + "input": HexBytes("0xd0e30db0"), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 6874, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x1b800abc991f002b6cadcbc7db318d16d9f555741580eb3f57e5fcf4e0cc0288", + "transactionPosition": 108, + "type": "call", + }, + { + "action": { + "from": "0xe821C366F3091B09D5AB066ceEf038dF63c4781a", + "gas": 2753576, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xd17c1c9f000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000d6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000019f90000000000000000000000000000000000000000000000000000000000001a040000000000000000000000000000000000000000000000000000000000001a050000000000000000000000000000000000000000000000000000000000001a060000000000000000000000000000000000000000000000000000000000001a070000000000000000000000000000000000000000000000000000000000001a080000000000000000000000000000000000000000000000000000000000001a090000000000000000000000000000000000000000000000000000000000001a0a0000000000000000000000000000000000000000000000000000000000001a0b0000000000000000000000000000000000000000000000000000000000001a0c0000000000000000000000000000000000000000000000000000000000001a0d0000000000000000000000000000000000000000000000000000000000001a0f0000000000000000000000000000000000000000000000000000000000001a100000000000000000000000000000000000000000000000000000000000001a110000000000000000000000000000000000000000000000000000000000001a120000000000000000000000000000000000000000000000000000000000001a130000000000000000000000000000000000000000000000000000000000001a140000000000000000000000000000000000000000000000000000000000001a150000000000000000000000000000000000000000000000000000000000001a160000000000000000000000000000000000000000000000000000000000001a170000000000000000000000000000000000000000000000000000000000001a180000000000000000000000000000000000000000000000000000000000001a190000000000000000000000000000000000000000000000000000000000001a1a0000000000000000000000000000000000000000000000000000000000001a1b0000000000000000000000000000000000000000000000000000000000001a1c0000000000000000000000000000000000000000000000000000000000001a1d0000000000000000000000000000000000000000000000000000000000001a1e0000000000000000000000000000000000000000000000000000000000001a1f0000000000000000000000000000000000000000000000000000000000001a200000000000000000000000000000000000000000000000000000000000001a210000000000000000000000000000000000000000000000000000000000001a220000000000000000000000000000000000000000000000000000000000001a230000000000000000000000000000000000000000000000000000000000001a240000000000000000000000000000000000000000000000000000000000001a250000000000000000000000000000000000000000000000000000000000001a260000000000000000000000000000000000000000000000000000000000001a270000000000000000000000000000000000000000000000000000000000001a280000000000000000000000000000000000000000000000000000000000001a290000000000000000000000000000000000000000000000000000000000001a2a0000000000000000000000000000000000000000000000000000000000001a2b0000000000000000000000000000000000000000000000000000000000001a2c0000000000000000000000000000000000000000000000000000000000001a2d0000000000000000000000000000000000000000000000000000000000001a2e0000000000000000000000000000000000000000000000000000000000001a2f0000000000000000000000000000000000000000000000000000000000001a300000000000000000000000000000000000000000000000000000000000001a310000000000000000000000000000000000000000000000000000000000001a320000000000000000000000000000000000000000000000000000000000001a330000000000000000000000000000000000000000000000000000000000001a340000000000000000000000000000000000000000000000000000000000001a350000000000000000000000000000000000000000000000000000000000001a360000000000000000000000000000000000000000000000000000000000001a370000000000000000000000000000000000000000000000000000000000001a470000000000000000000000000000000000000000000000000000000000001a480000000000000000000000000000000000000000000000000000000000001a490000000000000000000000000000000000000000000000000000000000001a4a0000000000000000000000000000000000000000000000000000000000001a4b0000000000000000000000000000000000000000000000000000000000001a4c0000000000000000000000000000000000000000000000000000000000001a4d0000000000000000000000000000000000000000000000000000000000001a4e0000000000000000000000000000000000000000000000000000000000001a4f0000000000000000000000000000000000000000000000000000000000001a500000000000000000000000000000000000000000000000000000000000001a510000000000000000000000000000000000000000000000000000000000001a520000000000000000000000000000000000000000000000000000000000001a530000000000000000000000000000000000000000000000000000000000001a540000000000000000000000000000000000000000000000000000000000001a560000000000000000000000000000000000000000000000000000000000001a570000000000000000000000000000000000000000000000000000000000001a580000000000000000000000000000000000000000000000000000000000001a590000000000000000000000000000000000000000000000000000000000001a5a0000000000000000000000000000000000000000000000000000000000001a5b0000000000000000000000000000000000000000000000000000000000001a5c0000000000000000000000000000000000000000000000000000000000001a5d0000000000000000000000000000000000000000000000000000000000001a5e0000000000000000000000000000000000000000000000000000000000001a5f0000000000000000000000000000000000000000000000000000000000001a600000000000000000000000000000000000000000000000000000000000001a610000000000000000000000000000000000000000000000000000000000001a620000000000000000000000000000000000000000000000000000000000001a630000000000000000000000000000000000000000000000000000000000001a640000000000000000000000000000000000000000000000000000000000001a650000000000000000000000000000000000000000000000000000000000001a660000000000000000000000000000000000000000000000000000000000001a670000000000000000000000000000000000000000000000000000000000001a680000000000000000000000000000000000000000000000000000000000001a690000000000000000000000000000000000000000000000000000000000001a6a0000000000000000000000000000000000000000000000000000000000001a6b0000000000000000000000000000000000000000000000000000000000001a6d0000000000000000000000000000000000000000000000000000000000001a6e0000000000000000000000000000000000000000000000000000000000001a6f0000000000000000000000000000000000000000000000000000000000001a700000000000000000000000000000000000000000000000000000000000001a710000000000000000000000000000000000000000000000000000000000001a720000000000000000000000000000000000000000000000000000000000001a730000000000000000000000000000000000000000000000000000000000001a740000000000000000000000000000000000000000000000000000000000001a750000000000000000000000000000000000000000000000000000000000001a760000000000000000000000000000000000000000000000000000000000001a770000000000000000000000000000000000000000000000000000000000001a780000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000000000000000000000000000000000000000000000000f08eaef31e0be600000" + ), + "to": "0x7BB5178af214B8c5E714EE29D40045E37Bc89d42", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 2753576, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3b339b91dfa35453d68ac18d34a0fcb0cbd1ffd92ba1d39cc1a5fd43ecbd1a31", + "transactionPosition": 109, + "type": "call", + }, + { + "action": { + "from": "0x431B5A84aCC1297Eda88259f300262F1bc3A74f3", + "gas": 228990, + "value": 56323, + "callType": "call", + "input": HexBytes( + "0x1cff79cd0000000000000000000000004095d53a4cf4dedd3ad40773e474670d9d0b5729000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c41f3cc1fe0000000000000000000000000000000000000000000000000f2658c2709e49c20000000000000000000000000000000000000000000003a24f89b18d5ec000000000000000000000000000000000000000000000010e210db096b52d97d583cd00000000000000000000000000000000000000000000000000000f9ba76d261b000000000000000000000000000000000000000000000000000000006333f4890000000000000000000000000000000000000000010dfbfe16d4a33121f01a7700000000000000000000000000000000000000000000000000000000" + ), + "to": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 82860, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 221688, + "value": 56323, + "callType": "delegatecall", + "input": HexBytes( + "0x1f3cc1fe0000000000000000000000000000000000000000000000000f2658c2709e49c20000000000000000000000000000000000000000000003a24f89b18d5ec000000000000000000000000000000000000000000000010e210db096b52d97d583cd00000000000000000000000000000000000000000000000000000f9ba76d261b000000000000000000000000000000000000000000000000000000006333f4890000000000000000000000000000000000000000010dfbfe16d4a33121f01a77" + ), + "to": "0x4095d53a4Cf4dedd3AD40773E474670d9D0B5729", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 79019, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000f2658c2709e49c2000000000000000000000000000000000000000000000000000a6ba3764af2c7" + ), + }, + "subtraces": 2, + "traceAddress": [0], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 215449, + "value": 0, + "callType": "call", + "input": HexBytes("0x3850c7bd"), + "to": "0x83abECf7204d5Afc1Bea5dF734f085f2535a9976", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2696, + "output": HexBytes( + "0x0000000000000000000000000000000000000000010d67bfafcc5b3f3ec59516fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe52bf00000000000000000000000000000000000000000000000000000000000000210000000000000000000000000000000000000000000000000000000000000049000000000000000000000000000000000000000000000000000000000000004900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 212444, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb0800000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2658c2709e49c20000000000000000000000000000000000000000010e210db096b52d97d583cd00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000600144c077fd2dde35c67fba088eb0bb1691583dabe3fa4f749daca977e76ad8ef00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ), + "to": "0x83abECf7204d5Afc1Bea5dF734f085f2535a9976", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 72444, + "output": HexBytes( + "0xfffffffffffffffffffffffffffffffffffffffffffff27e52fbce309d3d31c50000000000000000000000000000000000000000000000000f2658c2709e49c2" + ), + }, + "subtraces": 4, + "traceAddress": [0, 1], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0x83abECf7204d5Afc1Bea5dF734f085f2535a9976", + "gas": 175185, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000000000000000000000000d81ad0431cf62c2ce3b" + ), + "to": "0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 12726, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 1, 0], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0x83abECf7204d5Afc1Bea5dF734f085f2535a9976", + "gas": 159327, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000083abecf7204d5afc1bea5df734f085f2535a9976" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000053caa64af12990fbd" + ), + }, + "subtraces": 0, + "traceAddress": [0, 1, 1], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0x83abECf7204d5Afc1Bea5dF734f085f2535a9976", + "gas": 156060, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e33fffffffffffffffffffffffffffffffffffffffffffff27e52fbce309d3d31c50000000000000000000000000000000000000000000000000f2658c2709e49c2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000600144c077fd2dde35c67fba088eb0bb1691583dabe3fa4f749daca977e76ad8ef00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ), + "to": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 13664, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 1, 2], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0xA69babEF1cA67A37Ffaf7a485DfFF3382056e78C", + "gas": 153018, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf900000000000000000000000083abecf7204d5afc1bea5df734f085f2535a99760000000000000000000000000000000000000000000000000f2658c2709e49c2" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13025, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 1, 2, 0], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0x83abECf7204d5Afc1Bea5dF734f085f2535a9976", + "gas": 141978, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000083abecf7204d5afc1bea5df734f085f2535a9976" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000054bd0bd718337597f" + ), + }, + "subtraces": 0, + "traceAddress": [0, 1, 3], + "transactionHash": "0x21254fad192705300b69839b7ca07262aeafb1a7e3d1ebc45ad41e29a5f9838c", + "transactionPosition": 110, + "type": "call", + }, + { + "action": { + "from": "0xeA3d9B4743e20CE41777149A16e4eC97185d1487", + "gas": 62416, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000001a1a806cc98a7fbb0070683cb0bca738463f15f600000000000000000000000000000000000000000000000000000000931ab100" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 26917, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0x0d91e50454b46c7858661116271beec901957ce1c5edeb680ea8443650728953", + "transactionPosition": 111, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 54309, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb0000000000000000000000001a1a806cc98a7fbb0070683cb0bca738463f15f600000000000000000000000000000000000000000000000000000000931ab100" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 19628, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x0d91e50454b46c7858661116271beec901957ce1c5edeb680ea8443650728953", + "transactionPosition": 111, + "type": "call", + }, + { + "action": { + "from": "0x1905D4567D88b371983e442ADF2fDC7EEa5ae3a8", + "gas": 162998, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x5ae401dc000000000000000000000000000000000000000000000000000000006333fb4b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000e404e45aaf00000000000000000000000012b6893ce26ea6341919fe289212ef77e51688c8000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000046791fc84e07d000000000000000000000000000000000000000000000000000000055da8108b01b96000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c0000000000000000000000000000000000000000000000000055da8108b01b960000000000000000000000001905d4567d88b371983e442adf2fdc7eea5ae3a800000000000000000000000000000000000000000000000000000000" + ), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 130303, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000005671cbdb1ae2370000000000000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 159115, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x04e45aaf00000000000000000000000012b6893ce26ea6341919fe289212ef77e51688c8000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000046791fc84e07d000000000000000000000000000000000000000000000000000000055da8108b01b960000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 108970, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000005671cbdb1ae237" + ), + }, + "subtraces": 1, + "traceAddress": [0], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 149731, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb0800000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc450000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000046791fc84e07d0000000000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001905d4567d88b371983e442adf2fdc7eea5ae3a8000000000000000000000000000000000000000000000000000000000000002b12b6893ce26ea6341919fe289212ef77e51688c8002710c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000" + ), + "to": "0xF1B5Cf831CED19136472b2b385F30384cE14a982", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 101567, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000046791fc84e07d00000ffffffffffffffffffffffffffffffffffffffffffffffffffa98e3424e51dc9" + ), + }, + "subtraces": 4, + "traceAddress": [0, 0], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0xF1B5Cf831CED19136472b2b385F30384cE14a982", + "gas": 112197, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45000000000000000000000000000000000000000000000000005671cbdb1ae237" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 29962, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 0], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0xF1B5Cf831CED19136472b2b385F30384cE14a982", + "gas": 79371, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000f1b5cf831ced19136472b2b385f30384ce14a982" + ), + "to": "0x12b6893cE26Ea6341919FE289212ef77e51688c8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2952, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000086eefe0170e4d3401fc4" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 1], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0xF1B5Cf831CED19136472b2b385F30384cE14a982", + "gas": 75674, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e33000000000000000000000000000000000000000000000046791fc84e07d00000ffffffffffffffffffffffffffffffffffffffffffffffffffa98e3424e51dc9000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001905d4567d88b371983e442adf2fdc7eea5ae3a8000000000000000000000000000000000000000000000000000000000000002b12b6893ce26ea6341919fe289212ef77e51688c8002710c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000" + ), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 23411, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 0, 2], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 70794, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd0000000000000000000000001905d4567d88b371983e442adf2fdc7eea5ae3a8000000000000000000000000f1b5cf831ced19136472b2b385f30384ce14a982000000000000000000000000000000000000000000000046791fc84e07d00000" + ), + "to": "0x12b6893cE26Ea6341919FE289212ef77e51688c8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 19334, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 2, 0], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0xF1B5Cf831CED19136472b2b385F30384cE14a982", + "gas": 51996, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000f1b5cf831ced19136472b2b385f30384ce14a982" + ), + "to": "0x12b6893cE26Ea6341919FE289212ef77e51688c8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 952, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000873577213932db101fc4" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0, 3], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 51151, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x49404b7c0000000000000000000000000000000000000000000000000055da8108b01b960000000000000000000000001905d4567d88b371983e442adf2fdc7eea5ae3a8" + ), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 18174, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [1], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 49646, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000005671cbdb1ae237" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 48678, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x2e1a7d4d000000000000000000000000000000000000000000000000005671cbdb1ae237" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 9223, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [1, 1], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "gas": 2300, + "value": 24331968365388343, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 83, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 1, 0], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 32599, + "value": 24331968365388343, + "callType": "call", + "input": HexBytes("0x"), + "to": "0x1905D4567D88b371983e442ADF2fDC7EEa5ae3a8", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x42e688c14cfee7fe51d9aeff3e9e95f2689ba0dc3ab6ad34a1e02e4689e15ec7", + "transactionPosition": 112, + "type": "call", + }, + { + "action": { + "from": "0x62DE18b42c4D169ee0b18330ccF694b19cd94034", + "gas": 34838, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000030ce4f2704f242d1aeb13e808635210ae0091339000000000000000000000000000000000000000000000000000000e8d4a51000" + ), + "to": "0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 16023, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0xd7b59c62a21ce4542e64e25428db05c2421434702c27553d15b57abad944ed63", + "transactionPosition": 113, + "type": "call", + }, + { + "action": { + "from": "0xa651E44Af3Ed093B0E2A7c9687E37da1AA5dEffb", + "gas": 316429, + "value": 145133996264071296, + "callType": "call", + "input": HexBytes( + "0x5ae401dc000000000000000000000000000000000000000000000000000000006333f56300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e4472b43f300000000000000000000000000000000000000000000000002039e99c42720800000000000000000000000000000000000000000000000000331a13222b52f3b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a651e44af3ed093b0e2a7c9687e37da1aa5deffb0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007db5af2b9624e1b3b4bb69d6debd9ad1016a58ac00000000000000000000000000000000000000000000000000000000" + ), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 256556, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000033209deca789655" + ), + }, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 310198, + "value": 145133996264071296, + "callType": "delegatecall", + "input": HexBytes( + "0x472b43f300000000000000000000000000000000000000000000000002039e99c42720800000000000000000000000000000000000000000000000000331a13222b52f3b0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a651e44af3ed093b0e2a7c9687e37da1aa5deffb0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000007db5af2b9624e1b3b4bb69d6debd9ad1016a58ac" + ), + "to": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 254378, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000033209deca789655" + ), + }, + "subtraces": 7, + "traceAddress": [0], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 294052, + "value": 145133996264071296, + "callType": "call", + "input": HexBytes("0xd0e30db0"), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 23974, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 270027, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000004a08cf0a7bca217c24b9ee99c0395052f3707d6800000000000000000000000000000000000000000000000002039e99c4272080" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8062, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 1], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 258908, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000a651e44af3ed093b0e2a7c9687e37da1aa5deffb" + ), + "to": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 45293, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000300f7f0e38f2afe" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 210231, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x4a08CF0a7bcA217c24b9EE99c0395052f3707d68", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2504, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000005c1b47599f8c26654d0000000000000000000000000000000000000000000000325967e2c9058065de000000000000000000000000000000000000000000000000000000006333f083" + ), + }, + "subtraces": 0, + "traceAddress": [0, 3], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 206914, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000004a08cf0a7bca217c24b9ee99c0395052f3707d68" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000325b6b8162c9a7865e" + ), + }, + "subtraces": 0, + "traceAddress": [0, 4], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 204713, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f00000000000000000000000000000000000000000000000003ac462cdb1d29840000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a651e44af3ed093b0e2a7c9687e37da1aa5deffb00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x4a08CF0a7bcA217c24b9EE99c0395052f3707d68", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 137786, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [0, 5], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x4a08CF0a7bcA217c24b9EE99c0395052f3707d68", + "gas": 190810, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000a651e44af3ed093b0e2a7c9687e37da1aa5deffb00000000000000000000000000000000000000000000000003ac462cdb1d2984" + ), + "to": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 92639, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 5, 0], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x4a08CF0a7bcA217c24b9EE99c0395052f3707d68", + "gas": 98997, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000004a08cf0a7bca217c24b9ee99c0395052f3707d68" + ), + "to": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13293, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000005c179b5748134c7d92" + ), + }, + "subtraces": 0, + "traceAddress": [0, 5, 1], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x4a08CF0a7bcA217c24b9EE99c0395052f3707d68", + "gas": 85506, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000004a08cf0a7bca217c24b9ee99c0395052f3707d68" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000325b6b8162c9a7865e" + ), + }, + "subtraces": 0, + "traceAddress": [0, 5, 2], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45", + "gas": 68390, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000a651e44af3ed093b0e2a7c9687e37da1aa5deffb" + ), + "to": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13293, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000063301cfae07c153" + ), + }, + "subtraces": 0, + "traceAddress": [0, 6], + "transactionHash": "0xa24679dfdcba768b6ed93dfd63de2d9132e7880ed5c29667280d69da866ce9f8", + "transactionPosition": 114, + "type": "call", + }, + { + "action": { + "from": "0xcfa8Cdc7Ea3aEd89c99bA831fBE8DaFD25ECcFC8", + "gas": 321410, + "value": 22500000000000000, + "callType": "call", + "input": HexBytes( + "0xb6f9de95000000000000000000000000000000000000000000000000000014ccd4ce26a00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000cfa8cdc7ea3aed89c99ba831fbe8dafd25eccfc8000000000000000000000000000000000000000000000000000000006333f4e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000ce3f08e664693ca792cace4af1364d5e220827b2" + ), + "to": "0x0c17e776CD218252ADFca8D4e761D3fe757e9778", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 321245, "output": HexBytes("0x")}, + "subtraces": 7, + "traceAddress": [], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x0c17e776CD218252ADFca8D4e761D3fe757e9778", + "gas": 306401, + "value": 22500000000000000, + "callType": "call", + "input": HexBytes("0xd0e30db0"), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 23974, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x0c17e776CD218252ADFca8D4e761D3fe757e9778", + "gas": 281505, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb0000000000000000000000005716d2cbf2f44b5b9e3ed7b7a6eb58ce5996f318000000000000000000000000000000000000000000000000004fefa17b724000" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8062, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x0c17e776CD218252ADFca8D4e761D3fe757e9778", + "gas": 270580, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000cfa8cdc7ea3aed89c99ba831fbe8dafd25eccfc8" + ), + "to": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 68381, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000000214cde6c7d0fa" + ), + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x0c17e776CD218252ADFca8D4e761D3fe757e9778", + "gas": 199132, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0902f1ac"), + "to": "0x5716D2cbF2f44b5b9e3Ed7b7a6eB58Ce5996F318", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2517, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000087158802a2b36758d00000000000000000000000000000000000000000000000002514655d246c79b000000000000000000000000000000000000000000000000000000006333f1a3" + ), + }, + "subtraces": 0, + "traceAddress": [3], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x0c17e776CD218252ADFca8D4e761D3fe757e9778", + "gas": 196084, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000005716d2cbf2f44b5b9e3ed7b7a6eb58ce5996f318" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000871a86fcba6a8b58d" + ), + }, + "subtraces": 0, + "traceAddress": [4], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x0c17e776CD218252ADFca8D4e761D3fe757e9778", + "gas": 193984, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015e515e68656000000000000000000000000cfa8cdc7ea3aed89c99ba831fbe8dafd25eccfc800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000" + ), + "to": "0x5716D2cbF2f44b5b9e3Ed7b7a6eB58Ce5996F318", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 173739, "output": HexBytes("0x")}, + "subtraces": 3, + "traceAddress": [5], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x5716D2cbF2f44b5b9e3Ed7b7a6eB58Ce5996F318", + "gas": 180105, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000cfa8cdc7ea3aed89c99ba831fbe8dafd25eccfc8000000000000000000000000000000000000000000000000000015e515e68656" + ), + "to": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 114301, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [5, 0], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x5716D2cbF2f44b5b9e3Ed7b7a6eB58Ce5996F318", + "gas": 66970, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000005716d2cbf2f44b5b9e3ed7b7a6eb58ce5996f318" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000871a86fcba6a8b58d" + ), + }, + "subtraces": 0, + "traceAddress": [5, 1], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x5716D2cbF2f44b5b9e3Ed7b7a6eB58Ce5996F318", + "gas": 66022, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000005716d2cbf2f44b5b9e3ed7b7a6eb58ce5996f318" + ), + "to": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 22381, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000002513071ed503c26" + ), + }, + "subtraces": 0, + "traceAddress": [5, 2], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x0c17e776CD218252ADFca8D4e761D3fe757e9778", + "gas": 22381, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000cfa8cdc7ea3aed89c99ba831fbe8dafd25eccfc8" + ), + "to": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 22381, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000000022ab2fcae5750" + ), + }, + "subtraces": 0, + "traceAddress": [6], + "transactionHash": "0xde5bb7799c83b55de96081265617a7d4fcd4d2ffa3dea999b4671599cba56ed9", + "transactionPosition": 115, + "type": "call", + }, + { + "action": { + "from": "0x1afA7bbcBDbb2E31B7FB70DFdbE15E88c26582bD", + "gas": 296055, + "value": 15630274, + "callType": "call", + "input": HexBytes( + "0x00000000010100000000000000000000000000000000000000000000000003c0a459d367eef1004c88e6a0c2ddd26feeb64f039a2c41296fcb3f564003000034290850efa2d7e130e55bbc1db2b48bc5c03097f50301001cfbba47b4c4ded47aa154a1b6dc06ec207166fc130400000003789d00" + ), + "to": "0xc7EE7c66636f407586afa431C19A916e04928942", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 223995, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xc7EE7c66636f407586afa431C19A916e04928942", + "gas": 266631, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb08000000000000000000000000c7ee7c66636f407586afa431c19a916e049289420000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffffffffc3f5ba62c98110f00000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000004c88e6a0c2ddd26feeb64f039a2c41296fcb3f564003000034290850efa2d7e130e55bbc1db2b48bc5c03097f50301001cfbba47b4c4ded47aa154a1b6dc06ec207166fc130400000003789d00" + ), + "to": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 198611, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000000000001470b2aafffffffffffffffffffffffffffffffffffffffffffffffffc3f5ba62c98110f" + ), + }, + "subtraces": 4, + "traceAddress": [0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "gas": 235610, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000c7ee7c66636f407586afa431c19a916e0492894200000000000000000000000000000000000000000000000003c0a459d367eef1" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 12862, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "gas": 219617, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 9815, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000206edc4ee616" + ), + }, + "subtraces": 1, + "traceAddress": [0, 1], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 209057, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2529, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000206edc4ee616" + ), + }, + "subtraces": 0, + "traceAddress": [0, 1, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "gas": 209187, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e33000000000000000000000000000000000000000000000000000000001470b2aafffffffffffffffffffffffffffffffffffffffffffffffffc3f5ba62c98110f0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004c88e6a0c2ddd26feeb64f039a2c41296fcb3f564003000034290850efa2d7e130e55bbc1db2b48bc5c03097f50301001cfbba47b4c4ded47aa154a1b6dc06ec207166fc130400000003789d000000000000000000000000000000000000000000" + ), + "to": "0xc7EE7c66636f407586afa431C19A916e04928942", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 138818, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 2], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xc7EE7c66636f407586afa431C19A916e04928942", + "gas": 202536, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb0800000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f56400000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffeb8f4d56000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d2500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000034290850efa2d7e130e55bbc1db2b48bc5c03097f50301001cfbba47b4c4ded47aa154a1b6dc06ec207166fc130400000003789d00" + ), + "to": "0x290850efa2d7E130E55bbc1db2b48Bc5C03097F5", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 135217, + "output": HexBytes( + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffeb8f4d56000000000000000000000000000000000000000000000f666bac1c563e2f4c8b" + ), + }, + "subtraces": 4, + "traceAddress": [0, 2, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x290850efa2d7E130E55bbc1db2b48Bc5C03097F5", + "gas": 163984, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640000000000000000000000000000000000000000000000000000000001470b2aa" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 18417, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 1, + "traceAddress": [0, 2, 0, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 160689, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0xa9059cbb00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640000000000000000000000000000000000000000000000000000000001470b2aa" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 17628, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 0, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x290850efa2d7E130E55bbc1db2b48Bc5C03097F5", + "gas": 142523, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000290850efa2d7e130e55bbc1db2b48bc5c03097f5" + ), + "to": "0xDF2C7238198Ad8B389666574f2d8bc411A4b7428", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2657, + "output": HexBytes( + "0x00000000000000000000000000000000000000000001d9fd346bfbeb4f54d099" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 1], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x290850efa2d7E130E55bbc1db2b48Bc5C03097F5", + "gas": 139146, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e33ffffffffffffffffffffffffffffffffffffffffffffffffffffffffeb8f4d56000000000000000000000000000000000000000000000f666bac1c563e2f4c8b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000034290850efa2d7e130e55bbc1db2b48bc5c03097f50301001cfbba47b4c4ded47aa154a1b6dc06ec207166fc130400000003789d00000000000000000000000000" + ), + "to": "0xc7EE7c66636f407586afa431C19A916e04928942", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 69032, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [0, 2, 0, 2], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xc7EE7c66636f407586afa431C19A916e04928942", + "gas": 133677, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x128acb08000000000000000000000000290850efa2d7e130e55bbc1db2b48bc5c03097f50000000000000000000000000000000000000000000000000000000000000001fffffffffffffffffffffffffffffffffffffffffffff0999453e3a9c1d0b37500000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001cfbba47b4c4ded47aa154a1b6dc06ec207166fc130400000003789d00" + ), + "to": "0xFBbA47B4C4ded47AA154a1b6DC06ec207166Fc13", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 65520, + "output": HexBytes( + "0x00000000000000000000000000000000000000000000000003b5b9d07a200c9efffffffffffffffffffffffffffffffffffffffffffff0999453e3a9c1d0b375" + ), + }, + "subtraces": 4, + "traceAddress": [0, 2, 0, 2, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xFBbA47B4C4ded47AA154a1b6DC06ec207166Fc13", + "gas": 97319, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000290850efa2d7e130e55bbc1db2b48bc5c03097f5000000000000000000000000000000000000000000000f666bac1c563e2f4c8b" + ), + "to": "0xDF2C7238198Ad8B389666574f2d8bc411A4b7428", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 13649, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 2, 0, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xFBbA47B4C4ded47AA154a1b6DC06ec207166Fc13", + "gas": 83012, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000fbba47b4c4ded47aa154a1b6dc06ec207166fc13" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2534, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000003ea45452556a5ece" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 2, 0, 1], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xFBbA47B4C4ded47AA154a1b6DC06ec207166Fc13", + "gas": 79758, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xfa461e3300000000000000000000000000000000000000000000000003b5b9d07a200c9efffffffffffffffffffffffffffffffffffffffffffff0999453e3a9c1d0b3750000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001cfbba47b4c4ded47aa154a1b6dc06ec207166fc130400000003789d0000000000" + ), + "to": "0xc7EE7c66636f407586afa431C19A916e04928942", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 7975, "output": HexBytes("0x")}, + "subtraces": 2, + "traceAddress": [0, 2, 0, 2, 0, 2], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xc7EE7c66636f407586afa431C19A916e04928942", + "gas": 77879, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x0dfe1681"), + "to": "0xFBbA47B4C4ded47AA154a1b6DC06ec207166Fc13", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 266, + "output": HexBytes( + "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 2, 0, 2, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xc7EE7c66636f407586afa431C19A916e04928942", + "gas": 76765, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000fbba47b4c4ded47aa154a1b6dc06ec207166fc1300000000000000000000000000000000000000000000000003b5b9d07a200c9e" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 6062, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 2, 0, 2, 1], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xFBbA47B4C4ded47AA154a1b6DC06ec207166Fc13", + "gas": 71275, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000fbba47b4c4ded47aa154a1b6dc06ec207166fc13" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000000425a0e22cf8a6b6c" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 2, 0, 3], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x290850efa2d7E130E55bbc1db2b48Bc5C03097F5", + "gas": 70560, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a08231000000000000000000000000290850efa2d7e130e55bbc1db2b48bc5c03097f5" + ), + "to": "0xDF2C7238198Ad8B389666574f2d8bc411A4b7428", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 657, + "output": HexBytes( + "0x00000000000000000000000000000000000000000001e963a01818418d841d24" + ), + }, + "subtraces": 0, + "traceAddress": [0, 2, 0, 3], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640", + "gas": 71905, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ), + "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 1315, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000206ef0bf98c0" + ), + }, + "subtraces": 1, + "traceAddress": [0, 3], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "gas": 70052, + "value": 0, + "callType": "delegatecall", + "input": HexBytes( + "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640" + ), + "to": "0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 529, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000206ef0bf98c0" + ), + }, + "subtraces": 0, + "traceAddress": [0, 3, 0], + "transactionHash": "0xaec61e6113da706f407a6defb998476591cd3e85ccf3bfb4fb2d2a2561df136c", + "transactionPosition": 116, + "type": "call", + }, + { + "action": { + "from": "0x6905030bAB047B4A65b28DB078e8d844b83d6FBF", + "gas": 55889, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000bce0b0d02dbc78efabbff56d0aae6c3732f9fdfd000000000000000000000000000000000000000000000d21679750a2b2f20f80" + ), + "to": "0x557B933a7C2c45672B610F8954A3deB39a51A8Ca", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 30033, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x74563c253a5758f5b99e36a2fe1cbbf15292694724f764050525a36e4b44f966", + "transactionPosition": 117, + "type": "call", + }, + { + "action": { + "from": "0x0c5c550F937CDD6d93876d9A2DBA0d22E81aa8A9", + "gas": 169189, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x75090ebf000000000000000000000000000000000000000000000000000062726f6e7a6500000000000000000000000000000000000000000000000000000000001e848000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c5c550f937cdd6d93876d9a2dba0d22e81aa8a9" + ), + "to": "0xd588b586D61C826A0e87919b3D1a239206d58bf2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 105485, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x8f3155286a4d53ce966c4456465b446d097849026ad885a26ed80833b6799d6e", + "transactionPosition": 118, + "type": "call", + }, + { + "action": { + "from": "0x2A038e100F8B85DF21e4d44121bdBfE0c288A869", + "gas": 177348, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x0175b1c4159735dd5b7ac6cf82f37afdcee2d07ebad0c8cc38284b7b69874157147caf090000000000000000000000000615dbba33fe61a31c7ed131bda6655ed76748b1000000000000000000000000d169005c938f82fc3cd9b195de76d3d9f86f8bce0000000000000000000000000000000000000000000000002f2e1cc70fc5e4000000000000000000000000000000000000000000000000000000000000000038" + ), + "to": "0xBa8Da9dcF11B50B03fd5284f164Ef5cdEF910705", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 105711, "output": HexBytes("0x")}, + "subtraces": 6, + "traceAddress": [], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0xBa8Da9dcF11B50B03fd5284f164Ef5cdEF910705", + "gas": 167106, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x40c10f19000000000000000000000000d169005c938f82fc3cd9b195de76d3d9f86f8bce0000000000000000000000000000000000000000000000002f2e1cc70fc5e400" + ), + "to": "0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 32018, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0xBa8Da9dcF11B50B03fd5284f164Ef5cdEF910705", + "gas": 132404, + "value": 0, + "callType": "staticcall", + "input": HexBytes("0x6f307dc3"), + "to": "0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 371, + "output": HexBytes( + "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" + ), + }, + "subtraces": 0, + "traceAddress": [1], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0xBa8Da9dcF11B50B03fd5284f164Ef5cdEF910705", + "gas": 129084, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x70a082310000000000000000000000000615dbba33fe61a31c7ed131bda6655ed76748b1" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 2534, + "output": HexBytes( + "0x000000000000000000000000000000000000000000000166616225a8ec99f0d2" + ), + }, + "subtraces": 0, + "traceAddress": [2], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0xBa8Da9dcF11B50B03fd5284f164Ef5cdEF910705", + "gas": 126033, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x0039d6ec000000000000000000000000d169005c938f82fc3cd9b195de76d3d9f86f8bce0000000000000000000000000000000000000000000000002f2e1cc70fc5e400000000000000000000000000ba8da9dcf11b50b03fd5284f164ef5cdef910705" + ), + "to": "0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 36924, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000002f2e1cc70fc5e400" + ), + }, + "subtraces": 1, + "traceAddress": [3], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1", + "gas": 115701, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000ba8da9dcf11b50b03fd5284f164ef5cdef9107050000000000000000000000000000000000000000000000002f2e1cc70fc5e400" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 27962, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [3, 0], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0xBa8Da9dcF11B50B03fd5284f164Ef5cdEF910705", + "gas": 89199, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x2e1a7d4d0000000000000000000000000000000000000000000000002f2e1cc70fc5e400" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 9235, "output": HexBytes("0x")}, + "subtraces": 1, + "traceAddress": [4], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "gas": 2300, + "value": 3399686410000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xBa8Da9dcF11B50B03fd5284f164Ef5cdEF910705", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 95, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [4, 0], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0xBa8Da9dcF11B50B03fd5284f164Ef5cdEF910705", + "gas": 70674, + "value": 3399686410000000000, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xd169005c938F82fC3Cd9b195DE76D3d9f86F8bce", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 0, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [5], + "transactionHash": "0x8bb5786ab0733d9657e3eace0c126794be48d22982492dc6e7107642314483a4", + "transactionPosition": 119, + "type": "call", + }, + { + "action": { + "from": "0x7c0Df51526C6956f29b36AC24fc863085Dbe7e7B", + "gas": 55799, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000dc1599407324607d6589144f86a9cb45095ce8000000000000000000000000000000000000000000000000000000001e06fe9d73" + ), + "to": "0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 29997, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x95b640dc515fe47ec62bc86e907579a46ae2762d76662a5afe3018d2d85e4763", + "transactionPosition": 120, + "type": "call", + }, + { + "action": { + "from": "0xee401129DffB0FF1D73F3B05989DeDa2C60296A1", + "gas": 73211, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb00000000000000000000000099a27546703b8b908cb3f24d474cdbd65caf647e00000000000000000000000000000000000000000000000000000002541b2640" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x72462461c4c7dd13689fb6251251230d30e2b57dbe47af652279e197bb68cf8f", + "transactionPosition": 121, + "type": "call", + }, + { + "action": { + "from": "0x9A0b967411a09eB6c5cc7795c0138091581DfEbA", + "gas": 167487, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xe7acab24000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000006600000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000045c2188ec89cce1f0d08b41ffe6c7efb7e72479f000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c00000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006333525d000000000000000000000000000000000000000000000000000000006334a3d80000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000ebfe23a8b7cb6c970000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c072fc6318000000000000000000000000000000000000000000000000000004c072fc631800000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000004000000000000000000000000baeec315f9d7f8db2645edfd5633360f152279bce83e91e11dabf311f0e63aa97f6c83dea882d884b714c17b3dc1b69d8d0363360000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000045c2188ec89cce1f0d08b41ffe6c7efb7e72479f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e69464f470000000000000000000000000000000000000000000000000000001e69464f470000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003cd28c9e8e0000000000000000000000000000000000000000000000000000003cd28c9e8e000000000000000000000000000334919cc1bd89a61d955f2d39206fff9551b4e5e0000000000000000000000000000000000000000000000000000000000000041db276a0cfc04800bd6e36f646b92760d983192cc2f5b061c219a8e998b1bcfa260dd911b2dcfdc272b7192c6a35eadba0a3055539730a4783eb4961e63dff75d1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000e9da13a855afc6fb2500b63e4c1e10216604598f970ad683d22ad79f58135cc3f921f2ff93ba5b2af0555858b85d256545aaa5dbcdb9f957a013fa0d0f30aff9a27d116759165fc0b157bd209ebecaf1eb86efbd8cf646687a2a9cc6ad90081de079c02a49a619f0b2d8d8f4f1c70c6196f1907d756e36640d39303f736c5d5ac1914cedbe1390dfb0fa65df9a5c52dd3aeec7f92d671f9cbc083085b9222e50eea29b71f257558d794d4c22c7770b762804c08f53afffc39860055e9d6d1196ac03369c55216f2115da19deea4925482cea0149891824b1a7466552f50ee8c126978e1b572d62bf99bc091c234418b7fca4e036f602af1bea2cbe13a63cbbb4b8df0c85d745e90a0c5ddeb4f5906f65ac99ae98be03bf59c2fb58da22a719fa988a4ea115d5628d4f6d9aa80065b40e516cbf1840c6b2836456038f35d34a84f3fd7c5a8ee0ede9ff4266dfaf8577e61f51f3db80cf5296ce0d5c184c85b155bb3c3f56ff50aefa7c2f032abb19b585037b0469e8237b477a59b6cb20b207b1e282eced56605b9ccb31ad257428b14ee7c9d64350cb1e737763d61a3672b3382a3f1b34dec3f0f02006bab7ea4631daea9c01c2c0f69f3a794812840a9701558" + ), + "to": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 165367, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 2, + "traceAddress": [], + "transactionHash": "0x8c3c3b6fe342720d958411dba2d29cbd22d07cac74be21a099d12c439201c993", + "transactionPosition": 122, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 140720, + "value": 0, + "callType": "staticcall", + "input": HexBytes( + "0x33131570bbf48a31e03ad1226ce6296638b5d576e8a1edd0e5b132dc4cc951518ddac39a0000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000660000000000000000000000000000000000000000000000000000000000000068000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000052000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000045c2188ec89cce1f0d08b41ffe6c7efb7e72479f000000000000000000000000004c00500000ad104d7dbd00e3ae0a5c00560c00000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000006333525d000000000000000000000000000000000000000000000000000000006334a3d80000000000000000000000000000000000000000000000000000000000000000360c6ebe0000000000000000000000000000000000000000ebfe23a8b7cb6c970000007b02230091a7ed01230072f7006a004d60a8d4e71d599b8104250f0000000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c072fc6318000000000000000000000000000000000000000000000000000004c072fc631800000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000004000000000000000000000000baeec315f9d7f8db2645edfd5633360f152279bce83e91e11dabf311f0e63aa97f6c83dea882d884b714c17b3dc1b69d8d0363360000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000045c2188ec89cce1f0d08b41ffe6c7efb7e72479f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e69464f470000000000000000000000000000000000000000000000000000001e69464f470000000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003cd28c9e8e0000000000000000000000000000000000000000000000000000003cd28c9e8e000000000000000000000000000334919cc1bd89a61d955f2d39206fff9551b4e5e0000000000000000000000000000000000000000000000000000000000000041db276a0cfc04800bd6e36f646b92760d983192cc2f5b061c219a8e998b1bcfa260dd911b2dcfdc272b7192c6a35eadba0a3055539730a4783eb4961e63dff75d1b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000e9da13a855afc6fb2500b63e4c1e10216604598f970ad683d22ad79f58135cc3f921f2ff93ba5b2af0555858b85d256545aaa5dbcdb9f957a013fa0d0f30aff9a27d116759165fc0b157bd209ebecaf1eb86efbd8cf646687a2a9cc6ad90081de079c02a49a619f0b2d8d8f4f1c70c6196f1907d756e36640d39303f736c5d5ac1914cedbe1390dfb0fa65df9a5c52dd3aeec7f92d671f9cbc083085b9222e50eea29b71f257558d794d4c22c7770b762804c08f53afffc39860055e9d6d1196ac03369c55216f2115da19deea4925482cea0149891824b1a7466552f50ee8c126978e1b572d62bf99bc091c234418b7fca4e036f602af1bea2cbe13a63cbbb4b8df0c85d745e90a0c5ddeb4f5906f65ac99ae98be03bf59c2fb58da22a719fa988a4ea115d5628d4f6d9aa80065b40e516cbf1840c6b2836456038f35d34a84f3fd7c5a8ee0ede9ff4266dfaf8577e61f51f3db80cf5296ce0d5c184c85b155bb3c3f56ff50aefa7c2f032abb19b585037b0469e8237b477a59b6cb20b207b1e282eced56605b9ccb31ad257428b14ee7c9d64350cb1e737763d61a3672b3382a3f1b34dec3f0f02006bab7ea4631daea9c01c2c0f69f3a794812840a9701558" + ), + "to": "0x004C00500000aD104D7DBd00e3ae0A5C00560C00", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 702, + "output": HexBytes( + "0x0e1d31dc00000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 0, + "traceAddress": [0], + "transactionHash": "0x8c3c3b6fe342720d958411dba2d29cbd22d07cac74be21a099d12c439201c993", + "transactionPosition": 122, + "type": "call", + }, + { + "action": { + "from": "0x00000000006c3852cbEf3e08E8dF289169EdE581", + "gas": 99476, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x4ce34aa2000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000045c2188ec89cce1f0d08b41ffe6c7efb7e72479f0000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c072fc63180000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000baeec315f9d7f8db2645edfd5633360f152279bc0000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba00000000000000000000000045c2188ec89cce1f0d08b41ffe6c7efb7e72479f000000000000000000000000000000000000000000000000000000000000031300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba0000000000000000000000000000a26b00c1f0df003000390027140000faa71900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e69464f470000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba000000000000000000000000334919cc1bd89a61d955f2d39206fff9551b4e5e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003cd28c9e8e000" + ), + "to": "0x1E0049783F008A0085193E00003D00cd54003c71", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 89138, + "output": HexBytes( + "0x4ce34aa200000000000000000000000000000000000000000000000000000000" + ), + }, + "subtraces": 4, + "traceAddress": [1], + "transactionHash": "0x8c3c3b6fe342720d958411dba2d29cbd22d07cac74be21a099d12c439201c993", + "transactionPosition": 122, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 92288, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd00000000000000000000000045c2188ec89cce1f0d08b41ffe6c7efb7e72479f0000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba000000000000000000000000000000000000000000000000004c072fc6318000" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 15025, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 0], + "transactionHash": "0x8c3c3b6fe342720d958411dba2d29cbd22d07cac74be21a099d12c439201c993", + "transactionPosition": 122, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 73921, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd0000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba00000000000000000000000045c2188ec89cce1f0d08b41ffe6c7efb7e72479f0000000000000000000000000000000000000000000000000000000000000313" + ), + "to": "0xBaEEc315F9d7f8DB2645edfD5633360F152279Bc", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 44479, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [1, 1], + "transactionHash": "0x8c3c3b6fe342720d958411dba2d29cbd22d07cac74be21a099d12c439201c993", + "transactionPosition": 122, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 29350, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd0000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba0000000000000000000000000000a26b00c1f0df003000390027140000faa7190000000000000000000000000000000000000000000000000001e69464f47000" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 10225, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 2], + "transactionHash": "0x8c3c3b6fe342720d958411dba2d29cbd22d07cac74be21a099d12c439201c993", + "transactionPosition": 122, + "type": "call", + }, + { + "action": { + "from": "0x1E0049783F008A0085193E00003D00cd54003c71", + "gas": 18442, + "value": 0, + "callType": "call", + "input": HexBytes( + "0x23b872dd0000000000000000000000009a0b967411a09eb6c5cc7795c0138091581dfeba000000000000000000000000334919cc1bd89a61d955f2d39206fff9551b4e5e0000000000000000000000000000000000000000000000000003cd28c9e8e000" + ), + "to": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": { + "gasUsed": 8225, + "output": HexBytes( + "0x0000000000000000000000000000000000000000000000000000000000000001" + ), + }, + "subtraces": 0, + "traceAddress": [1, 3], + "transactionHash": "0x8c3c3b6fe342720d958411dba2d29cbd22d07cac74be21a099d12c439201c993", + "transactionPosition": 122, + "type": "call", + }, + { + "action": { + "from": "0x5d6436E05d8CF62b5b20Df1d06ae7E18C0904EF9", + "gas": 51601, + "value": 0, + "callType": "call", + "input": HexBytes( + "0xa9059cbb000000000000000000000000c006496a40fde758225b64d5f79370367e2db3ff0000000000000000000000000000000000000000000000000000000020d7e5e0" + ), + "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 41601, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3760e7fda19d27167d343d18150e4bc3d421d041cf9b8b1ee8bbb648768478a5", + "transactionPosition": 123, + "type": "call", + }, + { + "action": { + "from": "0xDAFEA492D9c6733ae3d56b7Ed1ADB60692c98Bc5", + "gas": 5000, + "value": 40101722876475633, + "callType": "call", + "input": HexBytes("0x"), + "to": "0xeBec795c9c8bBD61FFc14A6662944748F299cAcf", + }, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": {"gasUsed": 55, "output": HexBytes("0x")}, + "subtraces": 0, + "traceAddress": [], + "transactionHash": "0x3894b0d1325a8a91171a2e0a58394287066fef3174945e4ff56eacfc0e4bda58", + "transactionPosition": 124, + "type": "call", + }, + { + "action": {"value": 0}, + "blockHash": "0xa1dd687d41a835a1e173b5f69f656eaad52570ca864dfaeece6bec72e17bc624", + "blockNumber": 15630274, + "result": None, + "subtraces": 0, + "traceAddress": [], + "type": "reward", + }, +] diff --git a/gnosis/eth/tests/test_ethereum_client.py b/gnosis/eth/tests/test_ethereum_client.py index 1388a1d0f..0fdecb6bc 100644 --- a/gnosis/eth/tests/test_ethereum_client.py +++ b/gnosis/eth/tests/test_ethereum_client.py @@ -28,7 +28,11 @@ from .ethereum_test_case import EthereumTestCaseMixin from .mocks.mock_internal_txs import creation_internal_txs, internal_txs_errored from .mocks.mock_log_receipts import invalid_log_receipt, log_receipts -from .mocks.mock_trace_block import trace_block_2191709_mock, trace_block_13191781_mock +from .mocks.mock_trace_block import ( + trace_block_2191709_mock, + trace_block_13191781_mock, + trace_block_15630274_mock, +) from .mocks.mock_trace_filter import trace_filter_mock_1 from .mocks.mock_trace_transaction import trace_transaction_mocks from .utils import deploy_example_erc20, just_test_if_mainnet_node @@ -1360,10 +1364,13 @@ def test_send_unsigned_transaction(self): ) def test_trace_block(self): - block_numbers = [13191781, 2191709] - for block_number, trace_block_mock in zip( - block_numbers, [trace_block_13191781_mock, trace_block_2191709_mock] - ): + block_numbers = [13191781, 2191709, 15630274] + block_mocks = [ + trace_block_13191781_mock, + trace_block_2191709_mock, + trace_block_15630274_mock, + ] + for block_number, trace_block_mock in zip(block_numbers, block_mocks): with self.subTest(block_number=block_number): self.assertEqual( self.ethereum_client.parity.trace_block(block_number), @@ -1371,10 +1378,15 @@ def test_trace_block(self): ) def test_trace_blocks(self): - block_numbers = [13191781, 2191709] + block_numbers = [13191781, 2191709, 15630274] + block_mocks = [ + trace_block_13191781_mock, + trace_block_2191709_mock, + trace_block_15630274_mock, + ] self.assertEqual( self.ethereum_client.parity.trace_blocks(block_numbers), - [trace_block_13191781_mock, trace_block_2191709_mock], + block_mocks, ) def test_trace_transaction(self): From acd56973d7b43b1943e16778a9dfd96f95e5a97c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Feb 2023 07:01:13 +0000 Subject: [PATCH 12/31] Bump faker from 16.8.1 to 17.0.0 Bumps [faker](https://github.com/joke2k/faker) from 16.8.1 to 17.0.0. - [Release notes](https://github.com/joke2k/faker/releases) - [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md) - [Commits](https://github.com/joke2k/faker/compare/v16.8.1...v17.0.0) --- updated-dependencies: - dependency-name: faker dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 33560f92c..b72f5a8ab 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,6 +1,6 @@ -r requirements.txt coverage==6.5.0 -faker==16.8.1 +faker==17.0.0 pytest==7.2.1 pytest-django==4.5.2 pytest-env==0.8.1 From c09135d0afa49940dd29c7d6b4a2bef2fc7f46cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Feb 2023 07:00:40 +0000 Subject: [PATCH 13/31] Bump pytest-rerunfailures from 11.1 to 11.1.1 Bumps [pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures) from 11.1 to 11.1.1. - [Release notes](https://github.com/pytest-dev/pytest-rerunfailures/releases) - [Changelog](https://github.com/pytest-dev/pytest-rerunfailures/blob/master/CHANGES.rst) - [Commits](https://github.com/pytest-dev/pytest-rerunfailures/compare/11.1...11.1.1) --- updated-dependencies: - dependency-name: pytest-rerunfailures dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index b72f5a8ab..609381b20 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -4,5 +4,5 @@ faker==17.0.0 pytest==7.2.1 pytest-django==4.5.2 pytest-env==0.8.1 -pytest-rerunfailures==11.1 +pytest-rerunfailures==11.1.1 pytest-sugar==0.9.6 From a0d0e51fdcef9c25c2b2a665c8cd40c163c19bf6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Feb 2023 20:44:25 +0000 Subject: [PATCH 14/31] Bump django from 4.1.6 to 4.1.7 Bumps [django](https://github.com/django/django) from 4.1.6 to 4.1.7. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/4.1.6...4.1.7) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e5a2487d7..94ff43d2d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -django==4.1.6 +django==4.1.7 django-filter==22.1 djangorestframework==3.14.0 hexbytes==0.2.3 From 8d03f01c5fbcb295667b1d0b2f0b6d0276a1b3eb Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Wed, 22 Feb 2023 14:11:26 +0100 Subject: [PATCH 15/31] Add base goerli testnet - Related to https://github.com/safe-global/safe-singleton-factory/pull/111 - Bump version --- gnosis/eth/ethereum_network.py | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gnosis/eth/ethereum_network.py b/gnosis/eth/ethereum_network.py index 7d89a1f97..ec49986da 100644 --- a/gnosis/eth/ethereum_network.py +++ b/gnosis/eth/ethereum_network.py @@ -582,6 +582,7 @@ class EthereumNetwork(Enum): FIRENZE_TEST_NETWORK = 78110 GOLD_SMART_CHAIN_TESTNET = 79879 MUMBAI = 80001 + BASE_GOERLI_TESTNET = 84531 IVAR_CHAIN_MAINNET = 88888 BEVERLY_HILLS = 90210 LAMBDA_TESTNET = 92001 diff --git a/setup.cfg b/setup.cfg index 0c4a9ae00..bb8aa7ed9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = safe-eth-py -version = 5.0.1 +version = 5.0.2 description = Safe Ecosystem Foundation utilities for Ethereum projects long_description = file: README.rst long_description_content_type = text/x-rst; charset=UTF-8 From 718898745634305530aa4bdc42988942777d079a Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Fri, 24 Feb 2023 10:59:19 +0100 Subject: [PATCH 16/31] Support Base Goerli Testnet explorer --- gnosis/eth/clients/etherscan_client.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnosis/eth/clients/etherscan_client.py b/gnosis/eth/clients/etherscan_client.py index 2de50bbba..ad2f85c4d 100644 --- a/gnosis/eth/clients/etherscan_client.py +++ b/gnosis/eth/clients/etherscan_client.py @@ -41,13 +41,14 @@ class EtherscanClient: EthereumNetwork.CRONOS_MAINNET_BETA: "https://cronoscan.com", EthereumNetwork.CRONOS_TESTNET: "https://testnet.cronoscan.com", EthereumNetwork.CELO_MAINNET: "https://celoscan.io", + EthereumNetwork.BASE_GOERLI_TESTNET: "https://goerli.basescan.org", } NETWORK_WITH_API_URL = { EthereumNetwork.MAINNET: "https://api.etherscan.io", EthereumNetwork.RINKEBY: "https://api-rinkeby.etherscan.io", EthereumNetwork.ROPSTEN: "https://api-ropsten.etherscan.io", - EthereumNetwork.GOERLI: "https://api-goerli.etherscan.io/", + EthereumNetwork.GOERLI: "https://api-goerli.etherscan.io", EthereumNetwork.KOVAN: "https://api-kovan.etherscan.io", EthereumNetwork.BINANCE_SMART_CHAIN_MAINNET: "https://api.bscscan.com", EthereumNetwork.POLYGON: "https://api.polygonscan.com", @@ -62,6 +63,7 @@ class EtherscanClient: EthereumNetwork.CRONOS_MAINNET_BETA: "https://api.cronoscan.com", EthereumNetwork.CRONOS_TESTNET: "https://api-testnet.cronoscan.com", EthereumNetwork.CELO_MAINNET: "https://api.celoscan.io", + EthereumNetwork.BASE_GOERLI_TESTNET: "https://api-goerli.basescan.org", } HTTP_HEADERS = { "User-Agent": "curl/7.77.0", From 9cb59774c409b2b5d7c9c02649ac698cbdf2b3e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 07:00:37 +0000 Subject: [PATCH 17/31] Bump faker from 17.0.0 to 17.3.0 Bumps [faker](https://github.com/joke2k/faker) from 17.0.0 to 17.3.0. - [Release notes](https://github.com/joke2k/faker/releases) - [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md) - [Commits](https://github.com/joke2k/faker/compare/v17.0.0...v17.3.0) --- updated-dependencies: - dependency-name: faker dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 609381b20..68af4126c 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,6 +1,6 @@ -r requirements.txt coverage==6.5.0 -faker==17.0.0 +faker==17.3.0 pytest==7.2.1 pytest-django==4.5.2 pytest-env==0.8.1 From 24ceb2d59934fc223a8e3a06ee2e7d09e541d833 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Wed, 8 Mar 2023 13:03:49 +0100 Subject: [PATCH 18/31] Fix Cowswap tests --- gnosis/eth/tests/oracles/test_cowswap.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnosis/eth/tests/oracles/test_cowswap.py b/gnosis/eth/tests/oracles/test_cowswap.py index 9782f5e2a..4f271c30c 100644 --- a/gnosis/eth/tests/oracles/test_cowswap.py +++ b/gnosis/eth/tests/oracles/test_cowswap.py @@ -80,8 +80,6 @@ def test_get_price(self): ): with self.assertRaisesMessage( CannotGetPriceFromOracle, - f"Cannot get price from CowSwap " - f"{{'errorType': 'UnsupportedToken', 'description': 'Token address {random_token.lower()}'}} " - f"for token-1={random_token} to token-2={weth_token_mainnet_address}", + f"Cannot get price from CowSwap {{'errorType': 'UnsupportedToken', 'description': 'Token {random_token.lower()} is unsupported: Could not find on chain source of the token with at least {{MIN_AMOUNT}} balance.'}} for token-1={random_token} to token-2={weth_token_mainnet_address}", ): cowswap_oracle.get_price(random_token) From 355baf8a899f524cf8e285078417656652ef2906 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Tue, 7 Mar 2023 18:44:20 +0100 Subject: [PATCH 19/31] Add Safe contract addresses --- gnosis/safe/addresses.py | 446 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 446 insertions(+) create mode 100644 gnosis/safe/addresses.py diff --git a/gnosis/safe/addresses.py b/gnosis/safe/addresses.py new file mode 100644 index 000000000..3795ab18e --- /dev/null +++ b/gnosis/safe/addresses.py @@ -0,0 +1,446 @@ +""" +Contains information about Safe contract addresses deployed in every chain + +Every entry contains a tuple with address, deployment block number and version +""" +from typing import Dict, List, Tuple + +from gnosis.eth import EthereumNetwork + +MASTER_COPIES: Dict[EthereumNetwork, List[Tuple[str, int, str]]] = { + EthereumNetwork.MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 12504423, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 12504268, "1.3.0"), + ("0x6851D6fDFAfD08c0295C392436245E5bc78B0185", 10329734, "1.2.0"), + ("0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", 9084503, "1.1.1"), + ("0xaE32496491b53841efb51829d6f886387708F99B", 8915728, "1.1.0"), + ("0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", 7457553, "1.0.0"), + ("0x8942595A2dC5181Df0465AF0D7be08c8f23C93af", 6766257, "0.1.0"), + ("0xAC6072986E985aaBE7804695EC2d8970Cf7541A2", 6569433, "0.0.2"), + ], + EthereumNetwork.RINKEBY: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 8527380, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 8527381, "1.3.0"), + ("0x6851D6fDFAfD08c0295C392436245E5bc78B0185", 6723632, "1.2.0"), + ("0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", 5590754, "1.1.1"), + ("0xaE32496491b53841efb51829d6f886387708F99B", 5423491, "1.1.0"), + ("0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", 4110083, "1.0.0"), + ("0x8942595A2dC5181Df0465AF0D7be08c8f23C93af", 3392692, "0.1.0"), + ("0x2727D69C0BD14B1dDd28371B8D97e808aDc1C2f7", 3055781, "0.0.2"), + ], + EthereumNetwork.GOERLI: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 4854168, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 4854169, "1.3.0"), + ("0x6851D6fDFAfD08c0295C392436245E5bc78B0185", 2930373, "1.2.0"), + ("0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", 1798663, "1.1.1"), + ("0xaE32496491b53841efb51829d6f886387708F99B", 1631488, "1.1.0"), + ("0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", 319108, "1.0.0"), + ("0x8942595A2dC5181Df0465AF0D7be08c8f23C93af", 34096, "0.1.0"), + ], + EthereumNetwork.KOVAN: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 25059609, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 25059611, "1.3.0"), + ("0x6851D6fDFAfD08c0295C392436245E5bc78B0185", 19242615, "1.2.0"), + ("0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", 15366145, "1.1.1"), + ("0xaE32496491b53841efb51829d6f886387708F99B", 14740724, "1.1.0"), + ("0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", 10638132, "1.0.0"), + ("0x8942595A2dC5181Df0465AF0D7be08c8f23C93af", 9465686, "0.1.0"), + ], + EthereumNetwork.GNOSIS: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 16236936, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 16236998, "1.3.0"), + ("0x6851D6fDFAfD08c0295C392436245E5bc78B0185", 10612049, "1.2.0"), + ("0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", 10045292, "1.1.1"), + ("0x2CB0ebc503dE87CFD8f0eCEED8197bF7850184ae", 12529466, "1.1.1+Circles"), + ("0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", 19560130, "1.0.0"), + ], + EthereumNetwork.ENERGY_WEB_CHAIN: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 12028662, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 12028664, "1.3.0"), + ("0x6851D6fDFAfD08c0295C392436245E5bc78B0185", 6398655, "1.2.0"), + ("0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", 6399212, "1.1.1"), + ], + EthereumNetwork.ENERGY_WEB_VOLTA_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 11942450, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 11942451, "1.3.0"), + ("0x6851D6fDFAfD08c0295C392436245E5bc78B0185", 6876086, "1.2.0"), + ("0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", 6876642, "1.1.1"), + ], + EthereumNetwork.POLYGON: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 14306478, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 14306478, "1.3.0"), + ], + EthereumNetwork.MUMBAI: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 13736914, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 13736914, "1.3.0"), + ], + EthereumNetwork.ARBITRUM_ONE: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1146, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 1140, "1.3.0"), + ], + EthereumNetwork.ARBITRUM_NOVA: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 426, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 427, "1.3.0"), + ], + EthereumNetwork.ARBITRUM_RINKEBY: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 57070, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 57070, "1.3.0"), + ], + EthereumNetwork.ARBITRUM_GOERLI: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 11545, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 11546, "1.3.0"), + ], + EthereumNetwork.BINANCE_SMART_CHAIN_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 8485899, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 8485903, "1.3.0"), + ], + EthereumNetwork.CELO_MAINNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 8944350, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 8944351, "1.3.0"), + ], + EthereumNetwork.AVALANCHE_C_CHAIN: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 4_949_507, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 4_949_512, "1.3.0"), + ], + EthereumNetwork.MOONRIVER: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 707_738, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 707_741, "1.3.0"), + ], + EthereumNetwork.MOONBASE_ALPHA: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 939_244, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 939_246, "1.3.0"), + ], + EthereumNetwork.FUSE_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 12_725_078, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 12_725_081, "1.3.0"), + ], + EthereumNetwork.FUSE_SPARKNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1_010_518, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 1_010_520, "1.3.0"), + ], + EthereumNetwork.POLIS_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1227, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 1278, "1.3.0"), + ], + EthereumNetwork.OPTIMISM: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 173749, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 173751, "1.3.0"), + ], + EthereumNetwork.BOBA_BNB_MAINNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 22284, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 22285, "1.3.0"), + ], + EthereumNetwork.BOBA_AVAX: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 55746, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 55747, "1.3.0"), + ], + EthereumNetwork.BOBA_NETWORK: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 170908, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 170910, "1.3.0"), + ], + EthereumNetwork.AURORA_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 52494580, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 52494580, "1.3.0"), + ], + EthereumNetwork.METIS_STARDUST_TESTNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 56124, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 56125, "1.3.0"), + ], + EthereumNetwork.METIS_GOERLI_TESTNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 131845, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 131846, "1.3.0"), + ], + EthereumNetwork.METIS_ANDROMEDA_MAINNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 61767, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 61768, "1.3.0"), + ], + EthereumNetwork.SHYFT_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1000, "1.3.0+L2"), # v1.3.0 + ], + EthereumNetwork.SHYFT_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1984340, "1.3.0+L2"), # v1.3.0 + ], + EthereumNetwork.REI_NETWORK: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 2388036, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 2388042, "1.3.0"), + ], + EthereumNetwork.METER_MAINNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 23863901, "1.3.0+L2") # v1.3.0 + ], + EthereumNetwork.METER_TESTNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 15035438, "1.3.0+L2") # v1.3.0 + ], + EthereumNetwork.EURUS_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 7127163, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 7127166, "1.3.0"), + ], + EthereumNetwork.EURUS_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 12845441, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 12845443, "1.3.0"), + ], + EthereumNetwork.VENIDIUM_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1127191, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 1127192, "1.3.0"), + ], + EthereumNetwork.VENIDIUM_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 761243, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 761244, "1.3.0"), + ], + EthereumNetwork.GODWOKEN_TESTNET_V1: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 93204, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 93168, "1.3.0"), + ], + EthereumNetwork.KLAYTN_TESTNET_BAOBAB: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 93821635, "1.3.0+L2"), + ], + EthereumNetwork.KLAYTN_MAINNET_CYPRESS: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 93507490, "1.3.0+L2"), + ], + EthereumNetwork.MILKOMEDA_A1_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 796, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 797, "1.3.0"), + ], + EthereumNetwork.MILKOMEDA_A1_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 6218, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 6042, "1.3.0"), + ], + EthereumNetwork.MILKOMEDA_C1_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 5080339, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 5080357, "1.3.0"), + ], + EthereumNetwork.MILKOMEDA_C1_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 4896727, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 4896733, "1.3.0"), + ], + EthereumNetwork.CRONOS_TESTNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 3290833, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 3290835, "1.3.0"), + ], + EthereumNetwork.CRONOS_MAINNET_BETA: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 3002268, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 3002760, "1.3.0"), + ], + EthereumNetwork.RABBIT_ANALOG_TESTNET_CHAIN: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 1434229, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 1434230, "1.3.0"), + ], + EthereumNetwork.CLOUDWALK_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 13743076, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 13743082, "1.3.0"), + ], + EthereumNetwork.KCC_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 4860807, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 4860810, "1.3.0"), + ], + EthereumNetwork.KCC_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 12147586, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 12147596, "1.3.0"), + ], + EthereumNetwork.PUBLICMINT_MAINNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 19974991, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 19974993, "1.3.0"), + ], + EthereumNetwork.PUBLICMINT_TESTNET: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 14062206, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 14062208, "1.3.0"), + ], + EthereumNetwork.XINFIN_XDC_NETWORK: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 53901616, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 53901624, "1.3.0"), + ], + EthereumNetwork.XDC_APOTHEM_NETWORK: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 42293309, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 42293315, "1.3.0"), + ], + EthereumNetwork.BASE_GOERLI_TESTNET: [ + ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 938848, "1.3.0+L2"), + ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 939064, "1.3.0"), + ], +} + +PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = { + EthereumNetwork.MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 12504126), # v1.3.0 + ("0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", 9084508), # v1.1.1 + ("0x50e55Af101C777bA7A1d560a774A82eF002ced9F", 8915731), # v1.1.0 + ("0x12302fE9c02ff50939BaAaaf415fc226C078613C", 7450116), # v1.0.0 + ], + EthereumNetwork.RINKEBY: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 8493997), # v1.3.0 + ("0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", 5590757), + ("0x50e55Af101C777bA7A1d560a774A82eF002ced9F", 5423494), + ("0x12302fE9c02ff50939BaAaaf415fc226C078613C", 4110083), + ], + EthereumNetwork.GOERLI: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 4695402), # v1.3.0 + ("0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", 1798666), + ("0x50e55Af101C777bA7A1d560a774A82eF002ced9F", 1631491), + ("0x12302fE9c02ff50939BaAaaf415fc226C078613C", 312509), + ], + EthereumNetwork.KOVAN: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 25059601), # v1.3.0 + ("0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", 15366151), + ("0x50e55Af101C777bA7A1d560a774A82eF002ced9F", 14740731), + ("0x12302fE9c02ff50939BaAaaf415fc226C078613C", 10629898), + ], + EthereumNetwork.GNOSIS: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 16236878), # v1.3.0 + ("0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", 10045327), # v1.1.1 + ("0x12302fE9c02ff50939BaAaaf415fc226C078613C", 17677119), # v1.0.0 + ], + EthereumNetwork.ENERGY_WEB_CHAIN: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 12028652), # v1.3.0 + ("0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", 6399239), + ], + EthereumNetwork.ENERGY_WEB_VOLTA_TESTNET: [ + # ('0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2', 0), # v1.3.0 + ("0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", 6876681), + ], + EthereumNetwork.POLYGON: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 14306478), # v1.3.0 + ], + EthereumNetwork.MUMBAI: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 13736914), # v1.3.0 + ], + EthereumNetwork.ARBITRUM_ONE: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1140), # v1.3.0 + ], + EthereumNetwork.ARBITRUM_NOVA: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 419), # v1.3.0 + ], + EthereumNetwork.ARBITRUM_RINKEBY: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 57070), # v1.3.0 + ], + EthereumNetwork.ARBITRUM_GOERLI: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 11538), # v1.3.0 + ], + EthereumNetwork.BINANCE_SMART_CHAIN_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 8485873), # v1.3.0 + ], + EthereumNetwork.CELO_MAINNET: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 8944342), # v1.3.0 + ], + EthereumNetwork.AVALANCHE_C_CHAIN: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 4_949_487), # v1.3.0 + ], + EthereumNetwork.MOONRIVER: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 707_721), # v1.3.0 + ], + EthereumNetwork.MOONBASE_ALPHA: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 939_239), # v1.3.0 + ], + EthereumNetwork.FUSE_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 12_725_072), # v1.3.0 + ], + EthereumNetwork.FUSE_SPARKNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1_010_506), # v1.3.0 + ], + EthereumNetwork.POLIS_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1266), # v1.3.0 + ], + EthereumNetwork.OPTIMISM: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 173709), # v1.3.0 + ], + EthereumNetwork.BOBA_BNB_MAINNET: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 22831), # v1.3.0 + ], + EthereumNetwork.BOBA_AVAX: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 55739), # v1.3.0 + ], + EthereumNetwork.BOBA_NETWORK: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 170895), # v1.3.0 + ], + EthereumNetwork.AURORA_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 52494580), # v1.3.0 + ], + EthereumNetwork.METIS_STARDUST_TESTNET: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 56117), # v1.3.0 + ], + EthereumNetwork.METIS_GOERLI_TESTNET: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 131842), # v1.3.0 + ], + EthereumNetwork.METIS_ANDROMEDA_MAINNET: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 61758), # v1.3.0 + ], + EthereumNetwork.SHYFT_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 2000), # v1.3.0 + ], + EthereumNetwork.SHYFT_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1984340), # v1.3.0 + ], + EthereumNetwork.REI_NETWORK: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 2387999), # v1.3.0 + ], + EthereumNetwork.METER_MAINNET: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 23863720), # v1.3.0 + ], + EthereumNetwork.METER_TESTNET: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 15035363), # v1.3.0 + ], + EthereumNetwork.EURUS_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 7127155), # v1.3.0 + ], + EthereumNetwork.EURUS_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 12845425), # v1.3.0 + ], + EthereumNetwork.VENIDIUM_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1127130), # v1.3.0 + ], + EthereumNetwork.VENIDIUM_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 761231), # v1.3.0 + ], + EthereumNetwork.GODWOKEN_TESTNET_V1: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 93108), # v1.3.0 + ], + EthereumNetwork.KLAYTN_TESTNET_BAOBAB: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 93821613), # v1.3.0 + ], + EthereumNetwork.KLAYTN_MAINNET_CYPRESS: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 93506870), # v1.3.0 + ], + EthereumNetwork.MILKOMEDA_A1_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 789), # v1.3.0 + ], + EthereumNetwork.MILKOMEDA_A1_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 6218), # v1.3.0 + ], + EthereumNetwork.MILKOMEDA_C1_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 5080303), # v1.3.0 + ], + EthereumNetwork.MILKOMEDA_C1_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 4896699), # v1.3.0 + ], + EthereumNetwork.CRONOS_TESTNET: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 3290819), # v1.3.0 + ], + EthereumNetwork.CRONOS_MAINNET_BETA: [ + ("0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", 2958469), # v1.3.0 + ], + EthereumNetwork.RABBIT_ANALOG_TESTNET_CHAIN: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 1434222), # v1.3.0 + ], + EthereumNetwork.CLOUDWALK_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 13743040), # v1.3.0 + ], + EthereumNetwork.KCC_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 4860798), # v1.3.0 + ], + EthereumNetwork.KCC_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 12147567), # v1.3.0 + ], + EthereumNetwork.PUBLICMINT_MAINNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 19974979), # v1.3.0 + ], + EthereumNetwork.PUBLICMINT_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 14062193), # v1.3.0 + ], + EthereumNetwork.XINFIN_XDC_NETWORK: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 53901564), # v1.3.0 + ], + EthereumNetwork.XDC_APOTHEM_NETWORK: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 42293264), # v1.3.0 + ], + EthereumNetwork.BASE_GOERLI_TESTNET: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 938848), # v1.3.0 + ], +} From 1020c36a377ee950b42ca334f2d4156efbf9abd0 Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Tue, 7 Mar 2023 19:11:16 +0100 Subject: [PATCH 20/31] Set version 5.1.0 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index bb8aa7ed9..323e26817 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = safe-eth-py -version = 5.0.2 +version = 5.1.0 description = Safe Ecosystem Foundation utilities for Ethereum projects long_description = file: README.rst long_description_content_type = text/x-rst; charset=UTF-8 From dffcad02b7a6ff3d6da541e16e932ae92535f9ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Mar 2023 10:26:05 +0000 Subject: [PATCH 21/31] Bump faker from 17.3.0 to 17.6.0 Bumps [faker](https://github.com/joke2k/faker) from 17.3.0 to 17.6.0. - [Release notes](https://github.com/joke2k/faker/releases) - [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md) - [Commits](https://github.com/joke2k/faker/compare/v17.3.0...v17.6.0) --- updated-dependencies: - dependency-name: faker dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 68af4126c..f51edf1c2 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,6 +1,6 @@ -r requirements.txt coverage==6.5.0 -faker==17.3.0 +faker==17.6.0 pytest==7.2.1 pytest-django==4.5.2 pytest-env==0.8.1 From 07859981d3aa40a89b94916e0840583801ba5cbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Mar 2023 12:13:35 +0000 Subject: [PATCH 22/31] Bump pytest from 7.2.1 to 7.2.2 Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.2.1 to 7.2.2. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/7.2.1...7.2.2) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index f51edf1c2..edc37f750 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,7 +1,7 @@ -r requirements.txt coverage==6.5.0 faker==17.6.0 -pytest==7.2.1 +pytest==7.2.2 pytest-django==4.5.2 pytest-env==0.8.1 pytest-rerunfailures==11.1.1 From 97502b09ef59ae82c85a488378ebd1f9f97d2216 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 06:59:49 +0000 Subject: [PATCH 23/31] Bump pytest-rerunfailures from 11.1.1 to 11.1.2 Bumps [pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures) from 11.1.1 to 11.1.2. - [Release notes](https://github.com/pytest-dev/pytest-rerunfailures/releases) - [Changelog](https://github.com/pytest-dev/pytest-rerunfailures/blob/master/CHANGES.rst) - [Commits](https://github.com/pytest-dev/pytest-rerunfailures/compare/11.1.1...11.1.2) --- updated-dependencies: - dependency-name: pytest-rerunfailures dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index edc37f750..3eb59d0dd 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -4,5 +4,5 @@ faker==17.6.0 pytest==7.2.2 pytest-django==4.5.2 pytest-env==0.8.1 -pytest-rerunfailures==11.1.1 +pytest-rerunfailures==11.1.2 pytest-sugar==0.9.6 From 90131ea760d1f60d629e5c1513143e58affc459f Mon Sep 17 00:00:00 2001 From: Uxio Fuentefria Date: Fri, 17 Mar 2023 14:12:25 +0100 Subject: [PATCH 24/31] Fix CowSwap test - Don't test the error message as it's changing all the time --- gnosis/eth/tests/oracles/test_cowswap.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/gnosis/eth/tests/oracles/test_cowswap.py b/gnosis/eth/tests/oracles/test_cowswap.py index 4f271c30c..eaafc0276 100644 --- a/gnosis/eth/tests/oracles/test_cowswap.py +++ b/gnosis/eth/tests/oracles/test_cowswap.py @@ -58,12 +58,7 @@ def test_get_price(self): with mock.patch.object( Session, "post", side_effect=IOError("Connection Error") ): - with self.assertRaisesMessage( - CannotGetPriceFromOracle, - f"Cannot get price from CowSwap " - f"{{}} " - f"for token-1={usdc_token_mainnet_address} to token-2={dai_token_mainnet_address}", - ): + with self.assertRaises(CannotGetPriceFromOracle): cowswap_oracle.get_price( usdc_token_mainnet_address, dai_token_mainnet_address ) @@ -78,8 +73,5 @@ def test_get_price(self): with mock.patch( "gnosis.eth.oracles.cowswap.get_decimals", autospec=True, return_value=18 ): - with self.assertRaisesMessage( - CannotGetPriceFromOracle, - f"Cannot get price from CowSwap {{'errorType': 'UnsupportedToken', 'description': 'Token {random_token.lower()} is unsupported: Could not find on chain source of the token with at least {{MIN_AMOUNT}} balance.'}} for token-1={random_token} to token-2={weth_token_mainnet_address}", - ): + with self.assertRaises(CannotGetPriceFromOracle): cowswap_oracle.get_price(random_token) From 00cf2373aa5491c7106683ea3c8932034217d7d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ux=C3=ADo?= Date: Thu, 23 Mar 2023 13:28:40 +0100 Subject: [PATCH 25/31] Add EIP155 support for some methods (#477) - Some methods on `EthereumClient` did not support EIP155 - Closes #476 --- gnosis/eth/ethereum_client.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnosis/eth/ethereum_client.py b/gnosis/eth/ethereum_client.py index 59f5f4d61..9459ec032 100644 --- a/gnosis/eth/ethereum_client.py +++ b/gnosis/eth/ethereum_client.py @@ -1407,10 +1407,11 @@ def get_client_version(self) -> str: def get_network(self) -> EthereumNetwork: """ - Get network name based on the chainId + Get network name based on the chainId. This method is not cached as the method for getting the + `chainId` already is. :return: EthereumNetwork based on the chainId. If network is not - on our list, `EthereumNetwork.UNKOWN` is returned + on our list, `EthereumNetwork.UNKNOWN` is returned """ return EthereumNetwork(self.get_chain_id()) @@ -1533,6 +1534,7 @@ def deploy_and_initialize_contract( "gasPrice": self.w3.eth.gas_price, "value": Wei(0), "to": contract_address if contract_address else "", + "chainId": self.get_chain_id(), } tx["gas"] = self.w3.eth.estimate_gas(tx) tx_hash = self.send_unsigned_transaction( @@ -1942,6 +1944,7 @@ def send_eth_to( "value": value, "gas": gas or Wei(self.estimate_gas(to, account.address, value)), "gasPrice": Wei(gas_price), + "chainId": self.get_chain_id(), } if nonce is not None: From 4d12c3574b809635c98a6f72f36dd914532ce385 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 07:01:14 +0000 Subject: [PATCH 26/31] Bump django-filter from 22.1 to 23.1 Bumps [django-filter](https://github.com/carltongibson/django-filter) from 22.1 to 23.1. - [Release notes](https://github.com/carltongibson/django-filter/releases) - [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst) - [Commits](https://github.com/carltongibson/django-filter/compare/22.1...23.1) --- updated-dependencies: - dependency-name: django-filter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 94ff43d2d..a73f51ff1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ django==4.1.7 -django-filter==22.1 +django-filter==23.1 djangorestframework==3.14.0 hexbytes==0.2.3 packaging From 751bdbda9eba66dadbd6f165bf5fe52c3d458109 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 07:01:08 +0000 Subject: [PATCH 27/31] Bump faker from 17.6.0 to 18.3.1 Bumps [faker](https://github.com/joke2k/faker) from 17.6.0 to 18.3.1. - [Release notes](https://github.com/joke2k/faker/releases) - [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md) - [Commits](https://github.com/joke2k/faker/compare/v17.6.0...v18.3.1) --- updated-dependencies: - dependency-name: faker dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 3eb59d0dd..04cbb3016 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,6 +1,6 @@ -r requirements.txt coverage==6.5.0 -faker==17.6.0 +faker==18.3.1 pytest==7.2.2 pytest-django==4.5.2 pytest-env==0.8.1 From 1df516a0b28cdb861d9e92a0005f5edfc54b1713 Mon Sep 17 00:00:00 2001 From: Dimitris Lamprinos Date: Sun, 26 Mar 2023 20:20:25 +0300 Subject: [PATCH 28/31] Add kava chain --- gnosis/safe/addresses.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gnosis/safe/addresses.py b/gnosis/safe/addresses.py index 3795ab18e..f86810d7d 100644 --- a/gnosis/safe/addresses.py +++ b/gnosis/safe/addresses.py @@ -256,6 +256,10 @@ ("0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", 938848, "1.3.0+L2"), ("0x69f4D1788e39c87893C980c06EdF4b7f686e2938", 939064, "1.3.0"), ], + EthereumNetwork.KAVA_EVM: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 2116303, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 2116307, "1.3.0"), + ], } PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = { @@ -443,4 +447,7 @@ EthereumNetwork.BASE_GOERLI_TESTNET: [ ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 938848), # v1.3.0 ], + EthereumNetwork.KAVA_EVM: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 2116356), # v1.3.0 + ], } From 22af9c4c0d493d4ea34053c6c7475bfede4863b0 Mon Sep 17 00:00:00 2001 From: Shruti Jain <50135847+Sj-001@users.noreply.github.com> Date: Mon, 27 Mar 2023 22:00:14 +0530 Subject: [PATCH 29/31] Add Neon Devnet Support (#481) --- gnosis/eth/clients/etherscan_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnosis/eth/clients/etherscan_client.py b/gnosis/eth/clients/etherscan_client.py index ad2f85c4d..d7f2596da 100644 --- a/gnosis/eth/clients/etherscan_client.py +++ b/gnosis/eth/clients/etherscan_client.py @@ -42,6 +42,7 @@ class EtherscanClient: EthereumNetwork.CRONOS_TESTNET: "https://testnet.cronoscan.com", EthereumNetwork.CELO_MAINNET: "https://celoscan.io", EthereumNetwork.BASE_GOERLI_TESTNET: "https://goerli.basescan.org", + EthereumNetwork.NEON_EVM_DEVNET: "https://neonscan.org", } NETWORK_WITH_API_URL = { @@ -64,6 +65,7 @@ class EtherscanClient: EthereumNetwork.CRONOS_TESTNET: "https://api-testnet.cronoscan.com", EthereumNetwork.CELO_MAINNET: "https://api.celoscan.io", EthereumNetwork.BASE_GOERLI_TESTNET: "https://api-goerli.basescan.org", + EthereumNetwork.NEON_EVM_DEVNET: "https://devnet-api.neonscan.org", } HTTP_HEADERS = { "User-Agent": "curl/7.77.0", From 174053920e0717cc9924405e524012c5f953cd8f Mon Sep 17 00:00:00 2001 From: Albert Date: Wed, 29 Mar 2023 19:46:18 +0800 Subject: [PATCH 30/31] Add Crossbell chain (#488) --- gnosis/eth/clients/blockscout_client.py | 1 + gnosis/safe/addresses.py | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/gnosis/eth/clients/blockscout_client.py b/gnosis/eth/clients/blockscout_client.py index c16a0d3b0..2c4ef2a50 100644 --- a/gnosis/eth/clients/blockscout_client.py +++ b/gnosis/eth/clients/blockscout_client.py @@ -58,6 +58,7 @@ class BlockscoutClient: EthereumNetwork.ARBITRUM_ONE: "https://explorer.arbitrum.io", EthereumNetwork.ARBITRUM_NOVA: "https://nova-explorer.arbitrum.io", EthereumNetwork.ARBITRUM_GOERLI: "https://goerli-rollup-explorer.arbitrum.io", + EthereumNetwork.CROSSBELL: "https://scan.crossbell.io", } def __init__(self, network: EthereumNetwork): diff --git a/gnosis/safe/addresses.py b/gnosis/safe/addresses.py index f86810d7d..9eed3a0e0 100644 --- a/gnosis/safe/addresses.py +++ b/gnosis/safe/addresses.py @@ -260,6 +260,10 @@ ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 2116303, "1.3.0+L2"), ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 2116307, "1.3.0"), ], + EthereumNetwork.CROSSBELL: [ + ("0x3E5c63644E683549055b9Be8653de26E0B4CD36E", 28314790, "1.3.0+L2"), + ("0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", 28314796, "1.3.0"), + ], } PROXY_FACTORIES: Dict[EthereumNetwork, List[Tuple[str, int]]] = { @@ -450,4 +454,7 @@ EthereumNetwork.KAVA_EVM: [ ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 2116356), # v1.3.0 ], + EthereumNetwork.CROSSBELL: [ + ("0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", 28314747), # v1.3.0 + ], } From 8a80927cdd3bd174bcb1e1a3a3fa54e09e677d68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Apr 2023 10:49:39 +0200 Subject: [PATCH 31/31] Bump faker from 18.3.1 to 18.3.2 (#491) Bumps [faker](https://github.com/joke2k/faker) from 18.3.1 to 18.3.2. - [Release notes](https://github.com/joke2k/faker/releases) - [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md) - [Commits](https://github.com/joke2k/faker/compare/v18.3.1...v18.3.2) --- updated-dependencies: - dependency-name: faker dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index 04cbb3016..3ee353b15 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,6 +1,6 @@ -r requirements.txt coverage==6.5.0 -faker==18.3.1 +faker==18.3.2 pytest==7.2.2 pytest-django==4.5.2 pytest-env==0.8.1