From 7d0932d504c8638ed1ec17664ea2ea5d8cdd561e Mon Sep 17 00:00:00 2001 From: Matthew Gonzalez Date: Fri, 6 May 2022 10:48:36 -0700 Subject: [PATCH 1/8] Iron Bank ABIs; Compound Fork --- mev_inspect/abis/ironbank/CEther.json | 1438 ++++++++++++++++++++ mev_inspect/abis/ironbank/CToken.json | 1438 ++++++++++++++++++++ mev_inspect/abis/ironbank/Comptroller.json | 246 ++++ 3 files changed, 3122 insertions(+) create mode 100644 mev_inspect/abis/ironbank/CEther.json create mode 100644 mev_inspect/abis/ironbank/CToken.json create mode 100644 mev_inspect/abis/ironbank/Comptroller.json diff --git a/mev_inspect/abis/ironbank/CEther.json b/mev_inspect/abis/ironbank/CEther.json new file mode 100644 index 0000000..974feed --- /dev/null +++ b/mev_inspect/abis/ironbank/CEther.json @@ -0,0 +1,1438 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "underlying_", + "type": "address" + }, + { + "internalType": "contract ComptrollerInterface", + "name": "comptroller_", + "type": "address" + }, + { + "internalType": "contract InterestRateModel", + "name": "interestRateModel_", + "type": "address" + }, + { + "internalType": "uint256", + "name": "initialExchangeRateMantissa_", + "type": "uint256" + }, + { + "internalType": "string", + "name": "name_", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol_", + "type": "string" + }, + { + "internalType": "uint8", + "name": "decimals_", + "type": "uint8" + }, + { + "internalType": "address payable", + "name": "admin_", + "type": "address" + }, + { + "internalType": "address", + "name": "implementation_", + "type": "address" + }, + { + "internalType": "bytes", + "name": "becomeImplementationData", + "type": "bytes" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "cashPrior", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "interestAccumulated", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "borrowIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "totalBorrows", + "type": "uint256" + } + ], + "name": "AccrueInterest", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "borrowAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "accountBorrows", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "totalBorrows", + "type": "uint256" + } + ], + "name": "Borrow", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "error", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "info", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "detail", + "type": "uint256" + } + ], + "name": "Failure", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "liquidator", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "repayAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "cTokenCollateral", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "seizeTokens", + "type": "uint256" + } + ], + "name": "LiquidateBorrow", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "minter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintTokens", + "type": "uint256" + } + ], + "name": "Mint", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newAdmin", + "type": "address" + } + ], + "name": "NewAdmin", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "contract ComptrollerInterface", + "name": "oldComptroller", + "type": "address" + }, + { + "indexed": false, + "internalType": "contract ComptrollerInterface", + "name": "newComptroller", + "type": "address" + } + ], + "name": "NewComptroller", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldImplementation", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "NewImplementation", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "contract InterestRateModel", + "name": "oldInterestRateModel", + "type": "address" + }, + { + "indexed": false, + "internalType": "contract InterestRateModel", + "name": "newInterestRateModel", + "type": "address" + } + ], + "name": "NewMarketInterestRateModel", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldPendingAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newPendingAdmin", + "type": "address" + } + ], + "name": "NewPendingAdmin", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldReserveFactorMantissa", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newReserveFactorMantissa", + "type": "uint256" + } + ], + "name": "NewReserveFactor", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "redeemer", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "redeemAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "redeemTokens", + "type": "uint256" + } + ], + "name": "Redeem", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "payer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "repayAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "accountBorrows", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "totalBorrows", + "type": "uint256" + } + ], + "name": "RepayBorrow", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "benefactor", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "addAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newTotalReserves", + "type": "uint256" + } + ], + "name": "ReservesAdded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "admin", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "reduceAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newTotalReserves", + "type": "uint256" + } + ], + "name": "ReservesReduced", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "constant": false, + "inputs": [], + "name": "_acceptAdmin", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "addAmount", + "type": "uint256" + } + ], + "name": "_addReserves", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "reduceAmount", + "type": "uint256" + } + ], + "name": "_reduceReserves", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "contract ComptrollerInterface", + "name": "newComptroller", + "type": "address" + } + ], + "name": "_setComptroller", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "implementation_", + "type": "address" + }, + { + "internalType": "bool", + "name": "allowResign", + "type": "bool" + }, + { + "internalType": "bytes", + "name": "becomeImplementationData", + "type": "bytes" + } + ], + "name": "_setImplementation", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "contract InterestRateModel", + "name": "newInterestRateModel", + "type": "address" + } + ], + "name": "_setInterestRateModel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address payable", + "name": "newPendingAdmin", + "type": "address" + } + ], + "name": "_setPendingAdmin", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "newReserveFactorMantissa", + "type": "uint256" + } + ], + "name": "_setReserveFactor", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "accrualBlockNumber", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "accrueInterest", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "admin", + "outputs": [ + { + "internalType": "address payable", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "balanceOfUnderlying", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "borrowAmount", + "type": "uint256" + } + ], + "name": "borrow", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "borrowBalanceCurrent", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "borrowBalanceStored", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "borrowIndex", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "borrowRatePerBlock", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "comptroller", + "outputs": [ + { + "internalType": "contract ComptrollerInterface", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "delegateToImplementation", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "delegateToViewImplementation", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "exchangeRateCurrent", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "exchangeRateStored", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getAccountSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "getCash", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "implementation", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "interestRateModel", + "outputs": [ + { + "internalType": "contract InterestRateModel", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "isCToken", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "internalType": "uint256", + "name": "repayAmount", + "type": "uint256" + }, + { + "internalType": "contract CTokenInterface", + "name": "cTokenCollateral", + "type": "address" + } + ], + "name": "liquidateBorrow", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "mintAmount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "pendingAdmin", + "outputs": [ + { + "internalType": "address payable", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "redeemTokens", + "type": "uint256" + } + ], + "name": "redeem", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "redeemAmount", + "type": "uint256" + } + ], + "name": "redeemUnderlying", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "repayAmount", + "type": "uint256" + } + ], + "name": "repayBorrow", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "reserveFactorMantissa", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "liquidator", + "type": "address" + }, + { + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "internalType": "uint256", + "name": "seizeTokens", + "type": "uint256" + } + ], + "name": "seize", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "supplyRatePerBlock", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalBorrows", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "totalBorrowsCurrent", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalReserves", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "dst", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "src", + "type": "address" + }, + { + "internalType": "address", + "name": "dst", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "underlying", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/mev_inspect/abis/ironbank/CToken.json b/mev_inspect/abis/ironbank/CToken.json new file mode 100644 index 0000000..974feed --- /dev/null +++ b/mev_inspect/abis/ironbank/CToken.json @@ -0,0 +1,1438 @@ +[ + { + "inputs": [ + { + "internalType": "address", + "name": "underlying_", + "type": "address" + }, + { + "internalType": "contract ComptrollerInterface", + "name": "comptroller_", + "type": "address" + }, + { + "internalType": "contract InterestRateModel", + "name": "interestRateModel_", + "type": "address" + }, + { + "internalType": "uint256", + "name": "initialExchangeRateMantissa_", + "type": "uint256" + }, + { + "internalType": "string", + "name": "name_", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol_", + "type": "string" + }, + { + "internalType": "uint8", + "name": "decimals_", + "type": "uint8" + }, + { + "internalType": "address payable", + "name": "admin_", + "type": "address" + }, + { + "internalType": "address", + "name": "implementation_", + "type": "address" + }, + { + "internalType": "bytes", + "name": "becomeImplementationData", + "type": "bytes" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "cashPrior", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "interestAccumulated", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "borrowIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "totalBorrows", + "type": "uint256" + } + ], + "name": "AccrueInterest", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "borrowAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "accountBorrows", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "totalBorrows", + "type": "uint256" + } + ], + "name": "Borrow", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "error", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "info", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "detail", + "type": "uint256" + } + ], + "name": "Failure", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "liquidator", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "repayAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "cTokenCollateral", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "seizeTokens", + "type": "uint256" + } + ], + "name": "LiquidateBorrow", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "minter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "mintTokens", + "type": "uint256" + } + ], + "name": "Mint", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newAdmin", + "type": "address" + } + ], + "name": "NewAdmin", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "contract ComptrollerInterface", + "name": "oldComptroller", + "type": "address" + }, + { + "indexed": false, + "internalType": "contract ComptrollerInterface", + "name": "newComptroller", + "type": "address" + } + ], + "name": "NewComptroller", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldImplementation", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "NewImplementation", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "contract InterestRateModel", + "name": "oldInterestRateModel", + "type": "address" + }, + { + "indexed": false, + "internalType": "contract InterestRateModel", + "name": "newInterestRateModel", + "type": "address" + } + ], + "name": "NewMarketInterestRateModel", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldPendingAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newPendingAdmin", + "type": "address" + } + ], + "name": "NewPendingAdmin", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldReserveFactorMantissa", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newReserveFactorMantissa", + "type": "uint256" + } + ], + "name": "NewReserveFactor", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "redeemer", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "redeemAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "redeemTokens", + "type": "uint256" + } + ], + "name": "Redeem", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "payer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "repayAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "accountBorrows", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "totalBorrows", + "type": "uint256" + } + ], + "name": "RepayBorrow", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "benefactor", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "addAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newTotalReserves", + "type": "uint256" + } + ], + "name": "ReservesAdded", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "admin", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "reduceAmount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newTotalReserves", + "type": "uint256" + } + ], + "name": "ReservesReduced", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "constant": false, + "inputs": [], + "name": "_acceptAdmin", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "addAmount", + "type": "uint256" + } + ], + "name": "_addReserves", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "reduceAmount", + "type": "uint256" + } + ], + "name": "_reduceReserves", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "contract ComptrollerInterface", + "name": "newComptroller", + "type": "address" + } + ], + "name": "_setComptroller", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "implementation_", + "type": "address" + }, + { + "internalType": "bool", + "name": "allowResign", + "type": "bool" + }, + { + "internalType": "bytes", + "name": "becomeImplementationData", + "type": "bytes" + } + ], + "name": "_setImplementation", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "contract InterestRateModel", + "name": "newInterestRateModel", + "type": "address" + } + ], + "name": "_setInterestRateModel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address payable", + "name": "newPendingAdmin", + "type": "address" + } + ], + "name": "_setPendingAdmin", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "newReserveFactorMantissa", + "type": "uint256" + } + ], + "name": "_setReserveFactor", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "accrualBlockNumber", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "accrueInterest", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "admin", + "outputs": [ + { + "internalType": "address payable", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "balanceOfUnderlying", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "borrowAmount", + "type": "uint256" + } + ], + "name": "borrow", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "borrowBalanceCurrent", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "borrowBalanceStored", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "borrowIndex", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "borrowRatePerBlock", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "comptroller", + "outputs": [ + { + "internalType": "contract ComptrollerInterface", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "delegateToImplementation", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "delegateToViewImplementation", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "exchangeRateCurrent", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "exchangeRateStored", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getAccountSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "getCash", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "implementation", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "interestRateModel", + "outputs": [ + { + "internalType": "contract InterestRateModel", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "isCToken", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "internalType": "uint256", + "name": "repayAmount", + "type": "uint256" + }, + { + "internalType": "contract CTokenInterface", + "name": "cTokenCollateral", + "type": "address" + } + ], + "name": "liquidateBorrow", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "mintAmount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "pendingAdmin", + "outputs": [ + { + "internalType": "address payable", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "redeemTokens", + "type": "uint256" + } + ], + "name": "redeem", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "redeemAmount", + "type": "uint256" + } + ], + "name": "redeemUnderlying", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "uint256", + "name": "repayAmount", + "type": "uint256" + } + ], + "name": "repayBorrow", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "reserveFactorMantissa", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "liquidator", + "type": "address" + }, + { + "internalType": "address", + "name": "borrower", + "type": "address" + }, + { + "internalType": "uint256", + "name": "seizeTokens", + "type": "uint256" + } + ], + "name": "seize", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "supplyRatePerBlock", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalBorrows", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "totalBorrowsCurrent", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalReserves", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "dst", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "src", + "type": "address" + }, + { + "internalType": "address", + "name": "dst", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "underlying", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file diff --git a/mev_inspect/abis/ironbank/Comptroller.json b/mev_inspect/abis/ironbank/Comptroller.json new file mode 100644 index 0000000..ed7852c --- /dev/null +++ b/mev_inspect/abis/ironbank/Comptroller.json @@ -0,0 +1,246 @@ +[ + { + "inputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "error", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "info", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "detail", + "type": "uint256" + } + ], + "name": "Failure", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newAdmin", + "type": "address" + } + ], + "name": "NewAdmin", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldImplementation", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newImplementation", + "type": "address" + } + ], + "name": "NewImplementation", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldPendingAdmin", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newPendingAdmin", + "type": "address" + } + ], + "name": "NewPendingAdmin", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldPendingImplementation", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newPendingImplementation", + "type": "address" + } + ], + "name": "NewPendingImplementation", + "type": "event" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "constant": false, + "inputs": [], + "name": "_acceptAdmin", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "_acceptImplementation", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "newPendingAdmin", + "type": "address" + } + ], + "name": "_setPendingAdmin", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "newPendingImplementation", + "type": "address" + } + ], + "name": "_setPendingImplementation", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "admin", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "comptrollerImplementation", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "pendingAdmin", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "pendingComptrollerImplementation", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + } +] \ No newline at end of file From 5cb03b48d9615bf49f47a3b499df1090e09d99e9 Mon Sep 17 00:00:00 2001 From: Matthew Gonzalez Date: Fri, 6 May 2022 11:24:11 -0700 Subject: [PATCH 2/8] IronBank Spec --- mev_inspect/classifiers/specs/ironbank.py | 133 ++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 mev_inspect/classifiers/specs/ironbank.py diff --git a/mev_inspect/classifiers/specs/ironbank.py b/mev_inspect/classifiers/specs/ironbank.py new file mode 100644 index 0000000..ef5a2da --- /dev/null +++ b/mev_inspect/classifiers/specs/ironbank.py @@ -0,0 +1,133 @@ +from typing import List, Optional + +from mev_inspect.classifiers.helpers import get_debt_transfer, get_received_transfer +from mev_inspect.schemas.classifiers import ( + Classification, + ClassifiedTrace, + ClassifierSpec, + DecodedCallTrace, + LiquidationClassifier, + SeizeClassifier, +) +from mev_inspect.schemas.liquidations import Liquidation +from mev_inspect.schemas.prices import ETH_TOKEN_ADDRESS +from mev_inspect.schemas.traces import Protocol +from mev_inspect.schemas.transfers import Transfer + +CYETH_TOKEN_ADDRESS = "0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393" + + +class IronBankLiquidationClassifier(LiquidationClassifier): + @staticmethod + def parse_liquidation( + liquidation_trace: DecodedCallTrace, + child_transfers: List[Transfer], + child_traces: List[ClassifiedTrace], + ) -> Optional[Liquidation]: + + liquidator = liquidation_trace.from_address + liquidated = liquidation_trace.inputs["borrower"] + + debt_token_address = liquidation_trace.to_address + received_token_address = liquidation_trace.inputs["cTokenCollateral"] + + debt_purchase_amount = None + received_amount = None + + debt_purchase_amount, debt_token_address = ( + (liquidation_trace.value, ETH_TOKEN_ADDRESS) + if debt_token_address == CYETH_TOKEN_ADDRESS + and liquidation_trace.value != 0 + else (liquidation_trace.inputs["repayAmount"], CYETH_TOKEN_ADDRESS) + ) + + debt_transfer = get_debt_transfer(liquidator, child_transfers) + + received_transfer = get_received_transfer(liquidator, child_transfers) + + seize_trace = _get_seize_call(child_traces) + + if debt_transfer is not None: + debt_token_address = debt_transfer.token_address + debt_purchase_amount = debt_transfer.amount + + if received_transfer is not None: + received_token_address = received_transfer.token_address + received_amount = received_transfer.amount + + elif seize_trace is not None and seize_trace.inputs is not None: + received_amount = seize_trace.inputs["seizeTokens"] + + if received_amount is None: + return None + + return Liquidation( + liquidated_user=liquidated, + debt_token_address=debt_token_address, + liquidator_user=liquidator, + debt_purchase_amount=debt_purchase_amount, + protocol=liquidation_trace.protocol, + received_amount=received_amount, + received_token_address=received_token_address, + transaction_hash=liquidation_trace.transaction_hash, + trace_address=liquidation_trace.trace_address, + block_number=liquidation_trace.block_number, + error=liquidation_trace.error, + ) + + return None + + +IRONBANK_CYETH_SPEC = ClassifierSpec( + abi_name="CEther", + protocol=Protocol.ironbank, + valid_contract_addresses=["0x41c84c0e2EE0b740Cf0d31F63f3B6F627DC6b393"], + classifiers={ + "liquidateBorrow(address,address)": IronBankLiquidationClassifier, + "seize(address,address,uint256)": SeizeClassifier, + }, +) + +IRONBANK_CTOKEN_SPEC = ClassifierSpec( + abi_name="CToken", + protocol=Protocol.ironbank, + valid_contract_addresses=[ + "0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393", # cyWETH + "0x8e595470ed749b85c6f7669de83eae304c2ec68f", # cyDAI + "0xe7bff2da8a2f619c2586fb83938fa56ce803aa16", # cyLINK + "0xfa3472f7319477c9bfecdd66e4b948569e7621b9", # cyYFI + "0x12a9cc33a980daa74e00cc2d1a0e74c57a93d12c", # cySNX + "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", # cyWBTC + "0x48759f220ed983db51fa7a8c0d2aab8f3ce4166a", # cyUSDT + "0x76eb2fe28b36b3ee97f3adae0c69606eedb2a37c", # cyUDSC + "0xa7c4054afd3dbbbf5bfe80f41862b89ea05c9806", # cySUSD + "0xa8caea564811af0e92b1e044f3edd18fa9a73e4f", # cyEURS + "0xca55f9c4e77f7b8524178583b0f7c798de17fd54", # cySEUR + "0x7736ffb07104c0c400bb0cc9a7c228452a732992", # cyDPI + "0xbddeb563e90f6cbf168a7cda4927806477e5b6c6", # cyUSDP + "0xFEEB92386A055E2eF7C2B598c872a4047a7dB59F", # cyUNI + "0x226F3738238932BA0dB2319a8117D9555446102f", # cySUSHI + "0xB8c5af54bbDCc61453144CF472A9276aE36109F9", # cyCRV + "0x30190a3B52b5AB1daF70D46D72536F5171f22340", # cyAAVE + "0x9e8E207083ffd5BDc3D99A1F32D1e6250869C1A9", # iMIM + "0xE0B57FEEd45e7D908f2d0DaCd26F113Cf26715BF", # iCVX + "0xd2b0D3594427e0c57C39e3455E2FB2dFED1e0B99", # iAPE + ], + classifiers={ + "liquidateBorrow(address,uint256,address)": IronBankLiquidationClassifier, + "seize(address,address,uint256)": SeizeClassifier, + }, +) + +IRONBANK_CLASSIFIER_SPECS: List[ClassifierSpec] = [ + IRONBANK_CYETH_SPEC, + IRONBANK_CTOKEN_SPEC, +] + + +def _get_seize_call(traces: List[ClassifiedTrace]) -> Optional[ClassifiedTrace]: + """Find the call to `seize` in the child traces (successful liquidation)""" + for trace in traces: + if trace.classification == Classification.seize: + return trace + return None From 3672f2dfbc65c4bf0f374243b87d0b2ae12aea86 Mon Sep 17 00:00:00 2001 From: Matthew Gonzalez Date: Fri, 6 May 2022 11:28:38 -0700 Subject: [PATCH 3/8] Add Fixed Forex Markets --- mev_inspect/classifiers/specs/ironbank.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mev_inspect/classifiers/specs/ironbank.py b/mev_inspect/classifiers/specs/ironbank.py index ef5a2da..d05b6e9 100644 --- a/mev_inspect/classifiers/specs/ironbank.py +++ b/mev_inspect/classifiers/specs/ironbank.py @@ -112,6 +112,13 @@ IRONBANK_CTOKEN_SPEC = ClassifierSpec( "0x9e8E207083ffd5BDc3D99A1F32D1e6250869C1A9", # iMIM "0xE0B57FEEd45e7D908f2d0DaCd26F113Cf26715BF", # iCVX "0xd2b0D3594427e0c57C39e3455E2FB2dFED1e0B99", # iAPE + "0x00e5c0774A5F065c285068170b20393925C84BF3", # cyEUR + "0x3c9f5385c288cE438Ed55620938A4B967c080101", # cyKRW + "0x215F34af6557A6598DbdA9aa11cc556F5AE264B1", # cyJPY + "0x86BBD9ac8B9B44C95FFc6BAAe58E25033B7548AA", # cyAUD + "0xecaB2C76f1A8359A06fAB5fA0CEea51280A97eCF", # cyGBP + "0x1b3E95E8ECF7A7caB6c4De1b344F94865aBD12d5", # cyCHF + "0x672473908587b10e65DAB177Dbaeadcbb30BF40B", # cyZAR ], classifiers={ "liquidateBorrow(address,uint256,address)": IronBankLiquidationClassifier, From 69c55630e8c30fa8d0d84bbb8348133385d8c0cd Mon Sep 17 00:00:00 2001 From: Matthew Gonzalez Date: Fri, 6 May 2022 11:30:24 -0700 Subject: [PATCH 4/8] Add Ironbank as Protocol --- mev_inspect/schemas/traces.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mev_inspect/schemas/traces.py b/mev_inspect/schemas/traces.py index 68c1592..9516b67 100644 --- a/mev_inspect/schemas/traces.py +++ b/mev_inspect/schemas/traces.py @@ -50,6 +50,7 @@ class Protocol(Enum): cryptopunks = "cryptopunks" bancor = "bancor" opensea = "opensea" + ironbank = "ironbank" class ClassifiedTrace(Trace): From 89ac9cbb3cfcde2cd9ec4cfd5ebc18c5813f3062 Mon Sep 17 00:00:00 2001 From: Matthew Gonzalez Date: Fri, 6 May 2022 16:21:16 -0700 Subject: [PATCH 5/8] Tests for Ironbank --- mev_inspect/classifiers/specs/__init__.py | 2 + tests/blocks/14422990.json | 19377 ++++++++++++++++++++ tests/test_ironbank.py | 65 + 3 files changed, 19444 insertions(+) create mode 100644 tests/blocks/14422990.json create mode 100644 tests/test_ironbank.py diff --git a/mev_inspect/classifiers/specs/__init__.py b/mev_inspect/classifiers/specs/__init__.py index 5fecc32..a530c7b 100644 --- a/mev_inspect/classifiers/specs/__init__.py +++ b/mev_inspect/classifiers/specs/__init__.py @@ -15,6 +15,7 @@ from .opensea import OPENSEA_CLASSIFIER_SPECS from .uniswap import UNISWAP_CLASSIFIER_SPECS from .weth import WETH_CLASSIFIER_SPECS from .zero_ex import ZEROX_CLASSIFIER_SPECS +from .ironbank import IRONBANK_CLASSIFIER_SPECS ALL_CLASSIFIER_SPECS = ( ERC20_CLASSIFIER_SPECS @@ -29,6 +30,7 @@ ALL_CLASSIFIER_SPECS = ( + CRYPTOPUNKS_CLASSIFIER_SPECS + OPENSEA_CLASSIFIER_SPECS + BANCOR_CLASSIFIER_SPECS + + IRONBANK_CLASSIFIER_SPECS ) _SPECS_BY_ABI_NAME_AND_PROTOCOL: Dict[ diff --git a/tests/blocks/14422990.json b/tests/blocks/14422990.json new file mode 100644 index 0000000..becd969 --- /dev/null +++ b/tests/blocks/14422990.json @@ -0,0 +1,19377 @@ +{ + "block_number": 14422990, + "block_timestamp": 1647775762, + "miner": "0x1ad91ee08f21be3de0ba2ba6918e714da6b45836", + "base_fee_per_gas": 11233106668, + "traces": [ + { + "action": { + "callType": "call", + "from": "0xeef85c7170c2c92ea0a4606073e4156d887b1099", + "gas": "0x1e246c", + "input": "0x000000002000000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df010100b204853d955acef822db058eb8505911ed77f175b99e1531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df89846a64388f8bac205dbd56cbc0dc6bdfa816fb59bd6774c22486d9f4fab2d448dce4f892a9ae250d0ab87046fbb341d058f17cbc4c1133f25a20a52f000db63cac384247597756545b500253ff8e607a8020010b00020f0100000e030c01990966d504030200000669061b8a0214a8d10145d8471730151434ca54ff2188051b0eea095007d3bef21ab287be961f3d859801010001061d0f00000000", + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "value": "0xdc13ce" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xca1ad", + "output": "0x" + }, + "subtraces": 7, + "trace_address": [], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1d9e88", + "input": "0x128acb08000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000000000000000000000000000000000000000000001ffffffffffffffffffffffffffffffffffffffffffffffe9516424e642f04a2100000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b204853d955acef822db058eb8505911ed77f175b99e1531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df89846a64388f8bac205dbd56cbc0dc6bdfa816fb59bd6774c22486d9f4fab2d448dce4f892a9ae250d0ab87046fbb341d058f17cbc4c1133f25a20a52f000db63cac384247597756545b500253ff8e607a8020010b00020f0100000e030c01990966d5040302000006", + "to": "0x69061b8a0214a8d10145d8471730151434ca54ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xafecf", + "output": "0x0000000000000000000000000000000000000000000000000000000357fab9faffffffffffffffffffffffffffffffffffffffffffffffe9516424e642f04a21" + }, + "subtraces": 4, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x69061b8a0214a8d10145d8471730151434ca54ff", + "gas": "0x1ca007", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x760f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x69061b8a0214a8d10145d8471730151434ca54ff", + "gas": "0x1c1ecc", + "input": "0x70a0823100000000000000000000000069061b8a0214a8d10145d8471730151434ca54ff", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9a4", + "output": "0x0000000000000000000000000000000000000000000000000000c10dee7f490b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x69061b8a0214a8d10145d8471730151434ca54ff", + "gas": "0x1c123c", + "input": "0xfa461e330000000000000000000000000000000000000000000000000000000357fab9faffffffffffffffffffffffffffffffffffffffffffffffe9516424e642f04a21000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000b204853d955acef822db058eb8505911ed77f175b99e1531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df89846a64388f8bac205dbd56cbc0dc6bdfa816fb59bd6774c22486d9f4fab2d448dce4f892a9ae250d0ab87046fbb341d058f17cbc4c1133f25a20a52f000db63cac384247597756545b500253ff8e607a8020010b00020f0100000e030c01990966d50403020000060000000000000000000000000000", + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9d1c4", + "output": "0x" + }, + "subtraces": 8, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1b9e14", + "input": "0x095ea7b30000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x609d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1b349c", + "input": "0xf5e3c46200000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x76cdd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x1ab45c", + "input": "0xf5e3c46200000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x75876", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 15, + "trace_address": [ + 0, + 2, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x1a2cc4", + "input": "0xc90c20b1", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x31a4", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x19b0aa", + "input": "0xc90c20b1", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d8d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x19de27", + "input": "0x70a082310000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa6a", + "output": "0x00000000000000000000000000000000000000000016cd3781e9cd81f32bf88c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x199e68", + "input": "0x15f2405300000000000000000000000000000000000000000016cd3781e9cd81f32bf88c000000000000000000000000000000000000000000063b63677846bb09889b6a00000000000000000000000000000000000000000000306180b7b983c9f6f211", + "to": "0x4ef29407a8dbca2f37b7107eab54d6f2a3f2ad60", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1e4e", + "output": "0x00000000000000000000000000000000000000000000000000000005cdced76a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x191411", + "input": "0xbdfa046600000000000000000000000000000000000000000000000000000005cdced76a", + "to": "0x4ef29407a8dbca2f37b7107eab54d6f2a3f2ad60", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": null, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "call", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x1907c2", + "input": "0xa6afed95", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xdd50", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 4 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x1899e4", + "input": "0xa6afed95", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xd2b9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 1, + 0, + 4, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x181b05", + "input": "0x70a0823100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa2f", + "output": "0x000000000000000000000000000000000000000000000249a16619d811339ac3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 4, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x17db80", + "input": "0x15f24053000000000000000000000000000000000000000000000249a16619d811339ac300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030776b9ae4dabd996", + "to": "0xcdc0a449e011249482824effcfa05c883d36cfc7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1bc0", + "output": "0x00000000000000000000000000000000000000000000000000000002c4c4e299" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 4, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x17699d", + "input": "0xbdfa046600000000000000000000000000000000000000000000000000000002c4c4e299", + "to": "0xcdc0a449e011249482824effcfa05c883d36cfc7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": null, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 4, + 0, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "call", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x182b42", + "input": "0x5fc7e71e0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de4400000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2e7fa", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x17c868", + "input": "0x5fc7e71e0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de4400000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2e51a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 5, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x175d04", + "input": "0x95dd919300000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x17fc", + "output": "0x000000000000000000000000000000000000000000000034a4f5778fa92685cc" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x16fd7c", + "input": "0x95dd919300000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1532", + "output": "0x000000000000000000000000000000000000000000000034a4f5778fa92685cc" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x171e84", + "input": "0xc37f68e200000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2b3f", + "output": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001578b228800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001629036f88a092f6ab86e4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x16bff6", + "input": "0xc37f68e200000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2851", + "output": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001578b228800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001629036f88a092f6ab86e4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x164834", + "input": "0x70a0823100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25f", + "output": "0x000000000000000000000000000000000000000000000249a16619d811339ac3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x16d75d", + "input": "0xfc57d4df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x119bc", + "output": "0x0000000000000000000000000000000000000000000000000e28f832fdbdfb17" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x1671dd", + "input": "0xfc57d4df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0xb3c8ee7309be658c186f986388c2377da436d8fb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10f4c", + "output": "0x0000000000000000000000000000000000000000000000000e28f832fdbdfb17" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x1615c2", + "input": "0x6f307dc3", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x15bb5d", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x15f4dc", + "input": "0xfc57d4df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xeaea", + "output": "0x0000000000000000000000000000000000000000000000000e28f832fdbdfb17" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x159acd", + "input": "0xac784ddc", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x418", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x154254", + "input": "0xac784ddc", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x151", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x15953b", + "input": "0x6f307dc3", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x153cd8", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x157c4c", + "input": "0xfc57d4df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc923", + "output": "0x0000000000000000000000000000000000000000000000000e28f832fdbdfb17" + }, + "subtraces": 4, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "gas": "0x152432", + "input": "0x6f307dc3", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x14cd93", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "gas": "0x151e4c", + "input": "0x313ce567", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x976", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "gas": "0x15028f", + "input": "0xaea9107800000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "to": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x806b", + "output": "0x0000000000000000000000000000000000000000000000000023a958ca3bb600" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x149949", + "input": "0xaea9107800000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "to": "0x058c345d3240001088b6280e008f9e78b3b2112d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6a51", + "output": "0x0000000000000000000000000000000000000000000000000023a958ca3bb600" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x058c345d3240001088b6280e008f9e78b3b2112d", + "gas": "0x1432bf", + "input": "0xbcfd032d00000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x490a", + "output": "0x000000000000000000000000000000000000000000000001000000000000013b0000000000000000000000000000000000000000000000000023a958ca3bb600000000000000000000000000000000000000000000000000000000006236df75000000000000000000000000000000000000000000000000000000006236df75000000000000000000000000000000000000000000000001000000000000013b" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 2, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x13ba05", + "input": "0xfeaf968c", + "to": "0x9aae856973a0cafa084b82f7bc4c6c2893a9139b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1cf2", + "output": "0x000000000000000000000000000000000000000000000000000000000000013b0000000000000000000000000000000000000000000000000023a958ca3bb600000000000000000000000000000000000000000000000000000000006236df75000000000000000000000000000000000000000000000000000000006236df75000000000000000000000000000000000000000000000000000000000000013b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x058c345d3240001088b6280e008f9e78b3b2112d", + "gas": "0x13e808", + "input": "0x58e2d3a800000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x824", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 2, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x1392a1", + "input": "0x313ce567", + "to": "0x9aae856973a0cafa084b82f7bc4c6c2893a9139b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x114", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 2, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "gas": "0x14822b", + "input": "0x2986c0e5", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2031", + "output": "0x00000000000000000000000000000000000000000000000000000017aac60929" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "gas": "0x1423c2", + "input": "0x2986c0e5", + "to": "0x04906695d6d12cf5459975d7c3c03356e4ccd460", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x12ee", + "output": "0x00000000000000000000000000000000000000000000000000000017aac60929" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 2, + 0, + 1, + 2, + 3, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x15b5ae", + "input": "0xc37f68e200000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x264d", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a4f5778fa92685cc000000000000000000000000000000000000000000b65f48435d79940b28f240" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x155cc3", + "input": "0xc37f68e200000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x235f", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034a4f5778fa92685cc000000000000000000000000000000000000000000b65f48435d79940b28f240" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 3, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x14efa6", + "input": "0x70a082310000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x00000000000000000000000000000000000000000016cd3781e9cd81f32bf88c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 3, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x158c64", + "input": "0xfc57d4df0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xe9c6", + "output": "0x000000000000000000000000000000000000000000000000000137452d1a1dab" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x1535ad", + "input": "0xfc57d4df0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0xb3c8ee7309be658c186f986388c2377da436d8fb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xe91a", + "output": "0x000000000000000000000000000000000000000000000000000137452d1a1dab" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x14de82", + "input": "0x6f307dc3", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x1488fa", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x14ceeb", + "input": "0xfc57d4df0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xd64c", + "output": "0x000000000000000000000000000000000000000000000000000137452d1a1dab" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x147974", + "input": "0xac784ddc", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x418", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x142580", + "input": "0xac784ddc", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x151", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x1473e2", + "input": "0x6f307dc3", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x142004", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x145af3", + "input": "0xfc57d4df0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb485", + "output": "0x000000000000000000000000000000000000000000000000000137452d1a1dab" + }, + "subtraces": 5, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x140736", + "input": "0xac784ddc", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x418", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x13b50b", + "input": "0xac784ddc", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x151", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x1401a4", + "input": "0x6f307dc3", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x13af8f", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x13e093", + "input": "0xfeaf968c", + "to": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3d1b", + "output": "0x00000000000000000000000000000000000000000000000500000000000053150000000000000000000000000000000000000000000000000000004401cfec390000000000000000000000000000000000000000000000000000000062370a580000000000000000000000000000000000000000000000000000000062370a580000000000000000000000000000000000000000000000050000000000005315" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "gas": "0x137402", + "input": "0xfeaf968c", + "to": "0x37bc7498f4ff12c19678ee8fe19d713b87f6a9e6", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1cf2", + "output": "0x00000000000000000000000000000000000000000000000000000000000053150000000000000000000000000000000000000000000000000000004401cfec390000000000000000000000000000000000000000000000000000000062370a580000000000000000000000000000000000000000000000000000000062370a580000000000000000000000000000000000000000000000000000000000005315" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x139934", + "input": "0xfeaf968c", + "to": "0xb9e1e3a9feff48998e45fa90847ed4d467e8bcfd", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3d1b", + "output": "0x00000000000000000000000000000000000000000000000100000000000003f50000000000000000000000000000000000000000000000000000000005f55b590000000000000000000000000000000000000000000000000000000062370a260000000000000000000000000000000000000000000000000000000062370a2600000000000000000000000000000000000000000000000100000000000003f5" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb9e1e3a9feff48998e45fa90847ed4d467e8bcfd", + "gas": "0x132dc1", + "input": "0xfeaf968c", + "to": "0x61eb091ea16a32ea5b880d0b3d09d518c340d750", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1cf2", + "output": "0x00000000000000000000000000000000000000000000000000000000000003f50000000000000000000000000000000000000000000000000000000005f55b590000000000000000000000000000000000000000000000000000000062370a260000000000000000000000000000000000000000000000000000000062370a2600000000000000000000000000000000000000000000000000000000000003f5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 3, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x135a67", + "input": "0x313ce567", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x160", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 5, + 0, + 4, + 0, + 1, + 2, + 4 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x154ca9", + "input": "0x6c540baf", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x461", + "output": "0x0000000000000000000000000000000000000000000000000000000000dc13ce" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 6 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x14f568", + "input": "0x6c540baf", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x19a", + "output": "0x0000000000000000000000000000000000000000000000000000000000dc13ce" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 6, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x15456c", + "input": "0x24008a620000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xe17", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 7 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x14ee30", + "input": "0x24008a620000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb3d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 7, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x152ea4", + "input": "0x70a082310000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x00000000000000000000000000000000000000000016cd3781e9cd81f32bf88c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 8 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x1527c2", + "input": "0x23b872dd000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x230e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 9 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x150268", + "input": "0x70a082310000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x00000000000000000000000000000000000000000016cd4e3085a89bb03bae6b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 10 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x14da76", + "input": "0xc488847b0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de4400000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xd177", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000157798a13" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x1484e1", + "input": "0xc488847b0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de4400000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25000000000000000000000000000000000000000000000016ae9bdb19bd0fb5df", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xce90", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000157798a13" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x142f74", + "input": "0xfc57d4df0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4b92", + "output": "0x000000000000000000000000000000000000000000000000000137452d1a1dab" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x13de31", + "input": "0xfc57d4df0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0xb3c8ee7309be658c186f986388c2377da436d8fb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4ae6", + "output": "0x000000000000000000000000000000000000000000000000000137452d1a1dab" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x138c64", + "input": "0x6f307dc3", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x133c24", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x13847d", + "input": "0xfc57d4df0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3fe8", + "output": "0x000000000000000000000000000000000000000000000000000137452d1a1dab" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x133430", + "input": "0xac784ddc", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x418", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x12e551", + "input": "0xac784ddc", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x151", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x132e9d", + "input": "0x6f307dc3", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x12dfd4", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x1326fc", + "input": "0xfc57d4df0000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44", + "to": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2fb5", + "output": "0x000000000000000000000000000000000000000000000000000137452d1a1dab" + }, + "subtraces": 5, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x12d80f", + "input": "0xac784ddc", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x418", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x128aa1", + "input": "0xac784ddc", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x151", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x12d27d", + "input": "0x6f307dc3", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x128525", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x000000000000000000000000853d955acef822db058eb8505911ed77f175b99e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x12ca6a", + "input": "0xfeaf968c", + "to": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc47", + "output": "0x00000000000000000000000000000000000000000000000500000000000053150000000000000000000000000000000000000000000000000000004401cfec390000000000000000000000000000000000000000000000000000000062370a580000000000000000000000000000000000000000000000000000000062370a580000000000000000000000000000000000000000000000050000000000005315" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419", + "gas": "0x127b30", + "input": "0xfeaf968c", + "to": "0x37bc7498f4ff12c19678ee8fe19d713b87f6a9e6", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x582", + "output": "0x00000000000000000000000000000000000000000000000000000000000053150000000000000000000000000000000000000000000000000000004401cfec390000000000000000000000000000000000000000000000000000000062370a580000000000000000000000000000000000000000000000000000000062370a580000000000000000000000000000000000000000000000000000000000005315" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x12bcb9", + "input": "0xfeaf968c", + "to": "0xb9e1e3a9feff48998e45fa90847ed4d467e8bcfd", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc47", + "output": "0x00000000000000000000000000000000000000000000000100000000000003f50000000000000000000000000000000000000000000000000000000005f55b590000000000000000000000000000000000000000000000000000000062370a260000000000000000000000000000000000000000000000000000000062370a2600000000000000000000000000000000000000000000000100000000000003f5" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb9e1e3a9feff48998e45fa90847ed4d467e8bcfd", + "gas": "0x126db6", + "input": "0xfeaf968c", + "to": "0x61eb091ea16a32ea5b880d0b3d09d518c340d750", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x582", + "output": "0x00000000000000000000000000000000000000000000000000000000000003f50000000000000000000000000000000000000000000000000000000005f55b590000000000000000000000000000000000000000000000000000000062370a260000000000000000000000000000000000000000000000000000000062370a2600000000000000000000000000000000000000000000000000000000000003f5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 3, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb0602af43ca042550ca9da3c33ba3ac375d20df4", + "gas": "0x12adfd", + "input": "0x313ce567", + "to": "0x853d955acef822db058eb8505911ed77f175b99e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x160", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 0, + 0, + 1, + 2, + 4 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x13e2e5", + "input": "0xfc57d4df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5860", + "output": "0x0000000000000000000000000000000000000000000000000e28f832fdbdfb17" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x1392d4", + "input": "0xfc57d4df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0xb3c8ee7309be658c186f986388c2377da436d8fb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x57b4", + "output": "0x0000000000000000000000000000000000000000000000000e28f832fdbdfb17" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x134235", + "input": "0x6f307dc3", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x12f31e", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43e4c9e679a42b7ecd7fcc542517a3ab027692fb", + "gas": "0x133a4e", + "input": "0xfc57d4df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4cb6", + "output": "0x0000000000000000000000000000000000000000000000000e28f832fdbdfb17" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x12eb29", + "input": "0xac784ddc", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x418", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x129d6e", + "input": "0xac784ddc", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x151", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x12e597", + "input": "0x6f307dc3", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x1297f2", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x12ddf6", + "input": "0xfc57d4df00000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3c83", + "output": "0x0000000000000000000000000000000000000000000000000e28f832fdbdfb17" + }, + "subtraces": 4, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "gas": "0x129055", + "input": "0x6f307dc3", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x45b", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x124406", + "input": "0x6f307dc3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x0000000000000000000000000ab87046fbb341d058f17cbc4c1133f25a20a52f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "gas": "0x128a6f", + "input": "0x313ce567", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1a6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "gas": "0x1285c4", + "input": "0xaea9107800000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "to": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x249f", + "output": "0x0000000000000000000000000000000000000000000000000023a958ca3bb600" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1887118e49e0f4a78bd71b792a49de03504a764d", + "gas": "0x1237be", + "input": "0xaea9107800000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "to": "0x058c345d3240001088b6280e008f9e78b3b2112d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2019", + "output": "0x0000000000000000000000000000000000000000000000000023a958ca3bb600" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x058c345d3240001088b6280e008f9e78b3b2112d", + "gas": "0x11ec08", + "input": "0xbcfd032d00000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1066", + "output": "0x000000000000000000000000000000000000000000000001000000000000013b0000000000000000000000000000000000000000000000000023a958ca3bb600000000000000000000000000000000000000000000000000000000006236df75000000000000000000000000000000000000000000000000000000006236df75000000000000000000000000000000000000000000000001000000000000013b" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 2, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x119d18", + "input": "0xfeaf968c", + "to": "0x9aae856973a0cafa084b82f7bc4c6c2893a9139b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x582", + "output": "0x000000000000000000000000000000000000000000000000000000000000013b0000000000000000000000000000000000000000000000000023a958ca3bb600000000000000000000000000000000000000000000000000000000006236df75000000000000000000000000000000000000000000000000000000006236df75000000000000000000000000000000000000000000000000000000000000013b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x058c345d3240001088b6280e008f9e78b3b2112d", + "gas": "0x11d912", + "input": "0x58e2d3a800000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x824", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 2, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x118be7", + "input": "0x313ce567", + "to": "0x9aae856973a0cafa084b82f7bc4c6c2893a9139b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x114", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 2, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x057ecda7f61c73c3adcc36899d2626c7b79c3249", + "gas": "0x125fbe", + "input": "0x2986c0e5", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6cd", + "output": "0x00000000000000000000000000000000000000000000000000000017aac60929" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "gas": "0x12137c", + "input": "0x2986c0e5", + "to": "0x04906695d6d12cf5459975d7c3c03356e4ccd460", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x34e", + "output": "0x00000000000000000000000000000000000000000000000000000017aac60929" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 1, + 0, + 1, + 2, + 3, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x138a38", + "input": "0x182df0f5", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10d7", + "output": "0x0000000000000000000000000000000000000000001629036f88a092f6ab86e4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x133a01", + "input": "0x182df0f5", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xe10", + "output": "0x0000000000000000000000000000000000000000001629036f88a092f6ab86e4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x12e9d4", + "input": "0x70a0823100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25f", + "output": "0x000000000000000000000000000000000000000000000249a16619d811339ac3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 11, + 0, + 2, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x140a59", + "input": "0x70a0823100000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4dd", + "output": "0x00000000000000000000000000000000000000000000000000000001578b2288" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 12 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x13b81c", + "input": "0x70a0823100000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x213", + "output": "0x00000000000000000000000000000000000000000000000000000001578b2288" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 12, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x14037c", + "input": "0xb2a02ff1000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb0000000000000000000000000000000000000000000000000000000157798a13", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xe737", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 13 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x13b14e", + "input": "0xb2a02ff1000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb0000000000000000000000000000000000000000000000000000000157798a13", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xe464", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 1, + 0, + 13, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x134341", + "input": "0xd02f735100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae250000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb0000000000000000000000000000000000000000000000000000000157798a13", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1be7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 13, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x12f3fd", + "input": "0xd02f735100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae250000000000000000000000001531c1a63a169ac75a2daae399080745fa51de44000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000089846a64388f8bac205dbd56cbc0dc6bdfa816fb0000000000000000000000000000000000000000000000000000000157798a13", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x18fd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 1, + 0, + 13, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x129b71", + "input": "0x5fe3b567", + "to": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x488", + "output": "0x000000000000000000000000814b02c1ebc9164972d888495927fe1697f0fb4c" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 13, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x124ef5", + "input": "0x5fe3b567", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1c1", + "output": "0x000000000000000000000000814b02c1ebc9164972d888495927fe1697f0fb4c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 13, + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x129561", + "input": "0x5fe3b567", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x488", + "output": "0x000000000000000000000000814b02c1ebc9164972d888495927fe1697f0fb4c" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 13, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x1248fd", + "input": "0x5fe3b567", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1c1", + "output": "0x000000000000000000000000814b02c1ebc9164972d888495927fe1697f0fb4c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 13, + 0, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x132009", + "input": "0x70a0823100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25f", + "output": "0x000000000000000000000000000000000000000000000249a16619d811339ac3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 13, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1531c1a63a169ac75a2daae399080745fa51de44", + "gas": "0x131416", + "input": "0x632e5142", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x52d", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 1, + 0, + 14 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x12c5b7", + "input": "0x632e5142", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2b4", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1, + 0, + 14, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x13e45e", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4dd", + "output": "0x000000000000000000000000000000000000000000000000000000014ddb8323" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x1392b8", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x213", + "output": "0x000000000000000000000000000000000000000000000000000000014ddb8323" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x13df02", + "input": "0xdb006a75000000000000000000000000000000000000000000000000000000014ddb8323", + "to": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf337", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x138d72", + "input": "0xdb006a75000000000000000000000000000000000000000000000000000000014ddb8323", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf06d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 7, + "trace_address": [ + 0, + 2, + 3, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x133b8f", + "input": "0xc90c20b1", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1070", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 3, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x12ec88", + "input": "0xc90c20b1", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xded", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3, + 0, + 0, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x131b43", + "input": "0x70a0823100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25f", + "output": "0x000000000000000000000000000000000000000000000249a16619d811339ac3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3, + 0, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x130b27", + "input": "0xeabe7d9100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000000000014ddb8323", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 3, + 0, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x12bcd0", + "input": "0xeabe7d9100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000000000014ddb8323", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc9e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3, + 0, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x12f5ee", + "input": "0x70a0823100000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25f", + "output": "0x000000000000000000000000000000000000000000000249a16619d811339ac3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3, + 0, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x12ef79", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000002151b7db8748bc1", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7fd4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3, + 0, + 4 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x125f9a", + "input": "0x51dff98900000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000002151b7db8748bc1000000000000000000000000000000000000000000000000000000014ddb8323", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x465", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 3, + 0, + 5 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x1213f5", + "input": "0x51dff98900000000000000000000000059bd6774c22486d9f4fab2d448dce4f892a9ae25000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000002151b7db8748bc1000000000000000000000000000000000000000000000000000000014ddb8323", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d4", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3, + 0, + 5, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x59bd6774c22486d9f4fab2d448dce4f892a9ae25", + "gas": "0x125822", + "input": "0x632e5142", + "to": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x52d", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 3, + 0, + 6 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x814b02c1ebc9164972d888495927fe1697f0fb4c", + "gas": "0x120cb2", + "input": "0x632e5142", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2b4", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3, + 0, + 6, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12e7d1", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25f", + "output": "0x00000000000000000000000000000000000000000000000002151b7db8748bc1" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 4 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12cf0c", + "input": "0x990966d5000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000002151b7db8748bc100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb63cac384247597756545b500253ff8e607a8020", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xbe7a", + "output": "0x000000000000000000000000000000000000000000000000000000038d285e2c" + }, + "subtraces": 4, + "trace_address": [ + 0, + 2, + 5 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb63cac384247597756545b500253ff8e607a8020", + "gas": "0x1280cf", + "input": "0x9dc29fac000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000002151b7db8748bc1", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x320f", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb63cac384247597756545b500253ff8e607a8020", + "gas": "0x124e21", + "input": "0xa824876800000000000000000000000000000000000000000000000002151b7db8748bc1", + "to": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9d4", + "output": "0x000000000000000000000000000000000000000000000000000000038d285e2c" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 5, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x0ab87046fbb341d058f17cbc4c1133f25a20a52f", + "gas": "0x1200fb", + "input": "0x2986c0e5", + "to": "0x04906695d6d12cf5459975d7c3c03356e4ccd460", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x34e", + "output": "0x00000000000000000000000000000000000000000000000000000017aac60929" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 1, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb63cac384247597756545b500253ff8e607a8020", + "gas": "0x124257", + "input": "0x70a08231000000000000000000000000b63cac384247597756545b500253ff8e607a8020", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9a4", + "output": "0x0000000000000000000000000000000000000000000000000026e9d78dc9725b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb63cac384247597756545b500253ff8e607a8020", + "gas": "0x12356b", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000000000038d285e2c", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6d5c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12114c", + "input": "0x0dfe1681", + "to": "0x69061b8a0214a8d10145d8471730151434ca54ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10a", + "output": "0x00000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 6 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x120f71", + "input": "0xa9059cbb00000000000000000000000069061b8a0214a8d10145d8471730151434ca54ff0000000000000000000000000000000000000000000000000000000357fab9fa", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x17d0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 7 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x69061b8a0214a8d10145d8471730151434ca54ff", + "gas": "0x126546", + "input": "0x70a0823100000000000000000000000069061b8a0214a8d10145d8471730151434ca54ff", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d4", + "output": "0x0000000000000000000000000000000000000000000000000000c111467a0305" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12bff4", + "input": "0x0dfe1681", + "to": "0x88051b0eea095007d3bef21ab287be961f3d8598", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10a", + "output": "0x00000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12be2e", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d4", + "output": "0x00000000000000000000000000000000000000000000000000000000352da432" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12baed", + "input": "0x128acb08000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000352da43200000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000106", + "to": "0x88051b0eea095007d3bef21ab287be961f3d8598", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x140b7", + "output": "0x00000000000000000000000000000000000000000000000000000000352da432ffffffffffffffffffffffffffffffffffffffffffffffffffe04f1d0e921f45" + }, + "subtraces": 4, + "trace_address": [ + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x88051b0eea095007d3bef21ab287be961f3d8598", + "gas": "0x11e65e", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000001fb0e2f16de0bb", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x88051b0eea095007d3bef21ab287be961f3d8598", + "gas": "0x116fc1", + "input": "0x70a0823100000000000000000000000088051b0eea095007d3bef21ab287be961f3d8598", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9a4", + "output": "0x00000000000000000000000000000000000000000000000000000238fe64e7f6" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x88051b0eea095007d3bef21ab287be961f3d8598", + "gas": "0x116350", + "input": "0xfa461e3300000000000000000000000000000000000000000000000000000000352da432ffffffffffffffffffffffffffffffffffffffffffffffffffe04f1d0e921f45000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010600000000000000000000000000000000000000000000000000000000000000", + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ce4", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x111b2e", + "input": "0x0dfe1681", + "to": "0x88051b0eea095007d3bef21ab287be961f3d8598", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10a", + "output": "0x00000000000000000000000064aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x11194d", + "input": "0xa9059cbb00000000000000000000000088051b0eea095007d3bef21ab287be961f3d859800000000000000000000000000000000000000000000000000000000352da432", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x17d0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 1 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x88051b0eea095007d3bef21ab287be961f3d8598", + "gas": "0x114466", + "input": "0x70a0823100000000000000000000000088051b0eea095007d3bef21ab287be961f3d8598", + "to": "0x64aa3364f17a4d01c6f1751fd97c2bd3d7e7f1d5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d4", + "output": "0x0000000000000000000000000000000000000000000000000000023933928c28" + }, + "subtraces": 0, + "trace_address": [ + 3, + 3 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x117dde", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000001fb0e2f16de0bb" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x117a9e", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000001fb0e2f16de0bb", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x23c7", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 5 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "gas": "0x8fc", + "input": "0x", + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "value": "0x1fb0e2f16de0bb" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x13", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x113d0e", + "input": "0x", + "to": "0xeef85c7170c2c92ea0a4606073e4156d887b1099", + "value": "0x1fb0e2f249f489" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 6 + ], + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xeb5b69c5f93ace94ec36352c1467a540ff167f02", + "gas": "0x1e26d0", + "input": "0x00000000000000000000000000000000000000000000000000000000159aea5abaa5a536b10101008904fafdf0c4c1cb09d430bf88c75d88bb46dae0996786bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000000000000000000000000000159aea5abaa5a536b11791d5ebbdfd565f136e60a3c43269b148f92b448fc8bfd80d6a9f17fb98a373023d72531792b43105004375dff511095cc5a197a54140a24efef3a41601010671852e888a601c9bbb6f48172a9bfbd8010aa81021e0554a476a092703abdb3ef35c80e0d76d32939f01010001061e2000000000", + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "value": "0xdc13ce" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc4254", + "output": "0x" + }, + "subtraces": 7, + "trace_address": [], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1da179", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000159aea5abaa5a536b1000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008904fafdf0c4c1cb09d430bf88c75d88bb46dae0996786bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000000000000000000000000000159aea5abaa5a536b11791d5ebbdfd565f136e60a3c43269b148f92b448fc8bfd80d6a9f17fb98a373023d72531792b43105004375dff511095cc5a197a54140a24efef3a416010106", + "to": "0x71852e888a601c9bbb6f48172a9bfbd8010aa810", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xaa21c", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x71852e888a601c9bbb6f48172a9bfbd8010aa810", + "gas": "0x1cef4b", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7478", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x71852e888a601c9bbb6f48172a9bfbd8010aa810", + "gas": "0x1c795d", + "input": "0x10d1e85c000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000159aea5abaa5a536b10000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000008904fafdf0c4c1cb09d430bf88c75d88bb46dae0996786bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000000000000000000000000000159aea5abaa5a536b11791d5ebbdfd565f136e60a3c43269b148f92b448fc8bfd80d6a9f17fb98a373023d72531792b43105004375dff511095cc5a197a54140a24efef3a4160101060000000000000000000000000000000000000000000000", + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9966d", + "output": "0x" + }, + "subtraces": 13, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1c03a4", + "input": "0x095ea7b300000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fe1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1b9ae4", + "input": "0xf5e3c4620000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b10000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431", + "to": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x66a78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x1b1862", + "input": "0xf5e3c4620000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b10000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x65565", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 13, + "trace_address": [ + 0, + 1, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x1a5aa7", + "input": "0x15f240530000000000000000000000000000000000000000003f54d1b7979984b30f718f00000000000000000000000000000000000000000010191532deae474619b65900000000000000000000000000000000000000000000027c80e500dff173ddf7", + "to": "0x26c325c8880ffe5a5744ff667ba7d8651b868710", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x26a4", + "output": "0x00000000000000000000000000000000000000000000000000000002eb0dc04d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x19e14d", + "input": "0xa6afed95", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb0e8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x197005", + "input": "0xa6afed95", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa64d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x18cd1f", + "input": "0x15f2405300000000000000000000000000000000000000000000000000000007a3468df10000000000000000000000000000000000000000000000000000000014923c7200000000000000000000000000000000000000000000000000000000009d375b", + "to": "0x61e9a6ab4923f5046c0fb80e5c9f98afc9995fad", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1e64", + "output": "0x0000000000000000000000000000000000000000000000000000000033abb74c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x191f49", + "input": "0x5fc7e71e00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2549e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x18a77d", + "input": "0x5fc7e71e00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x24056", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 5, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x180b5a", + "input": "0xc37f68e20000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b44", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x36cd", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005588f670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002413212806772c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x17a64f", + "input": "0x0933c1ed00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024c37f68e20000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x30ee", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005588f670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002413212806772c" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x174323", + "input": "0xc37f68e20000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b44", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2991", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005588f670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002413212806772c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x17afc0", + "input": "0xfc57d4df0000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431", + "to": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa794", + "output": "0x000000000000000000000000000000000000149f2f6593387300f9c513a00000" + }, + "subtraces": 4, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x174dbd", + "input": "0x6f307dc3", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9a6", + "output": "0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x171d25", + "input": "0xbcfd032d000000000000000000000000bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0000000000000000000000000000000000000000000000000000000000000348", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x490a", + "output": "0x0000000000000000000000000000000000000000000000010000000000004276000000000000000000000000000000000000000000000000000003cdd678445a000000000000000000000000000000000000000000000000000000006237080600000000000000000000000000000000000000000000000000000000623708060000000000000000000000000000000000000000000000010000000000004276" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 1, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x1698c1", + "input": "0xfeaf968c", + "to": "0xae74faa92cb67a95ebcab07358bc222e33a34da7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1cf2", + "output": "0x0000000000000000000000000000000000000000000000000000000000004276000000000000000000000000000000000000000000000000000003cdd678445a000000000000000000000000000000000000000000000000000000006237080600000000000000000000000000000000000000000000000000000000623708060000000000000000000000000000000000000000000000000000000000004276" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 1, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x16cec1", + "input": "0x58e2d3a8000000000000000000000000bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0000000000000000000000000000000000000000000000000000000000000348", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x83a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 1, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x166dbf", + "input": "0x313ce567", + "to": "0xae74faa92cb67a95ebcab07358bc222e33a34da7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x12a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x16b8a8", + "input": "0x313ce567", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x97f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 1, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x16fe76", + "input": "0xc37f68e20000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b44", + "to": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x41a6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b3b760b54a1a939f50000000000000000000000000000000000000000005335e3c364719339aed58c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x169d9e", + "input": "0x0933c1ed00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000024c37f68e20000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000", + "to": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3bc7", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b3b760b54a1a939f50000000000000000000000000000000000000000005335e3c364719339aed58c" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x163e95", + "input": "0xc37f68e20000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b44", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x346a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b3b760b54a1a939f50000000000000000000000000000000000000000005335e3c364719339aed58c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 2, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x16b11c", + "input": "0xfc57d4df00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "to": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7bf6", + "output": "0x0000000000000000000000000000000000000000000000000a4dc6b655184000" + }, + "subtraces": 4, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x165313", + "input": "0x6f307dc3", + "to": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9a6", + "output": "0x000000000000000000000000fafdf0c4c1cb09d430bf88c75d88bb46dae09967" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 3, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x1633c9", + "input": "0xbcfd032d00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000348", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x413a", + "output": "0x000000000000000000000000000000000000000000000001000000000000065400000000000000000000000000000000000000000000000000000000046cea9000000000000000000000000000000000000000000000000000000000623648b800000000000000000000000000000000000000000000000000000000623648b80000000000000000000000000000000000000000000000010000000000000654" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 3, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x15babb", + "input": "0xfeaf968c", + "to": "0x7f7b323291c052de18926396176d384c4a8e19e2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1cf2", + "output": "0x000000000000000000000000000000000000000000000000000000000000065400000000000000000000000000000000000000000000000000000000046cea9000000000000000000000000000000000000000000000000000000000623648b800000000000000000000000000000000000000000000000000000000623648b80000000000000000000000000000000000000000000000000000000000000654" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 3, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x15ed16", + "input": "0x58e2d3a800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000348", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x83a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 3, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x158f9b", + "input": "0x313ce567", + "to": "0x7f7b323291c052de18926396176d384c4a8e19e2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x12a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 3, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x15e09a", + "input": "0x313ce567", + "to": "0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x13b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 3, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x162a7a", + "input": "0x95dd91930000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b44", + "to": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x120c", + "output": "0x00000000000000000000000000000000000000000000002b3b760b54a1a939f500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 4 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x15ccb9", + "input": "0x0933c1ed0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002495dd91930000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000", + "to": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000002b3b760b54a1a939f5" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 4, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x1570f3", + "input": "0x95dd91930000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b44", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x59f", + "output": "0x00000000000000000000000000000000000000000000002b3b760b54a1a939f5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 2, + 0, + 4, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x16d1c6", + "input": "0x6c540baf", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x199", + "output": "0x0000000000000000000000000000000000000000000000000000000000dc13ce" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x16ccd6", + "input": "0x24008a6200000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6ce", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 4 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x166fa7", + "input": "0x24008a6200000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x420", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 4, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x16bd8c", + "input": "0x70a0823100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "to": "0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa2c", + "output": "0x0000000000000000000000000000000000000000003f54d1b7979984b30f718f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 5 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x16b1af", + "input": "0x23b872dd000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x216f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 6 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x168e89", + "input": "0x70a0823100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "to": "0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25c", + "output": "0x0000000000000000000000000000000000000000003f54e75281f43f58b4a840" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 7 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x165a5d", + "input": "0x1ededc9100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b10000000000000000000000000000000000000000000000000e298625c6656a00", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3fa", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 8 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x15fef2", + "input": "0x1ededc9100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b10000000000000000000000000000000000000000000000000e298625c6656a00", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x18f", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 8, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x1653fa", + "input": "0xc488847b00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b4310000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x969a", + "output": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047c2cc4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 9 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x15f8b5", + "input": "0xc488847b00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b4310000000000000000000000000000000000000000000000159aea5abaa5a536b1", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x93e9", + "output": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047c2cc4" + }, + "subtraces": 3, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x159d78", + "input": "0xfc57d4df00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "to": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x33b2", + "output": "0x0000000000000000000000000000000000000000000000000a4dc6b655184000" + }, + "subtraces": 4, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x1543be", + "input": "0x6f307dc3", + "to": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d6", + "output": "0x000000000000000000000000fafdf0c4c1cb09d430bf88c75d88bb46dae09967" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x153b86", + "input": "0xbcfd032d00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000348", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1066", + "output": "0x000000000000000000000000000000000000000000000001000000000000065400000000000000000000000000000000000000000000000000000000046cea9000000000000000000000000000000000000000000000000000000000623648b800000000000000000000000000000000000000000000000000000000623648b80000000000000000000000000000000000000000000000010000000000000654" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 0, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x14df58", + "input": "0xfeaf968c", + "to": "0x7f7b323291c052de18926396176d384c4a8e19e2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x582", + "output": "0x000000000000000000000000000000000000000000000000000000000000065400000000000000000000000000000000000000000000000000000000046cea9000000000000000000000000000000000000000000000000000000000623648b800000000000000000000000000000000000000000000000000000000623648b80000000000000000000000000000000000000000000000000000000000000654" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x1524e3", + "input": "0x58e2d3a800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000348", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x83a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 0, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x14ca88", + "input": "0x313ce567", + "to": "0x7f7b323291c052de18926396176d384c4a8e19e2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x12a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 0, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x151867", + "input": "0x313ce567", + "to": "0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x13b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 0, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x15686a", + "input": "0xfc57d4df0000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431", + "to": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3458", + "output": "0x000000000000000000000000000000000000149f2f6593387300f9c513a00000" + }, + "subtraces": 4, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x150f84", + "input": "0x6f307dc3", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d6", + "output": "0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x15074d", + "input": "0xbcfd032d000000000000000000000000bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0000000000000000000000000000000000000000000000000000000000000348", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1066", + "output": "0x0000000000000000000000000000000000000000000000010000000000004276000000000000000000000000000000000000000000000000000003cdd678445a000000000000000000000000000000000000000000000000000000006237080600000000000000000000000000000000000000000000000000000000623708060000000000000000000000000000000000000000000000010000000000004276" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 1, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x14abf0", + "input": "0xfeaf968c", + "to": "0xae74faa92cb67a95ebcab07358bc222e33a34da7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x582", + "output": "0x0000000000000000000000000000000000000000000000000000000000004276000000000000000000000000000000000000000000000000000003cdd678445a000000000000000000000000000000000000000000000000000000006237080600000000000000000000000000000000000000000000000000000000623708060000000000000000000000000000000000000000000000000000000000004276" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 1, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x14f0a9", + "input": "0x58e2d3a8000000000000000000000000bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0000000000000000000000000000000000000000000000000000000000000348", + "to": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x83a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 1, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x47fb2585d2c56fe188d0e6ec628a38b74fceeedf", + "gas": "0x14971f", + "input": "0x313ce567", + "to": "0xae74faa92cb67a95ebcab07358bc222e33a34da7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x12a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe4e9f6cfe8ac8c75a3dbef809dbe4fc40e6fdc4b", + "gas": "0x14e42d", + "input": "0x313ce567", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1af", + "output": "0x0000000000000000000000000000000000000000000000000000000000000008" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 1, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x15332f", + "input": "0x182df0f5", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1212", + "output": "0x000000000000000000000000000000000000000000000000002413212806772c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x14da21", + "input": "0x0933c1ed00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004182df0f500000000000000000000000000000000000000000000000000000000", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xcf4", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000002413212806772c" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x14827f", + "input": "0x182df0f5", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6d3", + "output": "0x000000000000000000000000000000000000000000000000002413212806772c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 9, + 0, + 2, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x15bdb8", + "input": "0x70a082310000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b44", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x167b", + "output": "0x0000000000000000000000000000000000000000000000000000000005588f6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 10 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x156196", + "input": "0x0933c1ed0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002470a082310000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1072", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000005588f67" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 10, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x15077d", + "input": "0x70a082310000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b44", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9f9", + "output": "0x0000000000000000000000000000000000000000000000000000000005588f67" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 10, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x15a575", + "input": "0xb2a02ff1000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x128b3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 11 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x154c00", + "input": "0xb2a02ff1000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1251e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 1, + 0, + 11, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x14ce34", + "input": "0xd02f73510000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b43100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x166b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 11, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x1478fa", + "input": "0xd02f73510000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b43100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x13b7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 1, + 0, + 11, + 0, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x141913", + "input": "0x5fe3b567", + "to": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x000000000000000000000000ab1c342c7bf5ec5f02adea1c2270670bca144cbb" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 11, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x1415ea", + "input": "0x5fe3b567", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x194", + "output": "0x000000000000000000000000ab1c342c7bf5ec5f02adea1c2270670bca144cbb" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 11, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x13dba8", + "input": "0x6d35bf910000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b43100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x406", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 11, + 0, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x138a38", + "input": "0x6d35bf910000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b43100000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b4400000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x19b", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 11, + 0, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x86bbd9ac8b9b44c95ffc6baae58e25033b7548aa", + "gas": "0x1475f2", + "input": "0x47ef3b3b00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b100000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x449", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1, + 0, + 12 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x142213", + "input": "0x47ef3b3b00000000000000000000000086bbd9ac8b9b44c95ffc6baae58e25033b7548aa0000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d90000000000000000000000001791d5ebbdfd565f136e60a3c43269b148f92b440000000000000000000000000000000000000000000000159aea5abaa5a536b100000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d8", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0, + 12, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x154902", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xeab", + "output": "0x00000000000000000000000000000000000000000000000000000000047c2cc400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x14eeb2", + "input": "0x0933c1ed0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002470a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000000000000", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8a2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000047c2cc4" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x149664", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x229", + "output": "0x00000000000000000000000000000000000000000000000000000000047c2cc4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 2, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1539ff", + "input": "0xdb006a7500000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7bd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x14e295", + "input": "0xdb006a7500000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0x432979a3f808b6cfca2d393206378ea5b39e33e5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf483", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 3, + "trace_address": [ + 0, + 1, + 3, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x1472c0", + "input": "0xeabe7d910000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xe67", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 3, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x141ef6", + "input": "0xeabe7d910000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xbb5", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 3, + 0, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x1436db", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000000000000000ba8a1", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7853", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 3, + 0, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + "gas": "0x13a3d6", + "input": "0x51dff9890000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000000000000000ba8a100000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3f7", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 3, + 0, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xab1c342c7bf5ec5f02adea1c2270670bca144cbb", + "gas": "0x13534b", + "input": "0x51dff9890000000000000000000000008fc8bfd80d6a9f17fb98a373023d72531792b431000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000000000000000ba8a100000000000000000000000000000000000000000000000000000000047c2cc4", + "to": "0xb277194c947f44b6eac11513b52e4a4d1b6620fe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x192", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 3, + 0, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x143a90", + "input": "0x0902f1ac", + "to": "0x004375dff511095cc5a197a54140a24efef3a416", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9c8", + "output": "0x0000000000000000000000000000000000000000000000000000000035b17dc500000000000000000000000000000000000000000000000000000057df2ea91d000000000000000000000000000000000000000000000000000000006236ec2a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 4 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x142ff3", + "input": "0x0dfe1681", + "to": "0x004375dff511095cc5a197a54140a24efef3a416", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x94d", + "output": "0x0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 5 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1425f9", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x31b", + "output": "0x00000000000000000000000000000000000000000000000000000000000ba8a1" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 6 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x14221e", + "input": "0xa9059cbb000000000000000000000000004375dff511095cc5a197a54140a24efef3a41600000000000000000000000000000000000000000000000000000000000ba8a1", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x22c7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 7 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x13fe7a", + "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001301b9d8000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d900000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x004375dff511095cc5a197a54140a24efef3a416", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1307e", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0, + 1, + 8 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x004375dff511095cc5a197a54140a24efef3a416", + "gas": "0x1382a5", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000000000001301b9d8", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xabf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 8, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x1318bf", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000000000001301b9d8", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8f78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 8, + 0, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x004375dff511095cc5a197a54140a24efef3a416", + "gas": "0x12d70a", + "input": "0x70a08231000000000000000000000000004375dff511095cc5a197a54140a24efef3a416", + "to": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x31b", + "output": "0x0000000000000000000000000000000000000000000000000000000035bd2666" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 8, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x004375dff511095cc5a197a54140a24efef3a416", + "gas": "0x12d266", + "input": "0x70a08231000000000000000000000000004375dff511095cc5a197a54140a24efef3a416", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x523", + "output": "0x00000000000000000000000000000000000000000000000000000057cc2cef45" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 8, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x128442", + "input": "0x70a08231000000000000000000000000004375dff511095cc5a197a54140a24efef3a416", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000000057cc2cef45" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 8, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12d093", + "input": "0x0902f1ac", + "to": "0x71852e888a601c9bbb6f48172a9bfbd8010aa810", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x205", + "output": "0x000000000000000000000000000000000000000000000000000000d27743e15d0000000000000000000000000000000000000000000104fa541c688ca38e1c5d000000000000000000000000000000000000000000000000000000006231995a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 9 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12cdb3", + "input": "0x0dfe1681", + "to": "0x71852e888a601c9bbb6f48172a9bfbd8010aa810", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1c1", + "output": "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 10 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12cae4", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x523", + "output": "0x000000000000000000000000000000000000000000000000000000001301b9d8" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 11 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x127cdf", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x211", + "output": "0x000000000000000000000000000000000000000000000000000000001301b9d8" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 11, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x12c49a", + "input": "0xa9059cbb00000000000000000000000071852e888a601c9bbb6f48172a9bfbd8010aa81000000000000000000000000000000000000000000000000000000000117b4821", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2d61", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 12 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x1276ab", + "input": "0xa9059cbb00000000000000000000000071852e888a601c9bbb6f48172a9bfbd8010aa81000000000000000000000000000000000000000000000000000000000117b4821", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2a4c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 12, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x71852e888a601c9bbb6f48172a9bfbd8010aa810", + "gas": "0x1307d3", + "input": "0x70a0823100000000000000000000000071852e888a601c9bbb6f48172a9bfbd8010aa810", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x523", + "output": "0x000000000000000000000000000000000000000000000000000000d288bf297e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x12b8da", + "input": "0x70a0823100000000000000000000000071852e888a601c9bbb6f48172a9bfbd8010aa810", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x211", + "output": "0x000000000000000000000000000000000000000000000000000000d288bf297e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x71852e888a601c9bbb6f48172a9bfbd8010aa810", + "gas": "0x13011d", + "input": "0x70a0823100000000000000000000000071852e888a601c9bbb6f48172a9bfbd8010aa810", + "to": "0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25c", + "output": "0x0000000000000000000000000000000000000000000104e4b9320dd1fde8e5ac" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x131e25", + "input": "0x0dfe1681", + "to": "0xe0554a476a092703abdb3ef35c80e0d76d32939f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10a", + "output": "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x131c5f", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x523", + "output": "0x00000000000000000000000000000000000000000000000000000000018671b7" + }, + "subtraces": 1, + "trace_address": [ + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x12cd14", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000000000018671b7" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x1315dd", + "input": "0x128acb08000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000018671b700000000000000000000000000000000000000000000000000000001000276a400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000106", + "to": "0xe0554a476a092703abdb3ef35c80e0d76d32939f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x13b5b", + "output": "0x00000000000000000000000000000000000000000000000000000000018671b7ffffffffffffffffffffffffffffffffffffffffffffffffffe0dc4e25974336" + }, + "subtraces": 4, + "trace_address": [ + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe0554a476a092703abdb3ef35c80e0d76d32939f", + "gas": "0x125935", + "input": "0xa9059cbb000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9000000000000000000000000000000000000000000000000001f23b1da68bcca", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe0554a476a092703abdb3ef35c80e0d76d32939f", + "gas": "0x11e298", + "input": "0x70a08231000000000000000000000000e0554a476a092703abdb3ef35c80e0d76d32939f", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xcf3", + "output": "0x00000000000000000000000000000000000000000000000000000003a22265e8" + }, + "subtraces": 1, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x119834", + "input": "0x70a08231000000000000000000000000e0554a476a092703abdb3ef35c80e0d76d32939f", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e1", + "output": "0x00000000000000000000000000000000000000000000000000000003a22265e8" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe0554a476a092703abdb3ef35c80e0d76d32939f", + "gas": "0x11d2e5", + "input": "0xfa461e3300000000000000000000000000000000000000000000000000000000018671b7ffffffffffffffffffffffffffffffffffffffffffffffffffe0dc4e25974336000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000010600000000000000000000000000000000000000000000000000000000000000", + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2aa5", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x118904", + "input": "0x0dfe1681", + "to": "0xe0554a476a092703abdb3ef35c80e0d76d32939f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10a", + "output": "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x118724", + "input": "0xa9059cbb000000000000000000000000e0554a476a092703abdb3ef35c80e0d76d32939f00000000000000000000000000000000000000000000000000000000018671b7", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2591", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 3, + 2, + 1 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x113e2b", + "input": "0xa9059cbb000000000000000000000000e0554a476a092703abdb3ef35c80e0d76d32939f00000000000000000000000000000000000000000000000000000000018671b7", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x227c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 1, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe0554a476a092703abdb3ef35c80e0d76d32939f", + "gas": "0x11a672", + "input": "0x70a08231000000000000000000000000e0554a476a092703abdb3ef35c80e0d76d32939f", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x523", + "output": "0x00000000000000000000000000000000000000000000000000000003a3a8d79f" + }, + "subtraces": 1, + "trace_address": [ + 3, + 3 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x115cfe", + "input": "0x70a08231000000000000000000000000e0554a476a092703abdb3ef35c80e0d76d32939f", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000000003a3a8d79f" + }, + "subtraces": 0, + "trace_address": [ + 3, + 3, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x11de14", + "input": "0x70a08231000000000000000000000000811213d2d0e26ecf65714074cef59119dd7f36d9", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x216", + "output": "0x000000000000000000000000000000000000000000000000001f23b1da68bcca" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x11dad4", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000001f23b1da68bcca", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x23c7", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 5 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "gas": "0x8fc", + "input": "0x", + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "value": "0x1f23b1da68bcca" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x13", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x811213d2d0e26ecf65714074cef59119dd7f36d9", + "gas": "0x119d44", + "input": "0x", + "to": "0xeb5b69c5f93ace94ec36352c1467a540ff167f02", + "value": "0x1f23b1db44d098" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 6 + ], + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf24c609e942a65efa7f745f75c16a7a7d8d04834", + "gas": "0xb3fd", + "input": "0xa9059cbb000000000000000000000000e93381fb4c4f14bda253907b18fad305d799241a0000000000000000000000000000000000000000000000607095a2743bec0000", + "to": "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x477d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe3821b466702cde4fbd233a0bdc5561b7258abce6d402adb4e562bcecf3eb076", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0b7a434782792b539623fd72a428838ea4173b22", + "gas": "0x182b8", + "input": "0x", + "to": "0x63a9dbce75413036b2b778e670aabd4493aaf9f3", + "value": "0x9b3ea50d129800" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4e29abcd79ef888a37de66168429046cbb4bb11d1f25daca568aee4d3df9f5e0", + "transaction_position": 3, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x912fd21d7a69678227fe6d08c64222db41477ba0", + "gas": "0xe0378", + "input": "0xa9059cbb0000000000000000000000009fcd4178884a9ade3c42a9341101668a337f07a0000000000000000000000000000000000000000000000000000000002de47d57", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x36f360d896d923e9c72133933a331915b198a48199b3f0d76476ae2288bf0ee1", + "transaction_position": 4, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a18ef9fe4efd0dbd4c58d5accd2573ec33576ec", + "gas": "0xd090", + "input": "0xa9059cbb000000000000000000000000245c1ecc7eecaafa380ef49266f4ca4bfcea94850000000000000000000000000000000000000000000000000000000165a0bc00", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xc26b9dd30c7ebf93df9227bd9a67fbbfbe06d909d6e63bcba33418c24ea9426b", + "transaction_position": 5, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7cd24e03cd5d7501eae95f60744aa1b24bc273cc", + "gas": "0x14116", + "input": "0xf242432a0000000000000000000000007cd24e03cd5d7501eae95f60744aa1b24bc273cc0000000000000000000000009056d15c49b19df52ffad1e6c11627f035c0c9607cd24e03cd5d7501eae95f60744aa1b24bc273cc000000000000f40000000032000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x495f947276749ce646f68ac8c248420045cb7b5e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb02c", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xad33d289f7641154ae37a6b279e903e271fc6f670e840041752dee30eb98c069", + "transaction_position": 6, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x49084125e425ed84a81e97f866043ba413e959b9", + "gas": "0x9071", + "input": "0x6ce5d9570584a1669be4ce7b0f11bf267ec99312a4a710fb2a1290ccc7dac1879730b82800b333e3142fe16b78628f19bb15afddaef437e72d6d7f5c6c20c6801a27fba600000000000000000000000000000000000000000000000000000000001f3368", + "to": "0xf5c9f957705bea56a7e806943f98f7777b995826", + "value": "0x4db732547630000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8d37", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x69932ee76933f63cb0a470cbe19e8fa3402c17c379a104d873cad36a32d91148", + "transaction_position": 7, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xf5c9f957705bea56a7e806943f98f7777b995826", + "gas": "0x7aab", + "input": "0x6ce5d9570584a1669be4ce7b0f11bf267ec99312a4a710fb2a1290ccc7dac1879730b82800b333e3142fe16b78628f19bb15afddaef437e72d6d7f5c6c20c6801a27fba600000000000000000000000000000000000000000000000000000000001f3368", + "to": "0x4edd62189732e9ff476aba880b48c29432a7ac9b", + "value": "0x4db732547630000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x793d", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x69932ee76933f63cb0a470cbe19e8fa3402c17c379a104d873cad36a32d91148", + "transaction_position": 7, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xf5c9f957705bea56a7e806943f98f7777b995826", + "gas": "0x639d", + "input": "0x6ce5d9570584a1669be4ce7b0f11bf267ec99312a4a710fb2a1290ccc7dac1879730b82800b333e3142fe16b78628f19bb15afddaef437e72d6d7f5c6c20c6801a27fba600000000000000000000000000000000000000000000000000000000001f3368", + "to": "0x8536850750956c2feebecab786d82271a5467687", + "value": "0x4db732547630000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x639d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x69932ee76933f63cb0a470cbe19e8fa3402c17c379a104d873cad36a32d91148", + "transaction_position": 7, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x69cabd69c1ad6a19ea0c85b59ab3eb5631c20fb4", + "gas": "0x6055", + "input": "0xa22cb465000000000000000000000000182d782f26e3a5b93686ecc9882ad55d04340cec0000000000000000000000000000000000000000000000000000000000000001", + "to": "0xe14a0819039ed422f24d049b5c37803d8c523b7e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6055", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x7f219ce4de5cce37f160ca40ba5361c1f6a7c09e7b905d43eb590f90a0a3ba4f", + "transaction_position": 8, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x4fd915d32c6ce2f6204edb71646797c26dbe7afa", + "gas": "0x372cd", + "input": "0xa3a9d7900000000000000000000000000000000000000000000000000000000000000002", + "to": "0x83a8d39de53f4b679154fb19beec37288bb96f28", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x230ed", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x12fd064c19cb3baafdc853e6213d28f90526701147c0247ff49f11b71cc27580", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x83a8d39de53f4b679154fb19beec37288bb96f28", + "gas": "0x347ba", + "input": "0xa9059cbb0000000000000000000000004fd915d32c6ce2f6204edb71646797c26dbe7afa0000000000000000000000000000000000000000000000000000000000000002", + "to": "0xfd2e95937a9a1b4a87b8c47fd3e9acc123314c0e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7544", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x12fd064c19cb3baafdc853e6213d28f90526701147c0247ff49f11b71cc27580", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0ee8715b331f35f4984e82a2bb7dbefb95d1b9d5", + "gas": "0x0", + "input": "0x", + "to": "0xa5e6b89f32981540141bef9ec40a5196ce1edad4", + "value": "0x22014ed2069015" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x717ec811a5764a56552517edac885e1e79d9d47fe6ea755d68b27a34f5273415", + "transaction_position": 10, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9430801ebaf509ad49202aabc5f5bc6fd8a3daf8", + "gas": "0x5208", + "input": "0x", + "to": "0x49747b87837b6ad0afd5742b0f894aa8097a7add", + "value": "0xd529ae9e860000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xdc74a9c8a28016c12f9551099519e36ffaa41d9e1b83ae49e89496b7461d3660", + "transaction_position": 11, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0664a464653a92e69fbe1d329c2b5894f6338fdb", + "gas": "0x0", + "input": "0x", + "to": "0x3fb0b1e4ec80d572b13f27ea281832c6861e6e00", + "value": "0xa5aa85009e39c0000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4203b5ce158464b7db22ebf083209b0a335ffd8795eeb93ff6769706074b26d1", + "transaction_position": 12, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2ac359d0da6c0a2bd1cbc81736752c03044e88df", + "gas": "0xf56d", + "input": "0xf242432a0000000000000000000000002ac359d0da6c0a2bd1cbc81736752c03044e88df000000000000000000000000740a207f792e0b613dfea32dcfc63a87bb06285d0000000000000000000000000000000000000000000000000000000000001df1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", + "to": "0x41e3d4b3a79e464f65fffe18aa063de983ef97de", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8681", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xd08e38e0c1d12e9cf72135e749222ef8d63093ddfeb94d007d19b8ed80258a6c", + "transaction_position": 13, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1e73415f5bfc619483f71e86600a35b20194357", + "gas": "0x7e6e2", + "input": "0xaeb766e20000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000026ed186f5567f5c0000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000002272e0000000000000000000000000000000000000000000000000000000000022730", + "to": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x52814", + "output": "0x" + }, + "subtraces": 7, + "trace_address": [], + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x78ec3", + "input": "0x6352211e000000000000000000000000000000000000000000000000000000000002272e", + "to": "0x6cc462bc49cecfe943bc4f477b23b92906e6074f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa5a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x76b75", + "input": "0x6352211e0000000000000000000000000000000000000000000000000000000000022730", + "to": "0x6cc462bc49cecfe943bc4f477b23b92906e6074f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa5a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x6f46b", + "input": "0x70a08231000000000000000000000000b1e73415f5bfc619483f71e86600a35b20194357", + "to": "0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb46", + "output": "0x00000000000000000000000000000000000000000000006509b36e09c0762000" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x6e6b8", + "input": "0xdd62ed3e000000000000000000000000b1e73415f5bfc619483f71e86600a35b20194357000000000000000000000000dd257067581bb12d9d37c24bc7ad87ee41db74b9", + "to": "0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xca9", + "output": "0x000000000000000000000000000000000000000c9f2c9b378cf45ce97c6ba000" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x6cf5d", + "input": "0x23b872dd000000000000000000000000b1e73415f5bfc619483f71e86600a35b2019435700000000000000000000000033677d7d37a862cd0bd78a6f0e4c23f0b457f59d000000000000000000000000000000000000000000000026ed186f5567f5c000", + "to": "0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x43ab", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x689c9", + "input": "0x40c10f19000000000000000000000000b1e73415f5bfc619483f71e86600a35b20194357000000000000000000000000000000000000000000000000000000000002272e", + "to": "0x6cc462bc49cecfe943bc4f477b23b92906e6074f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fa7d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 5 + ], + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x482b7", + "input": "0x40c10f19000000000000000000000000b1e73415f5bfc619483f71e86600a35b201943570000000000000000000000000000000000000000000000000000000000022730", + "to": "0x6cc462bc49cecfe943bc4f477b23b92906e6074f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ba6d", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 6 + ], + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2abf33485edf704511dfa42dfb8afa71a0450a8e", + "gas": "0x6caa", + "input": "0x095ea7b3000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff8000000000000000000000000000000000000000000000000000000000000000", + "to": "0x012c47e1f0bd3b4b0a6aabc8f010345d31028323", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6b50", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xcea5758f4ed70dd97b9402c51b15f630439f576c653441ed2fd2b9820a10ba72", + "transaction_position": 15, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x012c47e1f0bd3b4b0a6aabc8f010345d31028323", + "gas": "0x606a", + "input": "0x095ea7b3000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff8000000000000000000000000000000000000000000000000000000000000000", + "to": "0x4a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x606a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xcea5758f4ed70dd97b9402c51b15f630439f576c653441ed2fd2b9820a10ba72", + "transaction_position": 15, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x28eb1e7d3dbf1a810a6e88e62dbfd52594d7db76", + "gas": "0xbd08", + "input": "0xa9059cbb000000000000000000000000ae88b245d3eaec38d2fe750dc85a0e2ad35cbb2300000000000000000000000000000000000000000000000000000000030e6c86", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa281", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x1561611e65ec03dffbee35dc3516553af16f424a43e479ce045c3558022eb8f0", + "transaction_position": 16, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1bdc97394070a8680d461ab05e33664765c509ca", + "gas": "0xbf1c", + "input": "0x0f6945840000000000000000000000000000000000000000000000000000000000000001", + "to": "0xfbddadd80fe7bda00b901fbaf73803f2238ae655", + "value": "0x12a2dbb130b168" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xbcba", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x3f5f7027cb94da58e4739e7157436e04041815051a7dcb6b23cd354b6ecca3a7", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xfbddadd80fe7bda00b901fbaf73803f2238ae655", + "gas": "0xa051", + "input": "0x0f6945840000000000000000000000000000000000000000000000000000000000000001", + "to": "0x4161d3e2024d9773c18ef63e2d93d1d752c0486b", + "value": "0x12a2dbb130b168" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa051", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3f5f7027cb94da58e4739e7157436e04041815051a7dcb6b23cd354b6ecca3a7", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xfbddadd80fe7bda00b901fbaf73803f2238ae655", + "gas": "0x8fc", + "input": "0x", + "to": "0x4b5057b2c87ec9e7c047fb00c0e406dff2fdacad", + "value": "0x12a2dbb130b168" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x3f5f7027cb94da58e4739e7157436e04041815051a7dcb6b23cd354b6ecca3a7", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2fa03dcc825f2a09705904bc8f6e51662e9c9448", + "gas": "0xd1f0", + "input": "0x925489a80000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000016b1", + "to": "0xb76fbbb30e31f2c3bdaa2466cfb1cfe39b220d06", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e4f", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x060e715c93a20b759aae50a0bc65ce41c529dd462017ca81cb72fe672d217f84", + "transaction_position": 18, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xb76fbbb30e31f2c3bdaa2466cfb1cfe39b220d06", + "gas": "0xb298", + "input": "0x925489a80000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000016b1", + "to": "0x425d27fae9b47e18278b746675002bca8d94e2f0", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x81a6", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x060e715c93a20b759aae50a0bc65ce41c529dd462017ca81cb72fe672d217f84", + "transaction_position": 18, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb76fbbb30e31f2c3bdaa2466cfb1cfe39b220d06", + "gas": "0x692d", + "input": "0x40c10f190000000000000000000000002fa03dcc825f2a09705904bc8f6e51662e9c94480000000000000000000000000000000000000000000002085795f76218c7aab6", + "to": "0x8355dbe8b0e275abad27eb843f3eaf3fc855e525", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x39b6", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x060e715c93a20b759aae50a0bc65ce41c529dd462017ca81cb72fe672d217f84", + "transaction_position": 18, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0a5a4c6df15b7f85e573d49bbbf19603721ad777", + "gas": "0x6f0c", + "input": "0x40c10f190000000000000000000000000a5a4c6df15b7f85e573d49bbbf19603721ad7770000000000000000000000000000000000000000000000000000000000000001", + "to": "0x7b977b8980b17b6f6249d3c3547cbe955aad2108", + "value": "0x234e1a857498000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x24fa8d4e9d6e3a2f1a20675f83a22f49361dc6f70d15654f598986a3a7a04d44", + "transaction_position": 19, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa83b33cdcaf662385d5de01bd746d5cf2a627fac", + "gas": "0x97a0", + "input": "0x095ea7b300000000000000000000000094d8f036a0fbc216bb532d33bdf6564157af0cd7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x95df", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x33629725f6499931c458c669765371403d1c5ad12b60a636b9e08af993854779", + "transaction_position": 20, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x7966", + "input": "0x095ea7b300000000000000000000000094d8f036a0fbc216bb532d33bdf6564157af0cd7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x33629725f6499931c458c669765371403d1c5ad12b60a636b9e08af993854779", + "transaction_position": 20, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x6af2b559a1212fbd0e5d4d980a6ef14d4ebad605", + "gas": "0x0", + "input": "0x", + "to": "0x4a9036c2a1870a57270602995981585f01c8f18d", + "value": "0x1ff973cafa8000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x83aa21d75192c1c253649b13b2f1fe2512245b33c9ce55374ed90157adcff442", + "transaction_position": 21, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xbbb953eb0c594682c157cc5fce8532dfaffadcd1", + "gas": "0x440ce", + "input": "0xab834bab0000000000000000000000007f268357a8c2552623316e2562d90e642bb538e5000000000000000000000000bbb953eb0c594682c157cc5fce8532dfaffadcd1000000000000000000000000c60904259f702fbb39c7389c6a845fbe5b36a4440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f268357a8c2552623316e2562d90e642bb538e5000000000000000000000000c60904259f702fbb39c7389c6a845fbe5b36a44400000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c01073000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062370f510000000000000000000000000000000000000000000000000000000000000000900855cf6b6326340f95b082a4ece7f91d5b5a7932081d78f5fdcbb16ac390d300000000000000000000000000000000000000000000000000000000000002b600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000470de4df8200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006221072000000000000000000000000000000000000000000000000000000000624894749d320d127bd11e9367c39d57cb09e30ed41d4dd606992c98520ca7e24a043e7e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000007c000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b200000000000000000000000000000000000000000000000000000000000000b20000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001b36df0b54616a296de86ba722ac73c79b3513456d1aff4b0971f7f1672e1e5d61713156062cce8f96c2cda9da527c70131d669dc871cfa0d237a77aa6ca366aeb36df0b54616a296de86ba722ac73c79b3513456d1aff4b0971f7f1672e1e5d61713156062cce8f96c2cda9da527c70131d669dc871cfa0d237a77aa6ca366aeb000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4fb16a5950000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bbb953eb0c594682c157cc5fce8532dfaffadcd100000000000000000000000097f20732a1ae8b2cb72189fdcad0ac777f6c10100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4fb16a595000000000000000000000000c60904259f702fbb39c7389c6a845fbe5b36a444000000000000000000000000000000000000000000000000000000000000000000000000000000000000000097f20732a1ae8b2cb72189fdcad0ac777f6c10100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e400000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "value": "0x470de4df820000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x319ca", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x3650e", + "input": "0xc4552791000000000000000000000000c60904259f702fbb39c7389c6a845fbe5b36a444", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xade", + "output": "0x00000000000000000000000012ff3d2bb3a6afbb48b930c7f2c6cbe21a728905" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x8fc", + "input": "0x", + "to": "0x5b3256965e7c3cf26e11fcaf296dfc8807c01073", + "value": "0x4ee60eef2c000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x8fc", + "input": "0x", + "to": "0xc60904259f702fbb39c7389c6a845fbe5b36a444", + "value": "0x421f83f08f4000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x2b7ca", + "input": "0x97204d8e", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa35", + "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x2a251", + "input": "0x5c60da1b", + "to": "0x12ff3d2bb3a6afbb48b930c7f2c6cbe21a728905", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9dd", + "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x29229", + "input": "0x1b0f7ba9000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e4fb16a595000000000000000000000000c60904259f702fbb39c7389c6a845fbe5b36a444000000000000000000000000bbb953eb0c594682c157cc5fce8532dfaffadcd100000000000000000000000097f20732a1ae8b2cb72189fdcad0ac777f6c10100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x12ff3d2bb3a6afbb48b930c7f2c6cbe21a728905", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x16753", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 5 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x12ff3d2bb3a6afbb48b930c7f2c6cbe21a728905", + "gas": "0x27b6c", + "input": "0x1b0f7ba9000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e4fb16a595000000000000000000000000c60904259f702fbb39c7389c6a845fbe5b36a444000000000000000000000000bbb953eb0c594682c157cc5fce8532dfaffadcd100000000000000000000000097f20732a1ae8b2cb72189fdcad0ac777f6c10100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xf9e266af4bca5890e2781812cc6a6e89495a79f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x15a7f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x12ff3d2bb3a6afbb48b930c7f2c6cbe21a728905", + "gas": "0x25cb7", + "input": "0x69dc9ff30000000000000000000000007f268357a8c2552623316e2562d90e642bb538e5", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9f9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 0 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x12ff3d2bb3a6afbb48b930c7f2c6cbe21a728905", + "gas": "0x24e49", + "input": "0xfb16a595000000000000000000000000c60904259f702fbb39c7389c6a845fbe5b36a444000000000000000000000000bbb953eb0c594682c157cc5fce8532dfaffadcd100000000000000000000000097f20732a1ae8b2cb72189fdcad0ac777f6c10100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xbaf2127b49fc93cbca6269fade0f7f31df4c88a7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1366b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 5, + 0, + 1 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x12ff3d2bb3a6afbb48b930c7f2c6cbe21a728905", + "gas": "0x236b7", + "input": "0x23b872dd000000000000000000000000c60904259f702fbb39c7389c6a845fbe5b36a444000000000000000000000000bbb953eb0c594682c157cc5fce8532dfaffadcd10000000000000000000000000000000000000000000000000000000000000008", + "to": "0x97f20732a1ae8b2cb72189fdcad0ac777f6c1010", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x12769", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 1, + 0 + ], + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2dce5d6ed71c2e605c4531e6c2946e4fe19b4285", + "gas": "0x105ff", + "input": "0x294091cd000000000000000000000000e8e8486228753e01dbc222da262aa706bd67e601000000000000000000000000000000000000000000000000031b12a452377bbc0000000000000000000000005f2c716d912ce400a8a49fb87db722e8257257a7", + "to": "0x0c6d898ac945e493d25751ea43be2c8beb881d8c", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x105ff", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0x07db7d3b6cd9440ab6b977a95619e5cf04af76c7f33f73d4addb95fe17494ca2", + "transaction_position": 23, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x0c6d898ac945e493d25751ea43be2c8beb881d8c", + "gas": "0xdc2d", + "input": "0x3af32abf000000000000000000000000e8e8486228753e01dbc222da262aa706bd67e601", + "to": "0x5f2c716d912ce400a8a49fb87db722e8257257a7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa12", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x07db7d3b6cd9440ab6b977a95619e5cf04af76c7f33f73d4addb95fe17494ca2", + "transaction_position": 23, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0c6d898ac945e493d25751ea43be2c8beb881d8c", + "gas": "0xc305", + "input": "0x23b872dd0000000000000000000000002dce5d6ed71c2e605c4531e6c2946e4fe19b42850000000000000000000000000c6d898ac945e493d25751ea43be2c8beb881d8c000000000000000000000000000000000000000000000000031b12a452377bbc", + "to": "0xe8e8486228753e01dbc222da262aa706bd67e601", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x50d7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x07db7d3b6cd9440ab6b977a95619e5cf04af76c7f33f73d4addb95fe17494ca2", + "transaction_position": 23, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3efe8aaf1c58d0ae7d8a0e7f81ba14f4e8ad907c", + "gas": "0x35edd", + "input": "0xab834bab0000000000000000000000007f268357a8c2552623316e2562d90e642bb538e50000000000000000000000003efe8aaf1c58d0ae7d8a0e7f81ba14f4e8ad907c000000000000000000000000bccddceacab57108499ab87b85610286941f07520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f268357a8c2552623316e2562d90e642bb538e5000000000000000000000000bccddceacab57108499ab87b85610286941f075200000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c01073000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004fefa17b72400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062370fa8000000000000000000000000000000000000000000000000000000000000000016dd1d334439de7c440f1b469abca015aa7fab06544e1b7937464ab8d9dd5e6300000000000000000000000000000000000000000000000000000000000004e2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004fefa17b7240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006236766b00000000000000000000000000000000000000000000000000000000623a6b4288cf3837b2a801d5d848cc6a31e5d97930e8bce112ff081a8bd6a6ffcd0c7f060000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000ba0000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001b56d4e39c699cfbbcac6421214f5770a8825184cf6d68c4ea77fe357d1898743c06dd9aa517ea095741520d76fbca44ea664b016039a96de8a1964a12ba4c322356d4e39c699cfbbcac6421214f5770a8825184cf6d68c4ea77fe357d1898743c06dd9aa517ea095741520d76fbca44ea664b016039a96de8a1964a12ba4c32230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010496809f9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003efe8aaf1c58d0ae7d8a0e7f81ba14f4e8ad907c0000000000000000000000007d8d74b44b433ca6f134e43eec1e63b0c43eeafa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010496809f90000000000000000000000000bccddceacab57108499ab87b85610286941f075200000000000000000000000000000000000000000000000000000000000000000000000000000000000000007d8d74b44b433ca6f134e43eec1e63b0c43eeafa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010400000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000104000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "value": "0x4fefa17b724000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x27b0e", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x2842d", + "input": "0xc4552791000000000000000000000000bccddceacab57108499ab87b85610286941f0752", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xade", + "output": "0x000000000000000000000000e94d8ee280b5dd66d3011e557cf5969ab6c130bc" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x8fc", + "input": "0x", + "to": "0x5b3256965e7c3cf26e11fcaf296dfc8807c01073", + "value": "0x9fdf42f6e4800" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x8fc", + "input": "0x", + "to": "0xbccddceacab57108499ab87b85610286941f0752", + "value": "0x45f1ad4c03f800" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x1d6e9", + "input": "0x97204d8e", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa35", + "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x1c170", + "input": "0x5c60da1b", + "to": "0xe94d8ee280b5dd66d3011e557cf5969ab6c130bc", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9dd", + "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x1b106", + "input": "0x1b0f7ba9000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010496809f90000000000000000000000000bccddceacab57108499ab87b85610286941f07520000000000000000000000003efe8aaf1c58d0ae7d8a0e7f81ba14f4e8ad907c0000000000000000000000007d8d74b44b433ca6f134e43eec1e63b0c43eeafa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xe94d8ee280b5dd66d3011e557cf5969ab6c130bc", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc5d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 5 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe94d8ee280b5dd66d3011e557cf5969ab6c130bc", + "gas": "0x19dc8", + "input": "0x1b0f7ba9000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000010496809f90000000000000000000000000bccddceacab57108499ab87b85610286941f07520000000000000000000000003efe8aaf1c58d0ae7d8a0e7f81ba14f4e8ad907c0000000000000000000000007d8d74b44b433ca6f134e43eec1e63b0c43eeafa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xf9e266af4bca5890e2781812cc6a6e89495a79f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb8f8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe94d8ee280b5dd66d3011e557cf5969ab6c130bc", + "gas": "0x18284", + "input": "0x69dc9ff30000000000000000000000007f268357a8c2552623316e2562d90e642bb538e5", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9f9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 0 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe94d8ee280b5dd66d3011e557cf5969ab6c130bc", + "gas": "0x173d0", + "input": "0x96809f90000000000000000000000000bccddceacab57108499ab87b85610286941f07520000000000000000000000003efe8aaf1c58d0ae7d8a0e7f81ba14f4e8ad907c0000000000000000000000007d8d74b44b433ca6f134e43eec1e63b0c43eeafa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xbaf2127b49fc93cbca6269fade0f7f31df4c88a7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9497", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 5, + 0, + 1 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe94d8ee280b5dd66d3011e557cf5969ab6c130bc", + "gas": "0x15f90", + "input": "0xf242432a000000000000000000000000bccddceacab57108499ab87b85610286941f07520000000000000000000000003efe8aaf1c58d0ae7d8a0e7f81ba14f4e8ad907c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", + "to": "0x7d8d74b44b433ca6f134e43eec1e63b0c43eeafa", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x857b", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 1, + 0 + ], + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xbee9e069b0fce4ec2e2990bae5ac34399c848acd", + "gas": "0x41a36", + "input": "0x5ae401dc00000000000000000000000000000000000000000000000000000000623717040000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000124b858183f00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000080000000000000000000000000bee9e069b0fce4ec2e2990bae5ac34399c848acd00000000000000000000000000000000000000000000000001151c96347b000000000000000000000000000000000000000000000000000000f43445e28f0d4b0000000000000000000000000000000000000000000000000000000000000042c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480027103819f64f282bf135d62168c1e513280daf905e0600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0x1151c96347b0000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x34664", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000100b123c2e2fd5e" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0x404ba", + "input": "0xb858183f00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000080000000000000000000000000bee9e069b0fce4ec2e2990bae5ac34399c848acd00000000000000000000000000000000000000000000000001151c96347b000000000000000000000000000000000000000000000000000000f43445e28f0d4b0000000000000000000000000000000000000000000000000000000000000042c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480027103819f64f282bf135d62168c1e513280daf905e06000000000000000000000000000000000000000000000000000000000000", + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0x1151c96347b0000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x33dd6", + "output": "0x0000000000000000000000000000000000000000000000000100b123c2e2fd5e" + }, + "subtraces": 2, + "trace_address": [ + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0x3d7fc", + "input": "0x128acb0800000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001151c96347b0000000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d2500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000bee9e069b0fce4ec2e2990bae5ac34399c848acd000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000", + "to": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1e79f", + "output": "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffff26ee9bd00000000000000000000000000000000000000000000000001151c96347b0000" + }, + "subtraces": 4, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "gas": "0x35a56", + "input": "0xa9059cbb00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45000000000000000000000000000000000000000000000000000000000d911643", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xabf1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x33111", + "input": "0xa9059cbb00000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45000000000000000000000000000000000000000000000000000000000d911643", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8f78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "gas": "0x2a411", + "input": "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e6", + "output": "0x0000000000000000000000000000000000000000000006cd1684f4961efff226" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "gas": "0x2973d", + "input": "0xfa461e33fffffffffffffffffffffffffffffffffffffffffffffffffffffffff26ee9bd00000000000000000000000000000000000000000000000001151c96347b0000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000bee9e069b0fce4ec2e2990bae5ac34399c848acd000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000", + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e61", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 2 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0x266a9", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x1151c96347b0000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5da6", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0x208d4", + "input": "0xa9059cbb00000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f564000000000000000000000000000000000000000000000000001151c96347b0000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x17ae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 1 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "gas": "0x1f8de", + "input": "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000006cd179a112c537af226" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 3 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0x1dbfb", + "input": "0x128acb08000000000000000000000000bee9e069b0fce4ec2e2990bae5ac34399c848acd0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d911643000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d2500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45000000000000000000000000000000000000000000000000000000000000002ba0b86991c6218b36c1d19d4a2e9eb0ce3606eb480027103819f64f282bf135d62168c1e513280daf905e06000000000000000000000000000000000000000000", + "to": "0xe859041c9c6d70177f83de991b9d757e13cea26e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x11ad4", + "output": "0xfffffffffffffffffffffffffffffffffffffffffffffffffeff4edc3d1d02a2000000000000000000000000000000000000000000000000000000000d911643" + }, + "subtraces": 4, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe859041c9c6d70177f83de991b9d757e13cea26e", + "gas": "0x14cda", + "input": "0xa9059cbb000000000000000000000000bee9e069b0fce4ec2e2990bae5ac34399c848acd0000000000000000000000000000000000000000000000000100b123c2e2fd5e", + "to": "0x3819f64f282bf135d62168c1e513280daf905e06", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3226", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe859041c9c6d70177f83de991b9d757e13cea26e", + "gas": "0x11816", + "input": "0x70a08231000000000000000000000000e859041c9c6d70177f83de991b9d757e13cea26e", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xcf3", + "output": "0x000000000000000000000000000000000000000000000000000000d465d35405" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 1 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x110dc", + "input": "0x70a08231000000000000000000000000e859041c9c6d70177f83de991b9d757e13cea26e", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e1", + "output": "0x000000000000000000000000000000000000000000000000000000d465d35405" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 1, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe859041c9c6d70177f83de991b9d757e13cea26e", + "gas": "0x10841", + "input": "0xfa461e33fffffffffffffffffffffffffffffffffffffffffffffffffeff4edc3d1d02a2000000000000000000000000000000000000000000000000000000000d911643000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000068b3465833fb72a70ecdf485e0e4c7bd8665fc45000000000000000000000000000000000000000000000000000000000000002ba0b86991c6218b36c1d19d4a2e9eb0ce3606eb480027103819f64f282bf135d62168c1e513280daf905e06000000000000000000000000000000000000000000", + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3538", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 2 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0xf5fd", + "input": "0xa9059cbb000000000000000000000000e859041c9c6d70177f83de991b9d757e13cea26e000000000000000000000000000000000000000000000000000000000d911643", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2591", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 2, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0xef48", + "input": "0xa9059cbb000000000000000000000000e859041c9c6d70177f83de991b9d757e13cea26e000000000000000000000000000000000000000000000000000000000d911643", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x227c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 2, + 0, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe859041c9c6d70177f83de991b9d757e13cea26e", + "gas": "0xd166", + "input": "0x70a08231000000000000000000000000e859041c9c6d70177f83de991b9d757e13cea26e", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x523", + "output": "0x000000000000000000000000000000000000000000000000000000d473646a48" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1, + 3 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0xcb46", + "input": "0x70a08231000000000000000000000000e859041c9c6d70177f83de991b9d757e13cea26e", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x211", + "output": "0x000000000000000000000000000000000000000000000000000000d473646a48" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 3, + 0 + ], + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8103d5ee8ab1189ff43cb33c840f972f25b5041e", + "gas": "0x42512", + "input": "0xab834bab0000000000000000000000007f268357a8c2552623316e2562d90e642bb538e50000000000000000000000008103d5ee8ab1189ff43cb33c840f972f25b5041e00000000000000000000000066d89b94ca219fbcb04836b99707791082fa4b6d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007f268357a8c2552623316e2562d90e642bb538e500000000000000000000000066d89b94ca219fbcb04836b99707791082fa4b6d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c01073000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000294ce03b839000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000062370fa600000000000000000000000000000000000000000000000000000000000000007a67a32ab605bfa1d7814e19c8f3f601851772c14ab68661fcdb0f087d91a4ff00000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000294ce03b83900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006232aedb00000000000000000000000000000000000000000000000000000000623be9b8ae26553dec77877c2eb1cbc85cacda01f2eb6c5644c8a7023491c794b33cc7b90000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000007c000000000000000000000000000000000000000000000000000000000000008e00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b200000000000000000000000000000000000000000000000000000000000000b20000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001c4cc65525773fe34ee35f642ad94533566994ca4bcb6a81570407d86d5ea4b12d4b2fb3eae0613422271e86f57d7fe0547a82575c69397899a9c8274be87512064cc65525773fe34ee35f642ad94533566994ca4bcb6a81570407d86d5ea4b12d4b2fb3eae0613422271e86f57d7fe0547a82575c69397899a9c8274be8751206000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4fb16a59500000000000000000000000000000000000000000000000000000000000000000000000000000000000000008103d5ee8ab1189ff43cb33c840f972f25b5041e000000000000000000000000335eeef8e93a7a757d9e7912044d9cd264e2b2d80000000000000000000000000000000000000000000000000000000000001cc1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4fb16a59500000000000000000000000066d89b94ca219fbcb04836b99707791082fa4b6d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000335eeef8e93a7a757d9e7912044d9cd264e2b2d80000000000000000000000000000000000000000000000000000000000001cc1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e400000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "value": "0x294ce03b8390000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3046a", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x349a4", + "input": "0xc455279100000000000000000000000066d89b94ca219fbcb04836b99707791082fa4b6d", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xade", + "output": "0x0000000000000000000000003742df01a099c5dbfc50a997808e32635dee08ac" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x8fc", + "input": "0x", + "to": "0x5b3256965e7c3cf26e11fcaf296dfc8807c01073", + "value": "0x318f737a9de000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x8fc", + "input": "0x", + "to": "0x66d89b94ca219fbcb04836b99707791082fa4b6d", + "value": "0x2633e903d9b2000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x29c61", + "input": "0x97204d8e", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa35", + "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x286e8", + "input": "0x5c60da1b", + "to": "0x3742df01a099c5dbfc50a997808e32635dee08ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9dd", + "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7f268357a8c2552623316e2562d90e642bb538e5", + "gas": "0x276bf", + "input": "0x1b0f7ba9000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e4fb16a59500000000000000000000000066d89b94ca219fbcb04836b99707791082fa4b6d0000000000000000000000008103d5ee8ab1189ff43cb33c840f972f25b5041e000000000000000000000000335eeef8e93a7a757d9e7912044d9cd264e2b2d80000000000000000000000000000000000000000000000000000000000001cc1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3742df01a099c5dbfc50a997808e32635dee08ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x151d6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 5 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3742df01a099c5dbfc50a997808e32635dee08ac", + "gas": "0x26070", + "input": "0x1b0f7ba9000000000000000000000000baf2127b49fc93cbca6269fade0f7f31df4c88a70000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e4fb16a59500000000000000000000000066d89b94ca219fbcb04836b99707791082fa4b6d0000000000000000000000008103d5ee8ab1189ff43cb33c840f972f25b5041e000000000000000000000000335eeef8e93a7a757d9e7912044d9cd264e2b2d80000000000000000000000000000000000000000000000000000000000001cc1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xf9e266af4bca5890e2781812cc6a6e89495a79f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x14502", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 2, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3742df01a099c5dbfc50a997808e32635dee08ac", + "gas": "0x24227", + "input": "0x69dc9ff30000000000000000000000007f268357a8c2552623316e2562d90e642bb538e5", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9f9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 0 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3742df01a099c5dbfc50a997808e32635dee08ac", + "gas": "0x233b9", + "input": "0xfb16a59500000000000000000000000066d89b94ca219fbcb04836b99707791082fa4b6d0000000000000000000000008103d5ee8ab1189ff43cb33c840f972f25b5041e000000000000000000000000335eeef8e93a7a757d9e7912044d9cd264e2b2d80000000000000000000000000000000000000000000000000000000000001cc1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xbaf2127b49fc93cbca6269fade0f7f31df4c88a7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x120ee", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 5, + 0, + 1 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3742df01a099c5dbfc50a997808e32635dee08ac", + "gas": "0x21c91", + "input": "0x23b872dd00000000000000000000000066d89b94ca219fbcb04836b99707791082fa4b6d0000000000000000000000008103d5ee8ab1189ff43cb33c840f972f25b5041e0000000000000000000000000000000000000000000000000000000000001cc1", + "to": "0x335eeef8e93a7a757d9e7912044d9cd264e2b2d8", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x111ec", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 1, + 0 + ], + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1b3d0c36b3b34d3e0486ee084b98dde85bd22c8e", + "gas": "0xda66", + "input": "0xa9059cbb000000000000000000000000117f1af0c008a5c220b553fbde70628ed4311724000000000000000000000000000000000000000000000000001c6bf526340000", + "to": "0x33d20575f20c6a1881f8ab08e69f6fbaffaeedf2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7573", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xd65473f258b5d58802f53df3dd93e864e6a4903c51776408e65fedccac5b7493", + "transaction_position": 27, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x492d035712811f7cbfafdee1b77ea4135e616e3d", + "gas": "0x28a06", + "input": "0x7430e0c6000000000000000000000000000000000000000000000000000000000002b973", + "to": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x23652", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "gas": "0x2640f", + "input": "0x7430e0c6000000000000000000000000000000000000000000000000000000000002b973", + "to": "0x93ed4d19f97da0318dd84c08578c0ed3202d1c87", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x219e9", + "output": "0x" + }, + "subtraces": 7, + "trace_address": [ + 0 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "gas": "0x1889c", + "input": "0x23b872dd000000000000000000000000cda72070e455bb31c7690a170224ce43623d0b6f000000000000000000000000d6d6366d04520fe0a2716b1ee24b9a52d65992f7000000000000000000000000000000000000000000000000000000000000000a", + "to": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa8b5", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "gas": "0x1784b", + "input": "0x23b872dd000000000000000000000000cda72070e455bb31c7690a170224ce43623d0b6f000000000000000000000000d6d6366d04520fe0a2716b1ee24b9a52d65992f7000000000000000000000000000000000000000000000000000000000000000a", + "to": "0x331c421106619d4217d41c3e073b1e64f4974563", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e3c", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "gas": "0x9c40", + "input": "0x40c1a064000000000000000000000000000000000000000000000000000000000000000a", + "to": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa89", + "output": "0x000000000000000000000000492d035712811f7cbfafdee1b77ea4135e616e3d" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "gas": "0x994a", + "input": "0x40c1a064000000000000000000000000000000000000000000000000000000000000000a", + "to": "0x331c421106619d4217d41c3e073b1e64f4974563", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9dd", + "output": "0x000000000000000000000000492d035712811f7cbfafdee1b77ea4135e616e3d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "gas": "0x7530", + "input": "0x01ffc9a72a55205a00000000000000000000000000000000000000000000000000000000", + "to": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3bc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "gas": "0x72d6", + "input": "0x01ffc9a72a55205a00000000000000000000000000000000000000000000000000000000", + "to": "0x331c421106619d4217d41c3e073b1e64f4974563", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x310", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 0 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "gas": "0x7530", + "input": "0x01ffc9a7bb3bafd600000000000000000000000000000000000000000000000000000000", + "to": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2ab", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "gas": "0x72d6", + "input": "0x01ffc9a7bb3bafd600000000000000000000000000000000000000000000000000000000", + "to": "0x331c421106619d4217d41c3e073b1e64f4974563", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ff", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "gas": "0x9c40", + "input": "0xbb3bafd6000000000000000000000000000000000000000000000000000000000000000a", + "to": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xeb8", + "output": "0x000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000492d035712811f7cbfafdee1b77ea4135e616e3d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e8" + }, + "subtraces": 1, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9dde0faeb3c65f10235368c306ea69c5a12c5389", + "gas": "0x994a", + "input": "0xbb3bafd6000000000000000000000000000000000000000000000000000000000000000a", + "to": "0x331c421106619d4217d41c3e073b1e64f4974563", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xdf1", + "output": "0x000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000492d035712811f7cbfafdee1b77ea4135e616e3d000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e8" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4, + 0 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "gas": "0x571c", + "input": "0x", + "to": "0x67df244584b67e8c51b10ad610aaffa9a402fdb6", + "value": "0x820c0db600d000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1c24", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 5 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x67df244584b67e8c51b10ad610aaffa9a402fdb6", + "gas": "0x3a6b", + "input": "0x", + "to": "0x1c0df262a40f99d7d6145faba04db75d1126f93d", + "value": "0x820c0db600d000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x37", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 5, + 0 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xcda72070e455bb31c7690a170224ce43623d0b6f", + "gas": "0x5548", + "input": "0x", + "to": "0x492d035712811f7cbfafdee1b77ea4135e616e3d", + "value": "0x9a6e504820f7000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 6 + ], + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x301ad6766d361a78b1b562a422a5fe86ef84f7af", + "gas": "0x9b7f", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000000000000000000e63", + "to": "0x9733f49d577da2b6705ca173382c0e3cdfff2a48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9b7f", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xb4bbd966298cd0862802062ee8911bce17c083e2c56f933eddeaed12b8658c4d", + "transaction_position": 29, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9733f49d577da2b6705ca173382c0e3cdfff2a48", + "gas": "0x32d7", + "input": "0xa9059cbb000000000000000000000000301ad6766d361a78b1b562a422a5fe86ef84f7af00000000000000000000000000000000000000000000000000000001558859ce", + "to": "0x630d98424efe0ea27fb1b3ab7741907dffeaad78", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3290", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xb4bbd966298cd0862802062ee8911bce17c083e2c56f933eddeaed12b8658c4d", + "transaction_position": 29, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x301ad6766d361a78b1b562a422a5fe86ef84f7af", + "gas": "0x9b7f", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000000000000000000012c", + "to": "0x9733f49d577da2b6705ca173382c0e3cdfff2a48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9b7f", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xa3aaa8965ccc2e191a1147ba3413b57c85d511620f482ef10c0eccc09cff3c34", + "transaction_position": 30, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9733f49d577da2b6705ca173382c0e3cdfff2a48", + "gas": "0x32d7", + "input": "0xa9059cbb000000000000000000000000301ad6766d361a78b1b562a422a5fe86ef84f7af00000000000000000000000000000000000000000000000000000001e2e542f1", + "to": "0x630d98424efe0ea27fb1b3ab7741907dffeaad78", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3290", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xa3aaa8965ccc2e191a1147ba3413b57c85d511620f482ef10c0eccc09cff3c34", + "transaction_position": 30, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7af3edc58487bad40a21b93d90f14453282d8df3", + "gas": "0x506ab", + "input": "0x252dba42000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000485d8c64f33db5152a1159e0443daa4b1a62016000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000024ef5cfb8c0000000000000000000000007af3edc58487bad40a21b93d90f14453282d8df300000000000000000000000000000000000000000000000000000000", + "to": "0xeefba1e63905ef1d7acba5a8513c70307c1ce441", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x31fd1", + "output": "0x0000000000000000000000000000000000000000000000000000000000dc13ce0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xeefba1e63905ef1d7acba5a8513c70307c1ce441", + "gas": "0x4dfb8", + "input": "0xef5cfb8c0000000000000000000000007af3edc58487bad40a21b93d90f14453282d8df3", + "to": "0x485d8c64f33db5152a1159e0443daa4b1a620160", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3087b", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x485d8c64f33db5152a1159e0443daa4b1a620160", + "gas": "0x4b887", + "input": "0xef5cfb8c0000000000000000000000007af3edc58487bad40a21b93d90f14453282d8df3", + "to": "0x220f93183a69d1598e8405310cb361cff504146f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2f417", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x485d8c64f33db5152a1159e0443daa4b1a620160", + "gas": "0x462ca", + "input": "0x18160ddd", + "to": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xab24", + "output": "0x000000000000000000000000000000000000000000000000000004cbe9130b9b" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "gas": "0x43d3e", + "input": "0x1db78944", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8aef", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "gas": "0x4184d", + "input": "0xdd5cd22c", + "to": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x58e4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "trace_address": [ + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x40549", + "input": "0xdd5cd22c", + "to": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1e1c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x3e1b9", + "input": "0xdd5cd22c", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9a1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x3db61", + "input": "0xbbcdd6d3000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217", + "to": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x26f2", + "output": "0x000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "gas": "0x3b043", + "input": "0xbbcdd6d3000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217", + "to": "0x50ce132ebe395d35b8cf6df6ce5f817107707583", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xaa7", + "output": "0x000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x3b2e3", + "input": "0xdd5cd22c", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0, + 0, + 0, + 2 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "gas": "0x3bea7", + "input": "0x45cc970500000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "to": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x18f5", + "output": "0x00000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "gas": "0x3acfa", + "input": "0x45cc970500000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "to": "0x50ce132ebe395d35b8cf6df6ce5f817107707583", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1602", + "output": "0x00000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "gas": "0x3b2d0", + "input": "0x18160ddd", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x981", + "output": "0x000000000000000000000000000000000000000000000000000004cbe9130b9b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x485d8c64f33db5152a1159e0443daa4b1a620160", + "gas": "0x38cd3", + "input": "0x70a082310000000000000000000000007af3edc58487bad40a21b93d90f14453282d8df3", + "to": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3465", + "output": "0x00000000000000000000000000000000000000000000000000000073db782422" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "gas": "0x37bec", + "input": "0x1db78944", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x255f", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "gas": "0x36b4e", + "input": "0xdd5cd22c", + "to": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1488", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "trace_address": [ + 0, + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x35afe", + "input": "0xdd5cd22c", + "to": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4b8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 1, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x34b64", + "input": "0xdd5cd22c", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x353b2", + "input": "0xbbcdd6d3000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217", + "to": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5be", + "output": "0x000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 1, + 0, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "gas": "0x343b1", + "input": "0xbbcdd6d3000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217", + "to": "0x50ce132ebe395d35b8cf6df6ce5f817107707583", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2d7", + "output": "0x000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x34be2", + "input": "0xdd5cd22c", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 0, + 0, + 2 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "gas": "0x354f3", + "input": "0x45cc970500000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "to": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x955", + "output": "0x00000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 1, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "gas": "0x344ed", + "input": "0x45cc970500000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "to": "0x50ce132ebe395d35b8cf6df6ce5f817107707583", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x662", + "output": "0x00000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x35036a4b7b012331f23f2945c08a5274ced38ac2", + "gas": "0x35575", + "input": "0x70a082310000000000000000000000007af3edc58487bad40a21b93d90f14453282d8df3", + "to": "0x67db14e73c2dce786b5bbbfa4d010deab4bbfcf9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e3", + "output": "0x00000000000000000000000000000000000000000000000000000073db782422" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x485d8c64f33db5152a1159e0443daa4b1a620160", + "gas": "0x2d1a5", + "input": "0x18160ddd", + "to": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5cc4", + "output": "0x00000000000000000000000000000000000000000000009a1ae879f45e02b427" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 2 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "gas": "0x2b270", + "input": "0x1db78944", + "to": "0xd77e28a1b9a9cfe1fc2eee70e391c05d25853cbf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3ca2", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 2, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "gas": "0x29d47", + "input": "0xdd5cd22c", + "to": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1488", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "trace_address": [ + 0, + 0, + 2, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x2902f", + "input": "0xdd5cd22c", + "to": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4b8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x283c1", + "input": "0xdd5cd22c", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x288e3", + "input": "0xbbcdd6d3000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217", + "to": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5be", + "output": "0x000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 2, + 0, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "gas": "0x27c0d", + "input": "0xbbcdd6d3000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217", + "to": "0x50ce132ebe395d35b8cf6df6ce5f817107707583", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2d7", + "output": "0x000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x28113", + "input": "0xdd5cd22c", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 0, + 0, + 2 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "gas": "0x286ec", + "input": "0x8abe0b75000000000000000000000000d77e28a1b9a9cfe1fc2eee70e391c05d25853cbf", + "to": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x18c8", + "output": "0x000000000000000000000000d77e28a1b9a9cfe1fc2eee70e391c05d25853cbf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 2, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "gas": "0x27a1e", + "input": "0x8abe0b75000000000000000000000000d77e28a1b9a9cfe1fc2eee70e391c05d25853cbf", + "to": "0x50ce132ebe395d35b8cf6df6ce5f817107707583", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x15d5", + "output": "0x000000000000000000000000d77e28a1b9a9cfe1fc2eee70e391c05d25853cbf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "gas": "0x27516", + "input": "0x18160ddd", + "to": "0xd77e28a1b9a9cfe1fc2eee70e391c05d25853cbf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x981", + "output": "0x00000000000000000000000000000000000000000000009a1ae879f45e02b427" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x485d8c64f33db5152a1159e0443daa4b1a620160", + "gas": "0x248cf", + "input": "0x70a082310000000000000000000000007af3edc58487bad40a21b93d90f14453282d8df3", + "to": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3425", + "output": "0x000000000000000000000000000000000000000000000007f09087fe91bef0ab" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 3 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "gas": "0x23d0b", + "input": "0x1db78944", + "to": "0xd77e28a1b9a9cfe1fc2eee70e391c05d25853cbf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2532", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 3, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "gas": "0x23168", + "input": "0xdd5cd22c", + "to": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1488", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "trace_address": [ + 0, + 0, + 3, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x22600", + "input": "0xdd5cd22c", + "to": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4b8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 3, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x21b3a", + "input": "0xdd5cd22c", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 3, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x21eb3", + "input": "0xbbcdd6d3000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217", + "to": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5be", + "output": "0x000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 3, + 0, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "gas": "0x21386", + "input": "0xbbcdd6d3000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217", + "to": "0x50ce132ebe395d35b8cf6df6ce5f817107707583", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2d7", + "output": "0x000000000000000000000000e16db319d9da7ce40b666dd2e365a4b8b3c18217" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 3, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xade98a1a7ca184e886ab4968e96dbcbee48d9596", + "gas": "0x216e4", + "input": "0xdd5cd22c", + "to": "0xe16db319d9da7ce40b666dd2e365a4b8b3c18217", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 3, + 0, + 0, + 2 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "gas": "0x21b0d", + "input": "0x8abe0b75000000000000000000000000d77e28a1b9a9cfe1fc2eee70e391c05d25853cbf", + "to": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x928", + "output": "0x000000000000000000000000d77e28a1b9a9cfe1fc2eee70e391c05d25853cbf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 3, + 0, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa731585ab05fc9f83555cf9bff8f58ee94e18f85", + "gas": "0x20fee", + "input": "0x8abe0b75000000000000000000000000d77e28a1b9a9cfe1fc2eee70e391c05d25853cbf", + "to": "0x50ce132ebe395d35b8cf6df6ce5f817107707583", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x635", + "output": "0x000000000000000000000000d77e28a1b9a9cfe1fc2eee70e391c05d25853cbf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 3, + 0, + 1, + 0 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x6d8260fff752ba01bcf76c919e9e3d328971152e", + "gas": "0x216c1", + "input": "0x70a082310000000000000000000000007af3edc58487bad40a21b93d90f14453282d8df3", + "to": "0xd77e28a1b9a9cfe1fc2eee70e391c05d25853cbf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e3", + "output": "0x000000000000000000000000000000000000000000000007f09087fe91bef0ab" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 3, + 1 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x485d8c64f33db5152a1159e0443daa4b1a620160", + "gas": "0x1f472", + "input": "0x70a08231000000000000000000000000485d8c64f33db5152a1159e0443daa4b1a620160", + "to": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa07", + "output": "0x000000000000000000000000000000000000000000000000000000063d8afa1e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 4 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x485d8c64f33db5152a1159e0443daa4b1a620160", + "gas": "0x1e884", + "input": "0xa9059cbb0000000000000000000000007af3edc58487bad40a21b93d90f14453282d8df30000000000000000000000000000000000000000000000000000000066c227c2", + "to": "0x961dd84059505d59f82ce4fb87d3c09bec65301d", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2a25", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 5 + ], + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa37dd7c67c5c985aa56f7cf362b29d83c3f36816", + "gas": "0x24175", + "input": "0x18cbafe50000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000004bb2c5be67d100000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a37dd7c67c5c985aa56f7cf362b29d83c3f3681600000000000000000000000000000000000000000000000000000000623716d000000000000000000000000000000000000000000000000000000000000000020000000000000000000000002ba8349123de45e931a8c8264c332e6e9cf593f9000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc27a6572696f6e", + "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fd67", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000004c76848244aa" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "gas": "0x2250d", + "input": "0x0902f1ac", + "to": "0xf8937dc1ca081161527c0bc1eb6379420195c894", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9d5", + "output": "0x000000000000000000000000000000000000000000003a347a66b4b86cca90b300000000000000000000000000000000000000000000000141a90c049e7b4951000000000000000000000000000000000000000000000000000000006236e2a0" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "gas": "0x20661", + "input": "0x23b872dd000000000000000000000000a37dd7c67c5c985aa56f7cf362b29d83c3f36816000000000000000000000000f8937dc1ca081161527c0bc1eb6379420195c8940000000000000000000000000000000000000000000000000de0b6b3a7640000", + "to": "0x2ba8349123de45e931a8c8264c332e6e9cf593f9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7c90", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 1 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x2ba8349123de45e931a8c8264c332e6e9cf593f9", + "gas": "0x1eb92", + "input": "0x23b872dd000000000000000000000000a37dd7c67c5c985aa56f7cf362b29d83c3f36816000000000000000000000000f8937dc1ca081161527c0bc1eb6379420195c8940000000000000000000000000000000000000000000000000de0b6b3a7640000", + "to": "0x8eb964eb7558c770de6c4fc4afb35dfc45363305", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6965", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "gas": "0x18281", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c76848244aa000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xf8937dc1ca081161527c0bc1eb6379420195c894", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1009f", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf8937dc1ca081161527c0bc1eb6379420195c894", + "gas": "0x14880", + "input": "0xa9059cbb000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f00000000000000000000000000000000000000000000000000004c76848244aa", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x750a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf8937dc1ca081161527c0bc1eb6379420195c894", + "gas": "0xd2df", + "input": "0x70a08231000000000000000000000000f8937dc1ca081161527c0bc1eb6379420195c894", + "to": "0x2ba8349123de45e931a8c8264c332e6e9cf593f9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3eb", + "output": "0x000000000000000000000000000000000000000000003a3488476b6c142e90b3" + }, + "subtraces": 1, + "trace_address": [ + 2, + 1 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x2ba8349123de45e931a8c8264c332e6e9cf593f9", + "gas": "0xce35", + "input": "0x70a08231000000000000000000000000f8937dc1ca081161527c0bc1eb6379420195c894", + "to": "0x8eb964eb7558c770de6c4fc4afb35dfc45363305", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25d", + "output": "0x000000000000000000000000000000000000000000003a3488476b6c142e90b3" + }, + "subtraces": 0, + "trace_address": [ + 2, + 1, + 0 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf8937dc1ca081161527c0bc1eb6379420195c894", + "gas": "0xcd5c", + "input": "0x70a08231000000000000000000000000f8937dc1ca081161527c0bc1eb6379420195c894", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x216", + "output": "0x00000000000000000000000000000000000000000000000141a8bf8e19f904a7" + }, + "subtraces": 0, + "trace_address": [ + 2, + 2 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "gas": "0x83de", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000000004c76848244aa", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2413", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "gas": "0x8fc", + "input": "0x", + "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "value": "0x4c76848244aa" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5f", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", + "gas": "0x44be", + "input": "0x", + "to": "0xa37dd7c67c5c985aa56f7cf362b29d83c3f36816", + "value": "0x4c76848244aa" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x88fb75b01df7d93f3f922408b248d3df0b3ea395", + "gas": "0x0", + "input": "0x", + "to": "0x0cf49d3cd6be7f7a1d1437b7f84bd52621d91c61", + "value": "0x1e81637114b868" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe82edb3e7b7a5ed9b013766c59e7fc0acb8a95512b7a70e76010795bc9dcf28f", + "transaction_position": 33, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7bbe51bec3359eac6b3341264f54f57c4d597eb6", + "gas": "0x47bd", + "input": "0xa9059cbb0000000000000000000000003a9e6cf4e3157670a3b991c25d6f4fcbd9419c03000000000000000000000000000000000000000000000030b12af414579d0000", + "to": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x47bd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xb4652ba452d302f797cdaa77723bad50de5dd2add11c6451182001e1352d5d16", + "transaction_position": 34, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1bd433f1dc1d18e2406a04b6a1d976515b005f74", + "gas": "0x5fb5", + "input": "0xa9059cbb000000000000000000000000c97a4ed29f03fd549c4ae79086673523122d2bc500000000000000000000000000000000000000000000000000000000751b7198", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xda7404a66227c8cba4d26dacb0e6c4150b4703095d6d0dbdc2536016d49fdf12", + "transaction_position": 35, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x4ee935c94baaa18e1be072b9223d863727ca8d04", + "gas": "0x5fb5", + "input": "0xa9059cbb000000000000000000000000c97a4ed29f03fd549c4ae79086673523122d2bc5000000000000000000000000000000000000000000000000000000003567e000", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x6cad61fadd930a31ee3a205ee22f703be2eb113ea9cf13ee49d5b2c3774be7cd", + "transaction_position": 36, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x734ac651dd95a339c633cded410228515f97faff", + "gas": "0x0", + "input": "0x", + "to": "0x714c9bd6c38026e58e66f7638f2200c61cfbc645", + "value": "0x197f178a63236" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x8bc7f69338840f97ad86d48006bd81362c0810653574147698523d66581a5e3b", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2bc0e1b9fad43bb0da5839d1b848402350f2e56a", + "gas": "0x0", + "input": "0x", + "to": "0xf0d9fcb4fefdbd3e7929374b4632f8ad511bd7e3", + "value": "0x161c238fbfcc4b9" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x2daed152f4e3487b1c24cdfe3a765a5f1bfbd5397837c8a5cbe5e4412a709df9", + "transaction_position": 38, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa4cd5596262f4bfcbd369d4965d5825978d22420", + "gas": "0x0", + "input": "0x", + "to": "0xf0d9fcb4fefdbd3e7929374b4632f8ad511bd7e3", + "value": "0x1619b6419795726" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x695f0f80c9a2fdb8c7dd2e5b99deaab7f64f40be0fb95abf0ff49100ffd51486", + "transaction_position": 39, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc73039cb94488a4638222e63b1f1816f861d8b3a", + "gas": "0x12a60", + "input": "0xa9059cbb000000000000000000000000f81a70d1b89c845c568d8f447f1a1b7cae433a9800000000000000000000000000000000000000000000000017979cfe362a0000", + "to": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xe780", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x30d592c46466a631e22cfe60d9a70cfdcae5004da7a7b18cf6d33fd742185121", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x45804880de22913dafe09f4980848ece6ecbaf78", + "gas": "0x109df", + "input": "0xa9059cbb000000000000000000000000f81a70d1b89c845c568d8f447f1a1b7cae433a9800000000000000000000000000000000000000000000000017979cfe362a0000", + "to": "0x74271f2282ed7ee35c166122a60c9830354be42a", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xcb0e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x30d592c46466a631e22cfe60d9a70cfdcae5004da7a7b18cf6d33fd742185121", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb4bd8c4a35fb03b6050282fe4b258ebfd3c73b6c", + "gas": "0x790cb", + "input": "0xddd81f82", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5beda", + "output": "0x000000000000000000000000e3fecaee716aa63e0d21806d10b474d90f10c884" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x297ede05e27e35c99c24cae6977c87475227e037fe5b3609784c7363a3364fc0", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "from": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "gas": "0x6dfa3", + "init": "0x608060405234801561001057600080fd5b506040516105d03803806105d08339810160409081528151602083015191830151909201610046836401000000006100e0810204565b61005882640100000000610102810204565b81600160a060020a03168160405180828051906020019080838360005b8381101561008d578181015183820152602001610075565b50505050905090810190601f1680156100ba5780820380516001836020036101000a031916815260200191505b50915050600060405180830381855af491505015156100d857600080fd5b505050610165565b60018054600160a060020a031916600160a060020a0392909216919091179055565b600054600160a060020a038281169116141561011d57600080fd5b60008054600160a060020a031916600160a060020a038316908117825560405190917fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b91a250565b61045c806101746000396000f3006080604052600436106100825763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025313a281146100c85780633659cfe6146100f95780634555d5c91461011c5780634f1ef286146101435780635c60da1b1461019d5780636fde8202146101b2578063f1739cae146101c7575b600061008c6101e8565b9050600160a060020a03811615156100a357600080fd5b60405136600082376000803683855af43d806000843e8180156100c4578184f35b8184fd5b3480156100d457600080fd5b506100dd6101f7565b60408051600160a060020a039092168252519081900360200190f35b34801561010557600080fd5b5061011a600160a060020a0360043516610206565b005b34801561012857600080fd5b50610131610239565b60408051918252519081900360200190f35b60408051602060046024803582810135601f810185900485028601850190965285855261011a958335600160a060020a031695369560449491939091019190819084018382808284375094975061023e9650505050505050565b3480156101a957600080fd5b506100dd6101e8565b3480156101be57600080fd5b506100dd6102f2565b3480156101d357600080fd5b5061011a600160a060020a0360043516610301565b600054600160a060020a031690565b60006102016102f2565b905090565b61020e6101f7565b600160a060020a031633600160a060020a031614151561022d57600080fd5b61023681610391565b50565b600290565b6102466101f7565b600160a060020a031633600160a060020a031614151561026557600080fd5b61026e82610206565b30600160a060020a03168160405180828051906020019080838360005b838110156102a357818101518382015260200161028b565b50505050905090810190601f1680156102d05780820380516001836020036101000a031916815260200191505b50915050600060405180830381855af491505015156102ee57600080fd5b5050565b600154600160a060020a031690565b6103096101f7565b600160a060020a031633600160a060020a031614151561032857600080fd5b600160a060020a038116151561033d57600080fd5b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd96103666101f7565b60408051600160a060020a03928316815291841660208301528051918290030190a161023681610401565b600054600160a060020a03828116911614156103ac57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038316908117825560405190917fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b91a250565b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058205f26049bbc794226b505f589b2ee1130db54310d79dd8a635c6f6c61e305a7770029000000000000000000000000b4bd8c4a35fb03b6050282fe4b258ebfd3c73b6c000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044485cc955000000000000000000000000b4bd8c4a35fb03b6050282fe4b258ebfd3c73b6c000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "address": "0xe3fecaee716aa63e0d21806d10b474d90f10c884", + "code": "0x6080604052600436106100825763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663025313a281146100c85780633659cfe6146100f95780634555d5c91461011c5780634f1ef286146101435780635c60da1b1461019d5780636fde8202146101b2578063f1739cae146101c7575b600061008c6101e8565b9050600160a060020a03811615156100a357600080fd5b60405136600082376000803683855af43d806000843e8180156100c4578184f35b8184fd5b3480156100d457600080fd5b506100dd6101f7565b60408051600160a060020a039092168252519081900360200190f35b34801561010557600080fd5b5061011a600160a060020a0360043516610206565b005b34801561012857600080fd5b50610131610239565b60408051918252519081900360200190f35b60408051602060046024803582810135601f810185900485028601850190965285855261011a958335600160a060020a031695369560449491939091019190819084018382808284375094975061023e9650505050505050565b3480156101a957600080fd5b506100dd6101e8565b3480156101be57600080fd5b506100dd6102f2565b3480156101d357600080fd5b5061011a600160a060020a0360043516610301565b600054600160a060020a031690565b60006102016102f2565b905090565b61020e6101f7565b600160a060020a031633600160a060020a031614151561022d57600080fd5b61023681610391565b50565b600290565b6102466101f7565b600160a060020a031633600160a060020a031614151561026557600080fd5b61026e82610206565b30600160a060020a03168160405180828051906020019080838360005b838110156102a357818101518382015260200161028b565b50505050905090810190601f1680156102d05780820380516001836020036101000a031916815260200191505b50915050600060405180830381855af491505015156102ee57600080fd5b5050565b600154600160a060020a031690565b6103096101f7565b600160a060020a031633600160a060020a031614151561032857600080fd5b600160a060020a038116151561033d57600080fd5b7f5a3e66efaa1e445ebd894728a69d6959842ea1e97bd79b892797106e270efcd96103666101f7565b60408051600160a060020a03928316815291841660208301528051918290030190a161023681610401565b600054600160a060020a03828116911614156103ac57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038316908117825560405190917fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b91a250565b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058205f26049bbc794226b505f589b2ee1130db54310d79dd8a635c6f6c61e305a7770029", + "gasUsed": "0x4d9bb" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x297ede05e27e35c99c24cae6977c87475227e037fe5b3609784c7363a3364fc0", + "transaction_position": 41, + "type": "create", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xe3fecaee716aa63e0d21806d10b474d90f10c884", + "gas": "0x60676", + "input": "0x485cc955000000000000000000000000b4bd8c4a35fb03b6050282fe4b258ebfd3c73b6c000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000", + "to": "0xf9e266af4bca5890e2781812cc6a6e89495a79f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb040", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x297ede05e27e35c99c24cae6977c87475227e037fe5b3609784c7363a3364fc0", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb4bd8c4a35fb03b6050282fe4b258ebfd3c73b6c", + "gas": "0x790cb", + "input": "0xddd81f82", + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": null, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x36fb4fec44a394531b888c225c4116cf9a7a9c2a5c2798b525478ee6424577a4", + "transaction_position": 42, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "call", + "from": "0x79282db7be479ae091ff5df9cddb91d8d4118217", + "gas": "0x25ca7", + "input": "0x5ae401dc00000000000000000000000000000000000000000000000000000000623713f600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000e404e45aaf000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000079282db7be479ae091ff5df9cddb91d8d4118217000000000000000000000000000000000000000000000000013fbe85edc9000000000000000000000000000000000000000000000000000cee8dbc7e99e4803f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0x13fbe85edc90000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d69e", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000e398ed6ccc6c93495" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0x24e2d", + "input": "0x04e45aaf000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000079282db7be479ae091ff5df9cddb91d8d4118217000000000000000000000000000000000000000000000000013fbe85edc9000000000000000000000000000000000000000000000000000cee8dbc7e99e4803f0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0x13fbe85edc90000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ce1c", + "output": "0x00000000000000000000000000000000000000000000000e398ed6ccc6c93495" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0x229f6", + "input": "0x128acb0800000000000000000000000079282db7be479ae091ff5df9cddb91d8d41182170000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013fbe85edc90000000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d2500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000079282db7be479ae091ff5df9cddb91d8d4118217000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f46b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000", + "to": "0x60594a405d53811d3bc4766596efd80fd545a270", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1b11b", + "output": "0xfffffffffffffffffffffffffffffffffffffffffffffff1c67129333936cb6b000000000000000000000000000000000000000000000000013fbe85edc90000" + }, + "subtraces": 4, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x60594a405d53811d3bc4766596efd80fd545a270", + "gas": "0x1b377", + "input": "0xa9059cbb00000000000000000000000079282db7be479ae091ff5df9cddb91d8d411821700000000000000000000000000000000000000000000000e398ed6ccc6c93495", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x75de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x60594a405d53811d3bc4766596efd80fd545a270", + "gas": "0x1326d", + "input": "0x70a0823100000000000000000000000060594a405d53811d3bc4766596efd80fd545a270", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e6", + "output": "0x0000000000000000000000000000000000000000000000cdc939b3547bd218ad" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 1 + ], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x60594a405d53811d3bc4766596efd80fd545a270", + "gas": "0x12599", + "input": "0xfa461e33fffffffffffffffffffffffffffffffffffffffffffffff1c67129333936cb6b000000000000000000000000000000000000000000000000013fbe85edc90000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000079282db7be479ae091ff5df9cddb91d8d4118217000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f46b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000", + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e61", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 0, + 2 + ], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0xfacc", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x13fbe85edc90000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5da6", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 0 + ], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45", + "gas": "0x9cf7", + "input": "0xa9059cbb00000000000000000000000060594a405d53811d3bc4766596efd80fd545a270000000000000000000000000000000000000000000000000013fbe85edc90000", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x17ae", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 2, + 1 + ], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x60594a405d53811d3bc4766596efd80fd545a270", + "gas": "0x873a", + "input": "0x70a0823100000000000000000000000060594a405d53811d3bc4766596efd80fd545a270", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x216", + "output": "0x0000000000000000000000000000000000000000000000cdca7971da699b18ad" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 3 + ], + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x4c9af439b1a6761b8e549d8d226a468a6b2803a8", + "gas": "0x18058", + "input": "0xa9059cbb000000000000000000000000aa8a6273a2c2b060b65b9b130795588e0db174cd0000000000000000000000000000000000000000000000000000000001980520", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xf78d666d774831b5fe2c697ba844e5720b50d59d3032eb3de8f13916df8bb4e4", + "transaction_position": 44, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3f84020f8d26f80075d5ec97b434a70124164ae7", + "gas": "0x1ccf0", + "input": "0xe17376b50000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000001158e460913d000000000000000000000000000003f84020f8d26f80075d5ec97b434a70124164ae7", + "to": "0xabea9132b05a70803a4e85094fd0e1800777fbef", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x14b6f", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xabea9132b05a70803a4e85094fd0e1800777fbef", + "gas": "0x1b274", + "input": "0xe17376b50000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000001158e460913d000000000000000000000000000003f84020f8d26f80075d5ec97b434a70124164ae7", + "to": "0x204c6badad00ef326de0921a940d8267060d1033", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x137ae", + "output": "0x" + }, + "subtraces": 5, + "trace_address": [ + 0 + ], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xabea9132b05a70803a4e85094fd0e1800777fbef", + "gas": "0x17a55", + "input": "0xead317620000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x34460c0eb5074c29a9f6fe13b8e7e23a0d08af01", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d82", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x34460c0eb5074c29a9f6fe13b8e7e23a0d08af01", + "gas": "0x1612f", + "input": "0xead317620000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x9a97008cccbdec3413f9304602427e66895996a0", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9ca", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xabea9132b05a70803a4e85094fd0e1800777fbef", + "gas": "0x15aac", + "input": "0xf3a65bf90000000000000000000000000000000000000000000000000000000000000001", + "to": "0x34460c0eb5074c29a9f6fe13b8e7e23a0d08af01", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xbde", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x34460c0eb5074c29a9f6fe13b8e7e23a0d08af01", + "gas": "0x15353", + "input": "0xf3a65bf90000000000000000000000000000000000000000000000000000000000000001", + "to": "0x9a97008cccbdec3413f9304602427e66895996a0", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9ba", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xabea9132b05a70803a4e85094fd0e1800777fbef", + "gas": "0x1430c", + "input": "0x70a08231000000000000000000000000abea9132b05a70803a4e85094fd0e1800777fbef", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa2a", + "output": "0x00000000000000000000000000000000000000000002ec618868488151745922" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xabea9132b05a70803a4e85094fd0e1800777fbef", + "gas": "0x134bd", + "input": "0x23b872dd0000000000000000000000003f84020f8d26f80075d5ec97b434a70124164ae7000000000000000000000000abea9132b05a70803a4e85094fd0e1800777fbef000000000000000000000000000000000000000000000001158e460913d00000", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x346a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xabea9132b05a70803a4e85094fd0e1800777fbef", + "gas": "0xfe8f", + "input": "0x70a08231000000000000000000000000abea9132b05a70803a4e85094fd0e1800777fbef", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x25a", + "output": "0x00000000000000000000000000000000000000000002ec629df68e8a65445922" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8410e1e514e5b9e1489499af2371876fc366a550", + "gas": "0x5d9bd", + "input": "0xaeb766e20000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000013768c37aab3fae00000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000022633", + "to": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3ca32", + "output": "0x" + }, + "subtraces": 5, + "trace_address": [], + "transaction_hash": "0x7726cef3bb7cb1b0184310ed08e1fc368985417c5bd784af2fa08608900056f4", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x589d8", + "input": "0x6352211e0000000000000000000000000000000000000000000000000000000000022633", + "to": "0x6cc462bc49cecfe943bc4f477b23b92906e6074f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa5a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x7726cef3bb7cb1b0184310ed08e1fc368985417c5bd784af2fa08608900056f4", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x50368", + "input": "0x70a082310000000000000000000000008410e1e514e5b9e1489499af2371876fc366a550", + "to": "0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb46", + "output": "0x0000000000000000000000000000000000000000000000139aa6990ac595c000" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x7726cef3bb7cb1b0184310ed08e1fc368985417c5bd784af2fa08608900056f4", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x4f5b6", + "input": "0xdd62ed3e0000000000000000000000008410e1e514e5b9e1489499af2371876fc366a550000000000000000000000000dd257067581bb12d9d37c24bc7ad87ee41db74b9", + "to": "0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xca9", + "output": "0x000000000000000000000000000000000000000c9f2c9cd04674edea40000000" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x7726cef3bb7cb1b0184310ed08e1fc368985417c5bd784af2fa08608900056f4", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x4de5b", + "input": "0x23b872dd0000000000000000000000008410e1e514e5b9e1489499af2371876fc366a55000000000000000000000000033677d7d37a862cd0bd78a6f0e4c23f0b457f59d000000000000000000000000000000000000000000000013768c37aab3fae000", + "to": "0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x43ab", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x7726cef3bb7cb1b0184310ed08e1fc368985417c5bd784af2fa08608900056f4", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9", + "gas": "0x498c7", + "input": "0x40c10f190000000000000000000000008410e1e514e5b9e1489499af2371876fc366a5500000000000000000000000000000000000000000000000000000000000022633", + "to": "0x6cc462bc49cecfe943bc4f477b23b92906e6074f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x23259", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x7726cef3bb7cb1b0184310ed08e1fc368985417c5bd784af2fa08608900056f4", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc0f12147ec02d773d1b4efcf1aff68776a3668cb", + "gas": "0x71b7", + "input": "0xa9059cbb000000000000000000000000513577a06b580eac6e4893c1458380c486e59c78000000000000000000000000000000000000000000000000000000174876e800", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x6b62c3c013bc1c719e78cc3b14fca3b0e620eb56ab10e6d28c4fd26b95678354", + "transaction_position": 47, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe291f2b218f139f3c986b8321f0a322ea7d634c1", + "gas": "0x0", + "input": "0x", + "to": "0x40f1c479cb6f98095965d35c5c6c39f92a685e77", + "value": "0x1ff973cafa8000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x650ed8658f4ac2c61d4a68e52baddc723058982b4e8daf2e052e7c36f3215a31", + "transaction_position": 48, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a7a7930d462b959e5d1b34b0a34ca2452dcb1ab", + "gas": "0x6073", + "input": "0xf14fcbc855e1c5451d8de92855522bef209c4054cf7574e51233c012aac5ad8f73342c62", + "to": "0x283af0b28c62c092c9727f1ee09c02ca627eb7f5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6073", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x2a5eebf11b3a6e4a3d3cd6ba74ba00b93d08415d33d6582219e75ad303587b1f", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x872f03b45e75979ca54c690a5cd8cb814efb8679", + "gas": "0x18058", + "input": "0xa9059cbb000000000000000000000000562680a4dc50ed2f14d75bf31f494cfe0b8d10a10000000000000000000000000000000000000000000000000000000003c8d644", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xa566858c674056b53068029adc6d48c92079f4d9b3ada749d962cfcee2fd09fe", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0f39a234676a145a1a944c6666b500ac8a16d74f", + "gas": "0x0", + "input": "0x", + "to": "0x80c67432656d59144ceff962e8faf8926599bcf8", + "value": "0x1c2e1caa5be32b" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xb6229b68d24b4f482611b392d0a168b8b72893120138ac6c93ab846ea3abf25f", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x6581886428612e091544f074e3ac30ddc6d54e2c", + "gas": "0x13ff9", + "input": "0xe3dec8fb0000000000000000000000006581886428612e091544f074e3ac30ddc6d54e2c00000000000000000000000072f020f8f3e8fd9382705723cd26380f8d0c66bb000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000003704adfa794abed0000", + "to": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x122cc", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xafc627b72c9dca1a1f803ff81c723d2dc85af1f406bb858cf92a25f1ccfc8cb7", + "transaction_position": 52, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "gas": "0x10e48", + "input": "0xe3dec8fb0000000000000000000000006581886428612e091544f074e3ac30ddc6d54e2c00000000000000000000000072f020f8f3e8fd9382705723cd26380f8d0c66bb000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000003704adfa794abed0000", + "to": "0x6abb753c1893194de4a83c6e8b4eadfc105fd5f5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10dcd", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0 + ], + "transaction_hash": "0xafc627b72c9dca1a1f803ff81c723d2dc85af1f406bb858cf92a25f1ccfc8cb7", + "transaction_position": 52, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "gas": "0xe0f2", + "input": "0xe375b64e0000000000000000000000006581886428612e091544f074e3ac30ddc6d54e2c0000000000000000000000006581886428612e091544f074e3ac30ddc6d54e2c00000000000000000000000072f020f8f3e8fd9382705723cd26380f8d0c66bb000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000003704adfa794abed0000", + "to": "0x40ec5b33f54e0e8a33a975908c5ba1c14e5bbbdf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9158", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xafc627b72c9dca1a1f803ff81c723d2dc85af1f406bb858cf92a25f1ccfc8cb7", + "transaction_position": 52, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x40ec5b33f54e0e8a33a975908c5ba1c14e5bbbdf", + "gas": "0xaf3b", + "input": "0xe375b64e0000000000000000000000006581886428612e091544f074e3ac30ddc6d54e2c0000000000000000000000006581886428612e091544f074e3ac30ddc6d54e2c00000000000000000000000072f020f8f3e8fd9382705723cd26380f8d0c66bb000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000003704adfa794abed0000", + "to": "0x608669d4914eec1e20408bc4c9efff27bb8cbde5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7c53", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0xafc627b72c9dca1a1f803ff81c723d2dc85af1f406bb858cf92a25f1ccfc8cb7", + "transaction_position": 52, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x40ec5b33f54e0e8a33a975908c5ba1c14e5bbbdf", + "gas": "0x8996", + "input": "0x23b872dd0000000000000000000000006581886428612e091544f074e3ac30ddc6d54e2c00000000000000000000000040ec5b33f54e0e8a33a975908c5ba1c14e5bbbdf0000000000000000000000000000000000000000000003704adfa794abed0000", + "to": "0x72f020f8f3e8fd9382705723cd26380f8d0c66bb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5772", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xafc627b72c9dca1a1f803ff81c723d2dc85af1f406bb858cf92a25f1ccfc8cb7", + "transaction_position": 52, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77", + "gas": "0x2f5e", + "input": "0x16f19831000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010087a7811f4bfedea3d341ad165680ae306b01aaeacc205d227629cf157dd9f821000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000006581886428612e091544f074e3ac30ddc6d54e2c00000000000000000000000072f020f8f3e8fd9382705723cd26380f8d0c66bb000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000003704adfa794abed0000", + "to": "0x28e4f3a7f651294b9564800b2d01f35189a5bfbe", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2f5e", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0xafc627b72c9dca1a1f803ff81c723d2dc85af1f406bb858cf92a25f1ccfc8cb7", + "transaction_position": 52, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x976fdc5dfa145e3cbc690e9fef4a408642732952", + "gas": "0x17f78c", + "input": "0x441a3e7000000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000005", + "to": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x13e280", + "output": "0x" + }, + "subtraces": 13, + "trace_address": [], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x1748bb", + "input": "0x6352211e0000000000000000000000000000000000000000000000000000000000000042", + "to": "0xee49ececa7853104a2ac68faff8568598f8af226", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa14", + "output": "0x000000000000000000000000976fdc5dfa145e3cbc690e9fef4a408642732952" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x1720ad", + "input": "0x65c5ea94000000000000000000000000976fdc5dfa145e3cbc690e9fef4a408642732952000000000000000000000000000000000000000000000003c257fa1e61d3fe4a0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x63167f3dc4e4ef5db1f1717275d2d150a634b26e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3507", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x63167f3dc4e4ef5db1f1717275d2d150a634b26e", + "gas": "0x16af7c", + "input": "0x91d1485401929b51ccb866359f22f5a3ce5c78c9fc36c4de9719e0e678f9a41b4e88b733000000000000000000000000b1abaac351e06d40441cf2cd97f6f0098e6473f2", + "to": "0x01c2fee5d6e76ec26162daaf4e336beed01f2651", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1eb8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x01c2fee5d6e76ec26162daaf4e336beed01f2651", + "gas": "0x16414b", + "input": "0x91d1485401929b51ccb866359f22f5a3ce5c78c9fc36c4de9719e0e678f9a41b4e88b733000000000000000000000000b1abaac351e06d40441cf2cd97f6f0098e6473f2", + "to": "0x3c02841d50514d6b4c53bb44b467a79eef547295", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xacc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x169f5f", + "input": "0xfcee45f400000000000000000000000000000000000000000000002801045c3108377a6e", + "to": "0xd817ec04440c51ec9b34b9625357e308b6a06348", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x20a", + "output": "0x000000000000000000000000000000000000000000000004001a09381a6bf2a4" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x1687a7", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000025ddff5f00aa2af5afb", + "to": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb85ab", + "output": "0x00000000000000000000000000000000000000000000025ddff5f00aa2af5b72" + }, + "subtraces": 5, + "trace_address": [ + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0x1610ef", + "input": "0x77c7b8fc", + "to": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc0a9", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 1, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x15a5ca", + "input": "0x77c7b8fc", + "to": "0x9b3be0cc5dd26fd0254088d03d8206792715588b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xad52", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 2, + "trace_address": [ + 3, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x153103", + "input": "0x45d01e4a", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6eff", + "output": "0x0000000000000000000000000000000000000000000010056e7cd7f33f601709" + }, + "subtraces": 1, + "trace_address": [ + 3, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x14c95e", + "input": "0x45d01e4a", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5ba8", + "output": "0x0000000000000000000000000000000000000000000010056e7cd7f33f601709" + }, + "subtraces": 3, + "trace_address": [ + 3, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x146203", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa6a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x14441d", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9ba", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x1426d5", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9ce", + "output": "0x0000000000000000000000000000000000000000000010056e7cd7f33f601709" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0, + 0, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x14b984", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa6a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0x153e51", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000229ab5be4bb7b2c99fb", + "to": "0x72c50e6fd8cc5506e166c273b6e814342aa0a3c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf721", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x72c50e6fd8cc5506e166c273b6e814342aa0a3c1", + "gas": "0x1471e0", + "input": "0xa9059cbb000000000000000000000000095ccfedf134d20a033eea5ab124c03777e8b0b0000000000000000000000000000000000000000000000229ab5be4bb7b2c99fb", + "to": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x770a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 3, + 1, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x141e7f", + "input": "0xa9059cbb000000000000000000000000095ccfedf134d20a033eea5ab124c03777e8b0b0000000000000000000000000000000000000000000000229ab5be4bb7b2c99fb", + "to": "0x9b3be0cc5dd26fd0254088d03d8206792715588b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7541", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 1, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0x144924", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000229ab5be4bb7b2c99fb", + "to": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x92728", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x13f669", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000229ab5be4bb7b2c99fb", + "to": "0x9b3be0cc5dd26fd0254088d03d8206792715588b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x92565", + "output": "0x" + }, + "subtraces": 9, + "trace_address": [ + 3, + 2, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x138b81", + "input": "0x45d01e4a", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x113f", + "output": "0x0000000000000000000000000000000000000000000010056e7cd7f33f601709" + }, + "subtraces": 1, + "trace_address": [ + 3, + 2, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x133bc0", + "input": "0x45d01e4a", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7c", + "output": "0x0000000000000000000000000000000000000000000010056e7cd7f33f601709" + }, + "subtraces": 3, + "trace_address": [ + 3, + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x12ebe9", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x12e701", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x12e2b8", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x0000000000000000000000000000000000000000000010056e7cd7f33f601709" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 0, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x1377fb", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x13712f", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x136bd1", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000002" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x136622", + "input": "0xce8c42e800000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x85731", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3, + 2, + 0, + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x1316f3", + "input": "0xce8c42e800000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8556e", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [ + 3, + 2, + 0, + 4, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x12beb3", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x12b8dc", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x0000000000000000000000000000000000000000000010056e7cd7f33f601709" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x12b41b", + "input": "0x38d0743600000000000000000000000000000000000000000000025ddff5f00aa2af5b700000000000000000000000000000000000000000000000000000000000000000", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x15a7d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "gas": "0x11876f", + "input": "0xa9059cbb000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d103185770400000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6d8d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 2, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x115cd5", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x00000000000000000000000000000000000000000000025ddff5f00aa2af5b70" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x114769", + "input": "0x958e2d31000000000000000000000000000000000000000000000000000000000000000b", + "to": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6b00d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "gas": "0x10ef5c", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x00000000000000000000000000000000000000000000025ddff5f00aa2af5b70" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "gas": "0x10da0a", + "input": "0x9dc29fac000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d103185770400000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x26e0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "gas": "0x10a02d", + "input": "0xd9caed120000000000000000000000005b5cfe992adac0c9d48e05854b2d91c73a0038580000000000000000000000002db0e83599a91b508ac268a6197b8b14f5e7284000000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0x989aeb4d175e16225e39e87d0d97a3360524ad80", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5e5a6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x989aeb4d175e16225e39e87d0d97a3360524ad80", + "gas": "0x1052bc", + "input": "0x70a08231000000000000000000000000989aeb4d175e16225e39e87d0d97a3360524ad80", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa6a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x989aeb4d175e16225e39e87d0d97a3360524ad80", + "gas": "0x103c9b", + "input": "0x2e1a7d4d00000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x55cb6", + "output": "0x" + }, + "subtraces": 7, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0xf6127", + "input": "0xb26b238e", + "to": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9ca", + "output": "0x0000000000000000000000000000000000000000000000000000000062f822f8" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0xf5666", + "input": "0x2c4e722e", + "to": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xb99", + "output": "0x00000000000000000000000000000000000000000000000065b1c3e2ddab672e" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0xf3fb8", + "input": "0x615e52370000000000000000000000002db0e83599a91b508ac268a6197b8b14f5e72840", + "to": "0x2f50d538606fa9edd2b11e2446beb18c9d5846bb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2289b", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0xd04a5", + "input": "0xd3078c940000000000000000000000002db0e83599a91b508ac268a6197b8b14f5e728400000000000000000000000000000000000000000000000000000000062327a00", + "to": "0x2f50d538606fa9edd2b11e2446beb18c9d5846bb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1f7c", + "output": "0x0000000000000000000000000000000000000000000000000000351616050ac7" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0xbb7c3", + "input": "0x70a08231000000000000000000000000989aeb4d175e16225e39e87d0d97a3360524ad80", + "to": "0x5f3b5dfeb7b28cdbd7faba78963ee202a494e2a2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2f21", + "output": "0x0000000000000000000000000000000000000000009b2b4b27cd83787426dd54" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0xb88ab", + "input": "0x18160ddd", + "to": "0x5f3b5dfeb7b28cdbd7faba78963ee202a494e2a2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x31d2", + "output": "0x00000000000000000000000000000000000000000149f64907711aca0a5498d0" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 5 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0xb23e0", + "input": "0xa9059cbb000000000000000000000000989aeb4d175e16225e39e87d0d97a3360524ad8000000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6b1c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 6 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x989aeb4d175e16225e39e87d0d97a3360524ad80", + "gas": "0xaf04e", + "input": "0xa9059cbb000000000000000000000000f403c135812408bfbe8713b5a23a04b3d48aae3100000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x602c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 2, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "gas": "0xacd02", + "input": "0xa9059cbb000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d103185770400000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x585c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 4, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xaacc6", + "input": "0xa9059cbb00000000000000000000000029780c39164ebbd62e9ddde50c151810070140f200000000000000000000000000000000000000000000025ddff5f00aa2af5b70", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1590", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 4, + 0, + 5 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xb2d27", + "input": "0x45d01e4a", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x113f", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 1, + "trace_address": [ + 3, + 2, + 0, + 5 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xafedf", + "input": "0x45d01e4a", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7c", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 3, + "trace_address": [ + 3, + 2, + 0, + 5, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xacffc", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 5, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xacb14", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 5, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xac6ca", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 5, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xb19a5", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x00000000000000000000000000000000000000000000025ddff5f00aa2af5b72" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 6 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xb12dd", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x00000000000000000000000000000000000000000000025ddff5f00aa2af5b72" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 7 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xb0b01", + "input": "0xa9059cbb000000000000000000000000095ccfedf134d20a033eea5ab124c03777e8b0b000000000000000000000000000000000000000000000025ddff5f00aa2af5b72", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x602c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 2, + 0, + 8 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0xb3d01", + "input": "0x70a08231000000000000000000000000095ccfedf134d20a033eea5ab124c03777e8b0b0", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x00000000000000000000000000000000000000000000025ddff5f00aa2af5b72" + }, + "subtraces": 0, + "trace_address": [ + 3, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0xb35de", + "input": "0xa9059cbb000000000000000000000000b1abaac351e06d40441cf2cd97f6f0098e6473f200000000000000000000000000000000000000000000025ddff5f00aa2af5b72", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x602c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 3, + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0xb2b65", + "input": "0x21c26120", + "to": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2376", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 1, + "trace_address": [ + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0xafc4e", + "input": "0x77c7b8fc", + "to": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2081", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 1, + "trace_address": [ + 4, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xaceca", + "input": "0x77c7b8fc", + "to": "0x9b3be0cc5dd26fd0254088d03d8206792715588b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ebe", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 2, + "trace_address": [ + 4, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xa9e5d", + "input": "0x45d01e4a", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x113f", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 1, + "trace_address": [ + 4, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xa7250", + "input": "0x45d01e4a", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7c", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 3, + "trace_address": [ + 4, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xa459f", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 4, + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xa40b7", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 4, + 0, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xa3c6d", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 0, + "trace_address": [ + 4, + 0, + 0, + 0, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xa8ad8", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 4, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0xad6a0", + "input": "0x21c26120", + "to": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2376", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 1, + "trace_address": [ + 5 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0xaa8dc", + "input": "0x77c7b8fc", + "to": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2081", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 1, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xa7ca5", + "input": "0x77c7b8fc", + "to": "0x9b3be0cc5dd26fd0254088d03d8206792715588b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ebe", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 2, + "trace_address": [ + 5, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xa4d81", + "input": "0x45d01e4a", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x113f", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 1, + "trace_address": [ + 5, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0xa22b8", + "input": "0x45d01e4a", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7c", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 3, + "trace_address": [ + 5, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x9f745", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x9f25d", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x9ee14", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 0, + 0, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xa39fb", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0xa754c", + "input": "0x6352211e0000000000000000000000000000000000000000000000000000000000000005", + "to": "0x6e3e1ab141f20fd89856677f1ea2366c6a6ab326", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa14", + "output": "0x000000000000000000000000a52093dc50f2596abadb56dc643630e61944aba9" + }, + "subtraces": 0, + "trace_address": [ + 6 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0xa67a0", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000002878a822c2152bf97", + "to": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x50977", + "output": "0x000000000000000000000000000000000000000000000002878a822c2152bf96" + }, + "subtraces": 5, + "trace_address": [ + 7 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0xa3a67", + "input": "0x77c7b8fc", + "to": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2081", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 1, + "trace_address": [ + 7, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0xa0fea", + "input": "0x77c7b8fc", + "to": "0x9b3be0cc5dd26fd0254088d03d8206792715588b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ebe", + "output": "0x0000000000000000000000000000000000000000000000000f2fb2f1111a88ef" + }, + "subtraces": 2, + "trace_address": [ + 7, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x9e279", + "input": "0x45d01e4a", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x113f", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 1, + "trace_address": [ + 7, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x9b95c", + "input": "0x45d01e4a", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7c", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 3, + "trace_address": [ + 7, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x98f8f", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 0, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x98aa7", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 0, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x9865d", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 0, + "trace_address": [ + 7, + 0, + 0, + 0, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x9cef3", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0xa16be", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000024fbed1a498ae406b", + "to": "0x72c50e6fd8cc5506e166c273b6e814342aa0a3c1", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8061", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 7, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x72c50e6fd8cc5506e166c273b6e814342aa0a3c1", + "gas": "0x9d1aa", + "input": "0xa9059cbb000000000000000000000000095ccfedf134d20a033eea5ab124c03777e8b0b00000000000000000000000000000000000000000000000024fbed1a498ae406b", + "to": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5c7a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 7, + 1, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x9a8ca", + "input": "0xa9059cbb000000000000000000000000095ccfedf134d20a033eea5ab124c03777e8b0b00000000000000000000000000000000000000000000000024fbed1a498ae406b", + "to": "0x9b3be0cc5dd26fd0254088d03d8206792715588b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5ab1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 7, + 1, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0x99676", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000024fbed1a498ae406b", + "to": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x44a30", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 7, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x96e86", + "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000024fbed1a498ae406b", + "to": "0x9b3be0cc5dd26fd0254088d03d8206792715588b", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4486d", + "output": "0x" + }, + "subtraces": 9, + "trace_address": [ + 7, + 2, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x93882", + "input": "0x45d01e4a", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x113f", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 1, + "trace_address": [ + 7, + 2, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x9120d", + "input": "0x45d01e4a", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7c", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 3, + "trace_address": [ + 7, + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x8eadd", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x8e5f5", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 0, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x8e1ab", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 0, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x924fc", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x91e30", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x918d1", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x91322", + "input": "0xce8c42e8000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x38cf9", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 7, + 2, + 0, + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x8ed3f", + "input": "0xce8c42e8000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x38b36", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [ + 7, + 2, + 0, + 4, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x8c557", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x8bf7f", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x000000000000000000000000000000000000000000000da78e86e7e89cb0bb99" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x8babf", + "input": "0x38d07436000000000000000000000000000000000000000000000002878a822c2152bf960000000000000000000000000000000000000000000000000000000000000000", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x7ca7", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "gas": "0x87de2", + "input": "0xa9059cbb000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5acd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 2, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x83dd7", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x000000000000000000000000000000000000000000000002878a822c2152bf96" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x839b9", + "input": "0x958e2d31000000000000000000000000000000000000000000000000000000000000000b", + "to": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2e7ff", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 4, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "gas": "0x81544", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x000000000000000000000000000000000000000000000002878a822c2152bf96" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "gas": "0x80f54", + "input": "0x9dc29fac000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc50", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "gas": "0x800ea", + "input": "0xd9caed120000000000000000000000005b5cfe992adac0c9d48e05854b2d91c73a0038580000000000000000000000002db0e83599a91b508ac268a6197b8b14f5e72840000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x989aeb4d175e16225e39e87d0d97a3360524ad80", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x268fc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 3, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x989aeb4d175e16225e39e87d0d97a3360524ad80", + "gas": "0x7dda7", + "input": "0x70a08231000000000000000000000000989aeb4d175e16225e39e87d0d97a3360524ad80", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x989aeb4d175e16225e39e87d0d97a3360524ad80", + "gas": "0x7d8d4", + "input": "0x2e1a7d4d000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x20140", + "output": "0x" + }, + "subtraces": 6, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0x76612", + "input": "0xb26b238e", + "to": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fa", + "output": "0x0000000000000000000000000000000000000000000000000000000062f822f8" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0x76301", + "input": "0x2c4e722e", + "to": "0xd533a949740bb3306d119cc777fa900ba034cd52", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3c9", + "output": "0x00000000000000000000000000000000000000000000000065b1c3e2ddab672e" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0x75da1", + "input": "0x615e52370000000000000000000000002db0e83599a91b508ac268a6197b8b14f5e72840", + "to": "0x2f50d538606fa9edd2b11e2446beb18c9d5846bb", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6ae7", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0x63f4d", + "input": "0x70a08231000000000000000000000000989aeb4d175e16225e39e87d0d97a3360524ad80", + "to": "0x5f3b5dfeb7b28cdbd7faba78963ee202a494e2a2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x811", + "output": "0x0000000000000000000000000000000000000000009b2b4b27cd83787426dd54" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0x636a9", + "input": "0x18160ddd", + "to": "0x5f3b5dfeb7b28cdbd7faba78963ee202a494e2a2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xac2", + "output": "0x00000000000000000000000000000000000000000149f64907711aca0a5498d0" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2db0e83599a91b508ac268a6197b8b14f5e72840", + "gas": "0x61d3b", + "input": "0xa9059cbb000000000000000000000000989aeb4d175e16225e39e87d0d97a3360524ad80000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x585c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 1, + 5 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x989aeb4d175e16225e39e87d0d97a3360524ad80", + "gas": "0x5da8f", + "input": "0xa9059cbb000000000000000000000000f403c135812408bfbe8713b5a23a04b3d48aae31000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x585c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 2, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf403c135812408bfbe8713b5a23a04b3d48aae31", + "gas": "0x59c76", + "input": "0xa9059cbb000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x585c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 4, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x55804", + "input": "0xa9059cbb00000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xaa0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 4, + 0, + 5 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x59137", + "input": "0x45d01e4a", + "to": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x113f", + "output": "0x000000000000000000000000000000000000000000000da506fc65bc7b5dfc03" + }, + "subtraces": 1, + "trace_address": [ + 7, + 2, + 0, + 5 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x5795f", + "input": "0x45d01e4a", + "to": "0x1b836c9e935121dc2f6d0b296fce353ff01299ac", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xf7c", + "output": "0x000000000000000000000000000000000000000000000da506fc65bc7b5dfc03" + }, + "subtraces": 3, + "trace_address": [ + 7, + 2, + 0, + 5, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x56092", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 5, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x55baa", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0xe4de776c0ea0974bfa39b8cbb9491091c8cdc1ff", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1ea", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 5, + 0, + 1 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "gas": "0x55760", + "input": "0x70a08231000000000000000000000000000d02bb5e9ff7bd7aec0c37999b4d1031857704", + "to": "0x353e489311b21355461353fec2d02b73ef0ede7f", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1fe", + "output": "0x000000000000000000000000000000000000000000000da506fc65bc7b5dfc03" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 5, + 0, + 2 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x57db4", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x000000000000000000000000000000000000000000000002878a822c2152bf96" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 6 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x576ed", + "input": "0x70a0823100000000000000000000000029780c39164ebbd62e9ddde50c151810070140f2", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x000000000000000000000000000000000000000000000002878a822c2152bf96" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 7 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x29780c39164ebbd62e9ddde50c151810070140f2", + "gas": "0x56f11", + "input": "0xa9059cbb000000000000000000000000095ccfedf134d20a033eea5ab124c03777e8b0b0000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x585c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 7, + 2, + 0, + 8 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0x55b87", + "input": "0x70a08231000000000000000000000000095ccfedf134d20a033eea5ab124c03777e8b0b0", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x29a", + "output": "0x000000000000000000000000000000000000000000000002878a822c2152bf96" + }, + "subtraces": 0, + "trace_address": [ + 7, + 3 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x095ccfedf134d20a033eea5ab124c03777e8b0b0", + "gas": "0x55464", + "input": "0xa9059cbb000000000000000000000000b1abaac351e06d40441cf2cd97f6f0098e6473f2000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xaa0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 7, + 4 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x563c7", + "input": "0xa9059cbb000000000000000000000000a52093dc50f2596abadb56dc643630e61944aba9000000000000000000000000000000000000000000000002878a822c2152bf96", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x602c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 8 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x4f71b", + "input": "0x26d70211000000000000000000000000a52093dc50f2596abadb56dc643630e61944aba9000000000000000000000000000000000000000000000235def193d99a77e08d00000000000000000000000000000000000000000000000000000000606a9673000000000000000000000000000000000000000000000000000000006236f533000000000000000000000000000000000000000000000002878a822c2152bf970000000000000000000000000000000000000000000000000000000000000000", + "to": "0x63167f3dc4e4ef5db1f1717275d2d150a634b26e", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4fef", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 9 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x63167f3dc4e4ef5db1f1717275d2d150a634b26e", + "gas": "0x4df52", + "input": "0x141f64dc000000000000000000000000b1abaac351e06d40441cf2cd97f6f0098e6473f2000000000000000000000000a52093dc50f2596abadb56dc643630e61944aba9000000000000000000000000000000000000000000000235def193d99a77e08d00000000000000000000000000000000000000000000000000000000606a9673000000000000000000000000000000000000000000000000000000006236f533000000000000000000000000000000000000000000000002878a822c2152bf970000000000000000000000000000000000000000000000000000000000000000", + "to": "0x01c2fee5d6e76ec26162daaf4e336beed01f2651", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4b0c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 9, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x01c2fee5d6e76ec26162daaf4e336beed01f2651", + "gas": "0x4c991", + "input": "0x141f64dc000000000000000000000000b1abaac351e06d40441cf2cd97f6f0098e6473f2000000000000000000000000a52093dc50f2596abadb56dc643630e61944aba9000000000000000000000000000000000000000000000235def193d99a77e08d00000000000000000000000000000000000000000000000000000000606a9673000000000000000000000000000000000000000000000000000000006236f533000000000000000000000000000000000000000000000002878a822c2152bf970000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3c02841d50514d6b4c53bb44b467a79eef547295", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x4896", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 9, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x01c2fee5d6e76ec26162daaf4e336beed01f2651", + "gas": "0x496a7", + "input": "0x8da5cb5b", + "to": "0x8888801af4d980682e47f1a9036e589479e835c5", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x964", + "output": "0x00000000000000000000000001c2fee5d6e76ec26162daaf4e336beed01f2651" + }, + "subtraces": 0, + "trace_address": [ + 9, + 0, + 0, + 0 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x4a0c8", + "input": "0xa9059cbb000000000000000000000000976fdc5dfa145e3cbc690e9fef4a408642732952000000000000000000000000000000000000000000000259dfdbe6d2884368ce", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x602c", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 10 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x43eaf", + "input": "0x38af3eed", + "to": "0xd817ec04440c51ec9b34b9625357e308b6a06348", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x938", + "output": "0x0000000000000000000000005b3c81c86d17786255904c316bfcb38a46146ef8" + }, + "subtraces": 0, + "trace_address": [ + 11 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2", + "gas": "0x42e98", + "input": "0xa9059cbb0000000000000000000000005b3c81c86d17786255904c316bfcb38a46146ef8000000000000000000000000000000000000000000000004001a09381a6bf2a4", + "to": "0x5b5cfe992adac0c9d48e05854b2d91c73a003858", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1d60", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 12 + ], + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1af94e469283cdd45e52f6c43b4ffdfb0393f14f", + "gas": "0x243b4", + "input": "0xa9059cbb00000000000000000000000039f6a6c85d39d5abad8a398310c52e7c374f2ba30000000000000000000000000000000000000000000000000000000023c34600", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x643c367d0040701b99a890a65529493ff45661bd1c8d4526c98d291798979e44", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8f63dec474c3e92f074508e86901be7e939dfc18", + "gas": "0x0", + "input": "0x", + "to": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3", + "value": "0x44c722a35e34000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x0c1586e5cc6965503a3bc4531bf80b2fb8d8ed36cd06da8b3a45166d7f0b3760", + "transaction_position": 55, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3c6f14e4d4d79b79d8cf6f32bb2ea500940c1ee1", + "gas": "0x0", + "input": "0x", + "to": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3", + "value": "0x55e56c6d6574c00" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x0d8ff0a7c97300c1fdc8ca4f61e7893c00ff0e7af32b104ca2adf57cebe5d40b", + "transaction_position": 56, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xab7d2ae3b2f9ba40a93e825e10e09ce9de570469", + "gas": "0x3ff0", + "input": "0xa9059cbb0000000000000000000000001e1b71e53db555165f27bd12c0ac00adb9c7035300000000000000000000000000000000000000000000000471fa858b9e080000", + "to": "0xf1ca9cb74685755965c7458528a36934df52a3ef", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3ce0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xbb4414bb434c869e9f01605fd7552015b82c8794d646c762b16d1243144ffc1f", + "transaction_position": 57, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb4bf292a2ae087a4a539a6242075dfd1f28fc3f4", + "gas": "0x0", + "input": "0x", + "to": "0x6d175ecf7ca2541ebd1f5725cbfdbc22cf787435", + "value": "0x9aee61bf2bd4000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4c9fd4696b53e2f9eb13f09ffcec83c64db5e9c546d236fa1a925e394929c649", + "transaction_position": 58, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xbf16aeb7b04de0d0d41bc94c9030731ade4cd555", + "gas": "0x0", + "input": "0x", + "to": "0xe70419ea66b3c80e2027f3f7bbfdc2663081a3e1", + "value": "0x2ccc0bcb2254000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x6618d1007b004543d3492cb00217973efec12decb6948777dc408aadf0208c30", + "transaction_position": 59, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x92d4f44074a12115942ee1e970c6d7c3ac85f440", + "gas": "0x113d2", + "input": "0xa9059cbb000000000000000000000000ceb0e1abd4c5e1d281f881fa6620a91ab33424be0000000000000000000000000000000000000000000000000000000052469f40", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x5fb5", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xd90d826501da0dddaba7dd7cf9db3e988053d9ec09bb62f9fe47d0a5dcce7a8d", + "transaction_position": 60, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd7361e7cbd2ae66aef2def4949a26b19af8629ee", + "gas": "0xc8c9", + "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x6949", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe49775919b4e3db27c6b023641609fb11b8fdf6dbd73970169d6c9fb711bebf3", + "transaction_position": 61, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa302ebabbb1a2f6a3e1008bfa98c4c2f03b98b00", + "gas": "0x121e1", + "input": "0x42842e0e000000000000000000000000a302ebabbb1a2f6a3e1008bfa98c4c2f03b98b0000000000000000000000000028ecea27f868c880d189a1c3c60c1a9264dacb3900000000000000000000000000000000000000000000000000000000000f424c", + "to": "0x1b829b926a14634d36625e60165c0770c09d02b2", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x121e1", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x370567ab65887838a45713059c0bae846f8b5b01c003e308969d65bfd513ed85", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5012774f40bf46c513e38f56927c7d2417dba2f6", + "gas": "0x3ff0", + "input": "0xa9059cbb0000000000000000000000001e1b71e53db555165f27bd12c0ac00adb9c7035300000000000000000000000000000000000000000000000471fa858b9e080000", + "to": "0xf1ca9cb74685755965c7458528a36934df52a3ef", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3ce0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x2b9436c710aefa62f70f02c0b464d8c4afedc0661d54726e7b1eb6029059048c", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3b51b4cd1043c3caba04f0cedb46add945312b0c", + "gas": "0x2c60f", + "input": "0x27cc37b00000000000000000000000000000000000000000000000000000000001312d0006f89f35fed9f5d9f2fc0c73a2fa2710f3040ac2d39387cb8bad382957e9e99d000000000000000000000000000000000000000000000000000000000002b16b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000415b6afd980b4360447893839be68308413af8d005ce7a94697ed27ff2e3a0d83b30539b25bd550f541d726fba105676c5b72ae59f1e63daa6a5ff46b450878a7c1b00000000000000000000000000000000000000000000000000000000000000", + "to": "0x8e8bd01b5a9eb272cc3892a2e40e64a716aa2a40", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x2ba3c", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8e8bd01b5a9eb272cc3892a2e40e64a716aa2a40", + "gas": "0x2901d", + "input": "0xdd2414d40000000000000000000000003b51b4cd1043c3caba04f0cedb46add945312b0c06f89f35fed9f5d9f2fc0c73a2fa2710f3040ac2d39387cb8bad382957e9e99d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000415b6afd980b4360447893839be68308413af8d005ce7a94697ed27ff2e3a0d83b30539b25bd550f541d726fba105676c5b72ae59f1e63daa6a5ff46b450878a7c1b00000000000000000000000000000000000000000000000000000000000000", + "to": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xadcd", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "gas": "0x27241", + "input": "0xdd2414d40000000000000000000000003b51b4cd1043c3caba04f0cedb46add945312b0c06f89f35fed9f5d9f2fc0c73a2fa2710f3040ac2d39387cb8bad382957e9e99d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000415b6afd980b4360447893839be68308413af8d005ce7a94697ed27ff2e3a0d83b30539b25bd550f541d726fba105676c5b72ae59f1e63daa6a5ff46b450878a7c1b00000000000000000000000000000000000000000000000000000000000000", + "to": "0x2c0df87e073755139101b35c0a51e065291cc2d3", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x99bb", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "gas": "0x25351", + "input": "0xdd2414d40000000000000000000000003b51b4cd1043c3caba04f0cedb46add945312b0c06f89f35fed9f5d9f2fc0c73a2fa2710f3040ac2d39387cb8bad382957e9e99d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000415b6afd980b4360447893839be68308413af8d005ce7a94697ed27ff2e3a0d83b30539b25bd550f541d726fba105676c5b72ae59f1e63daa6a5ff46b450878a7c1b00000000000000000000000000000000000000000000000000000000000000", + "to": "0x3fed7bf5bf3e738bc30fbe61b048fdcb82368545", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x8418", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8e8bd01b5a9eb272cc3892a2e40e64a716aa2a40", + "gas": "0x1d667", + "input": "0x23b872dd0000000000000000000000003b51b4cd1043c3caba04f0cedb46add945312b0c0000000000000000000000008e8bd01b5a9eb272cc3892a2e40e64a716aa2a400000000000000000000000000000000000000000000000000000000001312d00", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xc348", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 1 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x1b32c", + "input": "0x23b872dd0000000000000000000000003b51b4cd1043c3caba04f0cedb46add945312b0c0000000000000000000000008e8bd01b5a9eb272cc3892a2e40e64a716aa2a400000000000000000000000000000000000000000000000000000000001312d00", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xa6c9", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 1, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8e8bd01b5a9eb272cc3892a2e40e64a716aa2a40", + "gas": "0x112a5", + "input": "0x2505c3d906f89f35fed9f5d9f2fc0c73a2fa2710f3040ac2d39387cb8bad382957e9e99d02893294412a4c8f915f75892b395ebbf6859ec246ec365c3b1f56f47c3a0a5d000000000000000000000000000000000000000000000000000000000002b16b0000000000000000000000000000000000000000000000000000000001312d00", + "to": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10a90", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 2 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "gas": "0x10c3e", + "input": "0x2505c3d906f89f35fed9f5d9f2fc0c73a2fa2710f3040ac2d39387cb8bad382957e9e99d02893294412a4c8f915f75892b395ebbf6859ec246ec365c3b1f56f47c3a0a5d000000000000000000000000000000000000000000000000000000000002b16b0000000000000000000000000000000000000000000000000000000001312d00", + "to": "0x2c0df87e073755139101b35c0a51e065291cc2d3", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x10844", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "gas": "0x1040d", + "input": "0x2505c3d906f89f35fed9f5d9f2fc0c73a2fa2710f3040ac2d39387cb8bad382957e9e99d02893294412a4c8f915f75892b395ebbf6859ec246ec365c3b1f56f47c3a0a5d000000000000000000000000000000000000000000000000000000000002b16b0000000000000000000000000000000000000000000000000000000001312d00", + "to": "0x3fed7bf5bf3e738bc30fbe61b048fdcb82368545", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x1040d", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 2, + 0, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "gas": "0x6058", + "input": "0x70a08231000000000000000000000000d54f502e184b6b739d7d27a6410a67dc462d69c8", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0xcf3", + "output": "0x00000000000000000000000000000000000000000000000000037451f8608f1a" + }, + "subtraces": 1, + "trace_address": [ + 2, + 0, + 0, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x5bfd", + "input": "0x70a08231000000000000000000000000d54f502e184b6b739d7d27a6410a67dc462d69c8", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x9e1", + "output": "0x00000000000000000000000000000000000000000000000000037451f8608f1a" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "gas": "0x4f7c", + "input": "0x23b872dd0000000000000000000000008e8bd01b5a9eb272cc3892a2e40e64a716aa2a40000000000000000000000000d54f502e184b6b739d7d27a6410a67dc462d69c80000000000000000000000000000000000000000000000000000000001312d00", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x3ce8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 2, + 0, + 0, + 1 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x4b5b", + "input": "0x23b872dd0000000000000000000000008e8bd01b5a9eb272cc3892a2e40e64a716aa2a40000000000000000000000000d54f502e184b6b739d7d27a6410a67dc462d69c80000000000000000000000000000000000000000000000000000000001312d00", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x39cd", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xd54f502e184b6b739d7d27a6410a67dc462d69c8", + "gas": "0x112e", + "input": "0x70a08231000000000000000000000000d54f502e184b6b739d7d27a6410a67dc462d69c8", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x523", + "output": "0x00000000000000000000000000000000000000000000000000037451f991bc1a" + }, + "subtraces": 1, + "trace_address": [ + 2, + 0, + 0, + 2 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0xe0f", + "input": "0x70a08231000000000000000000000000d54f502e184b6b739d7d27a6410a67dc462d69c8", + "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", + "value": "0x0" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": { + "gasUsed": "0x211", + "output": "0x00000000000000000000000000000000000000000000000000037451f991bc1a" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0, + 0, + 2, + 0 + ], + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "author": "0x1ad91ee08f21be3de0ba2ba6918e714da6b45836", + "rewardType": "block", + "value": "0x1bc16d674ec80000" + }, + "block_hash": "0xd37c89e8cd5ddddeeeb3b38f2d1a7881a899a172c9bf05814616d68a7b5c2fce", + "block_number": 14422990, + "result": null, + "subtraces": 0, + "trace_address": [], + "transaction_hash": null, + "transaction_position": null, + "type": "reward", + "error": null + } + ], + "receipts": [ + { + "block_number": 14422990, + "transaction_hash": "0x3fa965ce5c01c33881a6b9b92cc0e39edfc4ad68c1ae1beb2bb1b813d4642470", + "transaction_index": 0, + "gas_used": 719017, + "effective_gas_price": 11233106669, + "cumulative_gas_used": 719017, + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9" + }, + { + "block_number": 14422990, + "transaction_hash": "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f", + "transaction_index": 1, + "gas_used": 674096, + "effective_gas_price": 11233106669, + "cumulative_gas_used": 1393113, + "to": "0x811213d2d0e26ecf65714074cef59119dd7f36d9" + }, + { + "block_number": 14422990, + "transaction_hash": "0xe3821b466702cde4fbd233a0bdc5561b7258abce6d402adb4e562bcecf3eb076", + "transaction_index": 2, + "gas_used": 35145, + "effective_gas_price": 30000000000, + "cumulative_gas_used": 1428258, + "to": "0x31c8eacbffdd875c74b94b077895bd78cf1e64a3" + }, + { + "block_number": 14422990, + "transaction_hash": "0x4e29abcd79ef888a37de66168429046cbb4bb11d1f25daca568aee4d3df9f5e0", + "transaction_index": 3, + "gas_used": 21000, + "effective_gas_price": 16665595696, + "cumulative_gas_used": 1449258, + "to": "0x63a9dbce75413036b2b778e670aabd4493aaf9f3" + }, + { + "block_number": 14422990, + "transaction_hash": "0x36f360d896d923e9c72133933a331915b198a48199b3f0d76476ae2288bf0ee1", + "transaction_index": 4, + "gas_used": 46109, + "effective_gas_price": 16337764263, + "cumulative_gas_used": 1495367, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0xc26b9dd30c7ebf93df9227bd9a67fbbfbe06d909d6e63bcba33418c24ea9426b", + "transaction_index": 5, + "gas_used": 46109, + "effective_gas_price": 16000000000, + "cumulative_gas_used": 1541476, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0xad33d289f7641154ae37a6b279e903e271fc6f670e840041752dee30eb98c069", + "transaction_index": 6, + "gas_used": 65028, + "effective_gas_price": 13733106668, + "cumulative_gas_used": 1606504, + "to": "0x495f947276749ce646f68ac8c248420045cb7b5e" + }, + { + "block_number": 14422990, + "transaction_hash": "0x69932ee76933f63cb0a470cbe19e8fa3402c17c379a104d873cad36a32d91148", + "transaction_index": 7, + "gas_used": 58391, + "effective_gas_price": 13733106668, + "cumulative_gas_used": 1664895, + "to": "0xf5c9f957705bea56a7e806943f98f7777b995826" + }, + { + "block_number": 14422990, + "transaction_hash": "0x7f219ce4de5cce37f160ca40ba5361c1f6a7c09e7b905d43eb590f90a0a3ba4f", + "transaction_index": 8, + "gas_used": 46233, + "effective_gas_price": 13733106668, + "cumulative_gas_used": 1711128, + "to": "0xe14a0819039ed422f24d049b5c37803d8c523b7e" + }, + { + "block_number": 14422990, + "transaction_hash": "0x12fd064c19cb3baafdc853e6213d28f90526701147c0247ff49f11b71cc27580", + "transaction_index": 9, + "gas_used": 160001, + "effective_gas_price": 13733106668, + "cumulative_gas_used": 1871129, + "to": "0x83a8d39de53f4b679154fb19beec37288bb96f28" + }, + { + "block_number": 14422990, + "transaction_hash": "0x717ec811a5764a56552517edac885e1e79d9d47fe6ea755d68b27a34f5273415", + "transaction_index": 10, + "gas_used": 21000, + "effective_gas_price": 13233106668, + "cumulative_gas_used": 1892129, + "to": "0xa5e6b89f32981540141bef9ec40a5196ce1edad4" + }, + { + "block_number": 14422990, + "transaction_hash": "0xdc74a9c8a28016c12f9551099519e36ffaa41d9e1b83ae49e89496b7461d3660", + "transaction_index": 11, + "gas_used": 21000, + "effective_gas_price": 13233106668, + "cumulative_gas_used": 1913129, + "to": "0x49747b87837b6ad0afd5742b0f894aa8097a7add" + }, + { + "block_number": 14422990, + "transaction_hash": "0x4203b5ce158464b7db22ebf083209b0a335ffd8795eeb93ff6769706074b26d1", + "transaction_index": 12, + "gas_used": 21000, + "effective_gas_price": 13000000000, + "cumulative_gas_used": 1934129, + "to": "0x3fb0b1e4ec80d572b13f27ea281832c6861e6e00" + }, + { + "block_number": 14422990, + "transaction_hash": "0xd08e38e0c1d12e9cf72135e749222ef8d63093ddfeb94d007d19b8ed80258a6c", + "transaction_index": 13, + "gas_used": 51993, + "effective_gas_price": 13000000000, + "cumulative_gas_used": 1986122, + "to": "0x41e3d4b3a79e464f65fffe18aa063de983ef97de" + }, + { + "block_number": 14422990, + "transaction_hash": "0x05ca415acb060958c03bf07569317fd8eb1c685c811d5f751cb5d5c8018e7800", + "transaction_index": 14, + "gas_used": 359836, + "effective_gas_price": 12963570898, + "cumulative_gas_used": 2345958, + "to": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9" + }, + { + "block_number": 14422990, + "transaction_hash": "0xcea5758f4ed70dd97b9402c51b15f630439f576c653441ed2fd2b9820a10ba72", + "transaction_index": 15, + "gas_used": 49044, + "effective_gas_price": 12963570898, + "cumulative_gas_used": 2395002, + "to": "0x012c47e1f0bd3b4b0a6aabc8f010345d31028323" + }, + { + "block_number": 14422990, + "transaction_hash": "0x1561611e65ec03dffbee35dc3516553af16f424a43e479ce045c3558022eb8f0", + "transaction_index": 16, + "gas_used": 63209, + "effective_gas_price": 12940314791, + "cumulative_gas_used": 2458211, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0x3f5f7027cb94da58e4739e7157436e04041815051a7dcb6b23cd354b6ecca3a7", + "transaction_index": 17, + "gas_used": 69518, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 2527729, + "to": "0xfbddadd80fe7bda00b901fbaf73803f2238ae655" + }, + { + "block_number": 14422990, + "transaction_hash": "0x060e715c93a20b759aae50a0bc65ce41c529dd462017ca81cb72fe672d217f84", + "transaction_index": 18, + "gas_used": 62023, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 2589752, + "to": "0xb76fbbb30e31f2c3bdaa2466cfb1cfe39b220d06" + }, + { + "block_number": 14422990, + "transaction_hash": "0x24fa8d4e9d6e3a2f1a20675f83a22f49361dc6f70d15654f598986a3a7a04d44", + "transaction_index": 19, + "gas_used": 21572, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 2611324, + "to": "0x7b977b8980b17b6f6249d3c3547cbe955aad2108" + }, + { + "block_number": 14422990, + "transaction_hash": "0x33629725f6499931c458c669765371403d1c5ad12b60a636b9e08af993854779", + "transaction_index": 20, + "gas_used": 60311, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 2671635, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 14422990, + "transaction_hash": "0x83aa21d75192c1c253649b13b2f1fe2512245b33c9ce55374ed90157adcff442", + "transaction_index": 21, + "gas_used": 21000, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 2692635, + "to": "0x4a9036c2a1870a57270602995981585f01c8f18d" + }, + { + "block_number": 14422990, + "transaction_hash": "0x18d39bd7da38db2bf4b36bedfc665e70fe7642285cd82e69600d1826bfd47896", + "transaction_index": 22, + "gas_used": 230066, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 2922701, + "to": "0x7f268357a8c2552623316e2562d90e642bb538e5" + }, + { + "block_number": 14422990, + "transaction_hash": "0x07db7d3b6cd9440ab6b977a95619e5cf04af76c7f33f73d4addb95fe17494ca2", + "transaction_index": 23, + "gas_used": 79483, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 3002184, + "to": "0x0c6d898ac945e493d25751ea43be2c8beb881d8c" + }, + { + "block_number": 14422990, + "transaction_hash": "0x73107f684c908dfff484643f9621eb8e1a412fa2bbd44d9dd254441ac6069131", + "transaction_index": 24, + "gas_used": 199650, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 3201834, + "to": "0x7f268357a8c2552623316e2562d90e642bb538e5" + }, + { + "block_number": 14422990, + "transaction_hash": "0xf9bea1b89d7b78411b158ec48e0a9b44b5af0bf4a300606adb78c06d8397694e", + "transaction_index": 25, + "gas_used": 199168, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 3401002, + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" + }, + { + "block_number": 14422990, + "transaction_hash": "0x4e11f66e17db990c95cec547308f96bca60b8b301527f59ec253a07764b445a8", + "transaction_index": 26, + "gas_used": 229442, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 3630444, + "to": "0x7f268357a8c2552623316e2562d90e642bb538e5" + }, + { + "block_number": 14422990, + "transaction_hash": "0xd65473f258b5d58802f53df3dd93e864e6a4903c51776408e65fedccac5b7493", + "transaction_index": 27, + "gas_used": 51687, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 3682131, + "to": "0x33d20575f20c6a1881f8ab08e69f6fbaffaeedf2" + }, + { + "block_number": 14422990, + "transaction_hash": "0x4a8f26e3fb4b1fa023832075d9ab8b9dce4cf110900f7b61a953c945861f658c", + "transaction_index": 28, + "gas_used": 132965, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 3815096, + "to": "0xcda72070e455bb31c7690a170224ce43623d0b6f" + }, + { + "block_number": 14422990, + "transaction_hash": "0xb4bbd966298cd0862802062ee8911bce17c083e2c56f933eddeaed12b8658c4d", + "transaction_index": 29, + "gas_used": 61023, + "effective_gas_price": 12573643712, + "cumulative_gas_used": 3876119, + "to": "0x9733f49d577da2b6705ca173382c0e3cdfff2a48" + }, + { + "block_number": 14422990, + "transaction_hash": "0xa3aaa8965ccc2e191a1147ba3413b57c85d511620f482ef10c0eccc09cff3c34", + "transaction_index": 30, + "gas_used": 61023, + "effective_gas_price": 13157388152, + "cumulative_gas_used": 3937142, + "to": "0x9733f49d577da2b6705ca173382c0e3cdfff2a48" + }, + { + "block_number": 14422990, + "transaction_hash": "0xcf6ab32ea38d50b49df2adee844cba659bf47116ca8ecf968f1ee449a0bec2b2", + "transaction_index": 31, + "gas_used": 207529, + "effective_gas_price": 12573643712, + "cumulative_gas_used": 4144671, + "to": "0xeefba1e63905ef1d7acba5a8513c70307c1ce441" + }, + { + "block_number": 14422990, + "transaction_hash": "0x3b36907753b8aec27fa2d03ecf2d98207bf424943526ed02dd97eea20cca9d4b", + "transaction_index": 32, + "gas_used": 126027, + "effective_gas_price": 12526837582, + "cumulative_gas_used": 4270698, + "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f" + }, + { + "block_number": 14422990, + "transaction_hash": "0xe82edb3e7b7a5ed9b013766c59e7fc0acb8a95512b7a70e76010795bc9dcf28f", + "transaction_index": 33, + "gas_used": 21000, + "effective_gas_price": 12474759627, + "cumulative_gas_used": 4291698, + "to": "0x0cf49d3cd6be7f7a1d1437b7f84bd52621d91c61" + }, + { + "block_number": 14422990, + "transaction_hash": "0xb4652ba452d302f797cdaa77723bad50de5dd2add11c6451182001e1352d5d16", + "transaction_index": 34, + "gas_used": 35209, + "effective_gas_price": 12425917494, + "cumulative_gas_used": 4326907, + "to": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72" + }, + { + "block_number": 14422990, + "transaction_hash": "0xda7404a66227c8cba4d26dacb0e6c4150b4703095d6d0dbdc2536016d49fdf12", + "transaction_index": 35, + "gas_used": 41309, + "effective_gas_price": 12425917494, + "cumulative_gas_used": 4368216, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0x6cad61fadd930a31ee3a205ee22f703be2eb113ea9cf13ee49d5b2c3774be7cd", + "transaction_index": 36, + "gas_used": 41297, + "effective_gas_price": 12425917494, + "cumulative_gas_used": 4409513, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0x8bc7f69338840f97ad86d48006bd81362c0810653574147698523d66581a5e3b", + "transaction_index": 37, + "gas_used": 21000, + "effective_gas_price": 12425917494, + "cumulative_gas_used": 4430513, + "to": "0x714c9bd6c38026e58e66f7638f2200c61cfbc645" + }, + { + "block_number": 14422990, + "transaction_hash": "0x2daed152f4e3487b1c24cdfe3a765a5f1bfbd5397837c8a5cbe5e4412a709df9", + "transaction_index": 38, + "gas_used": 21000, + "effective_gas_price": 12425917494, + "cumulative_gas_used": 4451513, + "to": "0xf0d9fcb4fefdbd3e7929374b4632f8ad511bd7e3" + }, + { + "block_number": 14422990, + "transaction_hash": "0x695f0f80c9a2fdb8c7dd2e5b99deaab7f64f40be0fb95abf0ff49100ffd51486", + "transaction_index": 39, + "gas_used": 21000, + "effective_gas_price": 12425917494, + "cumulative_gas_used": 4472513, + "to": "0xf0d9fcb4fefdbd3e7929374b4632f8ad511bd7e3" + }, + { + "block_number": 14422990, + "transaction_hash": "0x30d592c46466a631e22cfe60d9a70cfdcae5004da7a7b18cf6d33fd742185121", + "transaction_index": 40, + "gas_used": 80896, + "effective_gas_price": 12400000000, + "cumulative_gas_used": 4553409, + "to": "0x45804880de22913dafe09f4980848ece6ecbaf78" + }, + { + "block_number": 14422990, + "transaction_hash": "0x297ede05e27e35c99c24cae6977c87475227e037fe5b3609784c7363a3364fc0", + "transaction_index": 41, + "gas_used": 397602, + "effective_gas_price": 12282606621, + "cumulative_gas_used": 4951011, + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1" + }, + { + "block_number": 14422990, + "transaction_hash": "0x36fb4fec44a394531b888c225c4116cf9a7a9c2a5c2798b525478ee6424577a4", + "transaction_index": 42, + "gas_used": 23707, + "effective_gas_price": 12733106668, + "cumulative_gas_used": 4974718, + "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1" + }, + { + "block_number": 14422990, + "transaction_hash": "0x8a1c9fc3de6c7f36a3f419cf9b9a96062cea7218b5c43d8decb902ff5a4a7e86", + "transaction_index": 43, + "gas_used": 124374, + "effective_gas_price": 12282606621, + "cumulative_gas_used": 5099092, + "to": "0x68b3465833fb72a70ecdf485e0e4c7bd8665fc45" + }, + { + "block_number": 14422990, + "transaction_hash": "0xf78d666d774831b5fe2c697ba844e5720b50d59d3032eb3de8f13916df8bb4e4", + "transaction_index": 44, + "gas_used": 46109, + "effective_gas_price": 12233106668, + "cumulative_gas_used": 5145201, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0x2bce28413236539ae1817b52ae9bf96cea88255dfda0549db59b9041899ba99f", + "transaction_index": 45, + "gas_used": 104047, + "effective_gas_price": 12226221253, + "cumulative_gas_used": 5249248, + "to": "0xabea9132b05a70803a4e85094fd0e1800777fbef" + }, + { + "block_number": 14422990, + "transaction_hash": "0x7726cef3bb7cb1b0184310ed08e1fc368985417c5bd784af2fa08608900056f4", + "transaction_index": 46, + "gas_used": 270102, + "effective_gas_price": 12210206248, + "cumulative_gas_used": 5519350, + "to": "0xdd257067581bb12d9d37c24bc7ad87ee41db74b9" + }, + { + "block_number": 14422990, + "transaction_hash": "0x6b62c3c013bc1c719e78cc3b14fca3b0e620eb56ab10e6d28c4fd26b95678354", + "transaction_index": 47, + "gas_used": 46109, + "effective_gas_price": 12175177289, + "cumulative_gas_used": 5565459, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0x650ed8658f4ac2c61d4a68e52baddc723058982b4e8daf2e052e7c36f3215a31", + "transaction_index": 48, + "gas_used": 21000, + "effective_gas_price": 12175177289, + "cumulative_gas_used": 5586459, + "to": "0x40f1c479cb6f98095965d35c5c6c39f92a685e77" + }, + { + "block_number": 14422990, + "transaction_hash": "0x2a5eebf11b3a6e4a3d3cd6ba74ba00b93d08415d33d6582219e75ad303587b1f", + "transaction_index": 49, + "gas_used": 46267, + "effective_gas_price": 12100000000, + "cumulative_gas_used": 5632726, + "to": "0x283af0b28c62c092c9727f1ee09c02ca627eb7f5" + }, + { + "block_number": 14422990, + "transaction_hash": "0xa566858c674056b53068029adc6d48c92079f4d9b3ada749d962cfcee2fd09fe", + "transaction_index": 50, + "gas_used": 41309, + "effective_gas_price": 12050000000, + "cumulative_gas_used": 5674035, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0xb6229b68d24b4f482611b392d0a168b8b72893120138ac6c93ab846ea3abf25f", + "transaction_index": 51, + "gas_used": 21000, + "effective_gas_price": 12050000000, + "cumulative_gas_used": 5695035, + "to": "0x80c67432656d59144ceff962e8faf8926599bcf8" + }, + { + "block_number": 14422990, + "transaction_hash": "0xafc627b72c9dca1a1f803ff81c723d2dc85af1f406bb858cf92a25f1ccfc8cb7", + "transaction_index": 52, + "gas_used": 96748, + "effective_gas_price": 12050000000, + "cumulative_gas_used": 5791783, + "to": "0xa0c68c638235ee32657e8f720a23cec1bfc77c77" + }, + { + "block_number": 14422990, + "transaction_hash": "0xff54f362fc53d182f38d6f52a7e4fdc2a7a8ee6d54b4e1fd942e69fb6eb281a9", + "transaction_index": 53, + "gas_used": 1059610, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 6851393, + "to": "0xb1abaac351e06d40441cf2cd97f6f0098e6473f2" + }, + { + "block_number": 14422990, + "transaction_hash": "0x643c367d0040701b99a890a65529493ff45661bd1c8d4526c98d291798979e44", + "transaction_index": 54, + "gas_used": 41297, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 6892690, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0x0c1586e5cc6965503a3bc4531bf80b2fb8d8ed36cd06da8b3a45166d7f0b3760", + "transaction_index": 55, + "gas_used": 21000, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 6913690, + "to": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3" + }, + { + "block_number": 14422990, + "transaction_hash": "0x0d8ff0a7c97300c1fdc8ca4f61e7893c00ff0e7af32b104ca2adf57cebe5d40b", + "transaction_index": 56, + "gas_used": 21000, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 6934690, + "to": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3" + }, + { + "block_number": 14422990, + "transaction_hash": "0xbb4414bb434c869e9f01605fd7552015b82c8794d646c762b16d1243144ffc1f", + "transaction_index": 57, + "gas_used": 32416, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 6967106, + "to": "0xf1ca9cb74685755965c7458528a36934df52a3ef" + }, + { + "block_number": 14422990, + "transaction_hash": "0x4c9fd4696b53e2f9eb13f09ffcec83c64db5e9c546d236fa1a925e394929c649", + "transaction_index": 58, + "gas_used": 21000, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 6988106, + "to": "0x6d175ecf7ca2541ebd1f5725cbfdbc22cf787435" + }, + { + "block_number": 14422990, + "transaction_hash": "0x6618d1007b004543d3492cb00217973efec12decb6948777dc408aadf0208c30", + "transaction_index": 59, + "gas_used": 21000, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 7009106, + "to": "0xe70419ea66b3c80e2027f3f7bbfdc2663081a3e1" + }, + { + "block_number": 14422990, + "transaction_hash": "0xd90d826501da0dddaba7dd7cf9db3e988053d9ec09bb62f9fe47d0a5dcce7a8d", + "transaction_index": 60, + "gas_used": 46109, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 7055215, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0xe49775919b4e3db27c6b023641609fb11b8fdf6dbd73970169d6c9fb711bebf3", + "transaction_index": 61, + "gas_used": 48897, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 7104112, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 14422990, + "transaction_hash": "0x370567ab65887838a45713059c0bae846f8b5b01c003e308969d65bfd513ed85", + "transaction_index": 62, + "gas_used": 86561, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 7190673, + "to": "0x1b829b926a14634d36625e60165c0770c09d02b2" + }, + { + "block_number": 14422990, + "transaction_hash": "0x2b9436c710aefa62f70f02c0b464d8c4afedc0661d54726e7b1eb6029059048c", + "transaction_index": 63, + "gas_used": 32416, + "effective_gas_price": 12000000000, + "cumulative_gas_used": 7223089, + "to": "0xf1ca9cb74685755965c7458528a36934df52a3ef" + }, + { + "block_number": 14422990, + "transaction_hash": "0x43aeb274f76c1cce22a3c8130ba7557c295aa37eef104c4c664b98bded74cab9", + "transaction_index": 64, + "gas_used": 174596, + "effective_gas_price": 11233118855, + "cumulative_gas_used": 7397685, + "to": "0x8e8bd01b5a9eb272cc3892a2e40e64a716aa2a40" + } + ] +} \ No newline at end of file diff --git a/tests/test_ironbank.py b/tests/test_ironbank.py new file mode 100644 index 0000000..2933af7 --- /dev/null +++ b/tests/test_ironbank.py @@ -0,0 +1,65 @@ +from mev_inspect.classifiers.trace import TraceClassifier +from mev_inspect.liquidations import get_liquidations +from mev_inspect.schemas.liquidations import Liquidation +from mev_inspect.schemas.prices import ETH_TOKEN_ADDRESS +from mev_inspect.schemas.traces import Protocol +from tests.utils import load_test_block + +# ironbank_markets = load_ironbank_markets() + + +# def test_cream_ether_liquidation(trace_classifier: TraceClassifier): +# block_number = 13404932 +# transaction_hash = ( +# "0xf5f3df6ec9b51e8e88d0d9078b04373742294530b6bcb9be045525fcab71b915" +# ) + +# liquidations = [ +# Liquidation( +# liquidated_user="0x44f9636ef615a73688a84da1d714a40be503157d", +# liquidator_user="0x949ed86c385d191e96af136e2024d96e467d7651", +# debt_token_address=ETH_TOKEN_ADDRESS, +# debt_purchase_amount=1002704779407853614, +# received_amount=417926832636968, +# received_token_address="0x2db6c82ce72c8d7d770ba1b5f5ed0b6e075066d6", +# protocol=Protocol.cream, +# transaction_hash=transaction_hash, +# trace_address=[1, 0, 5, 1], +# block_number=block_number, +# ) +# ] +# block = load_test_block(block_number) +# classified_traces = trace_classifier.classify(block.traces) +# result = get_liquidations(classified_traces) + +# for liquidation in liquidations: +# assert liquidation in result + + +def test_ironbank_token_liquidation(trace_classifier: TraceClassifier): + block_number = 14422990 + transaction_hash = ( + "0xb7b6192174289b765f318d18ad8dbd2e51a55fa359fd580ffa59d9e4693a4b9f" + ) + + liquidations = [ + Liquidation( + liquidated_user="0x1791d5ebbdfd565f136e60a3c43269b148f92b44", + liquidator_user="0x811213d2d0e26ecf65714074cef59119dd7f36d9", + debt_token_address="0xfafdf0c4c1cb09d430bf88c75d88bb46dae09967", + debt_purchase_amount=398544459931981264561, + received_amount=75246788, + received_token_address="0x8fc8bfd80d6a9f17fb98a373023d72531792b431", + protocol=Protocol.ironbank, + transaction_hash=transaction_hash, + trace_address=[], + block_number=block_number, + ) + ] + block = load_test_block(block_number) + classified_traces = trace_classifier.classify(block.traces) + result = get_liquidations(classified_traces) + + for liquidation in liquidations: + print(liquidation) + assert liquidation in result From 2469c6867c006f2926225d2c712470ea33bd3d56 Mon Sep 17 00:00:00 2001 From: Matthew Gonzalez Date: Sun, 8 May 2022 02:37:24 -0700 Subject: [PATCH 6/8] Change ABI Names; Fix trace address for test --- mev_inspect/abis/ironbank/{CEther.json => CYEther.json} | 0 mev_inspect/abis/ironbank/{CToken.json => CYToken.json} | 0 .../abis/ironbank/{Comptroller.json => Unitroller.json} | 0 mev_inspect/classifiers/specs/ironbank.py | 4 ++-- tests/test_ironbank.py | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) rename mev_inspect/abis/ironbank/{CEther.json => CYEther.json} (100%) rename mev_inspect/abis/ironbank/{CToken.json => CYToken.json} (100%) rename mev_inspect/abis/ironbank/{Comptroller.json => Unitroller.json} (100%) diff --git a/mev_inspect/abis/ironbank/CEther.json b/mev_inspect/abis/ironbank/CYEther.json similarity index 100% rename from mev_inspect/abis/ironbank/CEther.json rename to mev_inspect/abis/ironbank/CYEther.json diff --git a/mev_inspect/abis/ironbank/CToken.json b/mev_inspect/abis/ironbank/CYToken.json similarity index 100% rename from mev_inspect/abis/ironbank/CToken.json rename to mev_inspect/abis/ironbank/CYToken.json diff --git a/mev_inspect/abis/ironbank/Comptroller.json b/mev_inspect/abis/ironbank/Unitroller.json similarity index 100% rename from mev_inspect/abis/ironbank/Comptroller.json rename to mev_inspect/abis/ironbank/Unitroller.json diff --git a/mev_inspect/classifiers/specs/ironbank.py b/mev_inspect/classifiers/specs/ironbank.py index d05b6e9..9e82a8c 100644 --- a/mev_inspect/classifiers/specs/ironbank.py +++ b/mev_inspect/classifiers/specs/ironbank.py @@ -79,7 +79,7 @@ class IronBankLiquidationClassifier(LiquidationClassifier): IRONBANK_CYETH_SPEC = ClassifierSpec( - abi_name="CEther", + abi_name="CYEther", protocol=Protocol.ironbank, valid_contract_addresses=["0x41c84c0e2EE0b740Cf0d31F63f3B6F627DC6b393"], classifiers={ @@ -89,7 +89,7 @@ IRONBANK_CYETH_SPEC = ClassifierSpec( ) IRONBANK_CTOKEN_SPEC = ClassifierSpec( - abi_name="CToken", + abi_name="CYToken", protocol=Protocol.ironbank, valid_contract_addresses=[ "0x41c84c0e2ee0b740cf0d31f63f3b6f627dc6b393", # cyWETH diff --git a/tests/test_ironbank.py b/tests/test_ironbank.py index 2933af7..f8afe91 100644 --- a/tests/test_ironbank.py +++ b/tests/test_ironbank.py @@ -52,7 +52,7 @@ def test_ironbank_token_liquidation(trace_classifier: TraceClassifier): received_token_address="0x8fc8bfd80d6a9f17fb98a373023d72531792b431", protocol=Protocol.ironbank, transaction_hash=transaction_hash, - trace_address=[], + trace_address=[0, 1, 1], block_number=block_number, ) ] From 2afa4922b220199ee9a915fba1d8154ed0170487 Mon Sep 17 00:00:00 2001 From: Matthew Gonzalez Date: Sun, 8 May 2022 02:55:43 -0700 Subject: [PATCH 7/8] Test commit --- tests/test_ironbank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ironbank.py b/tests/test_ironbank.py index f8afe91..5c2a432 100644 --- a/tests/test_ironbank.py +++ b/tests/test_ironbank.py @@ -13,7 +13,7 @@ from tests.utils import load_test_block # transaction_hash = ( # "0xf5f3df6ec9b51e8e88d0d9078b04373742294530b6bcb9be045525fcab71b915" # ) - +# # liquidations = [ # Liquidation( # liquidated_user="0x44f9636ef615a73688a84da1d714a40be503157d", From bf9a901536d830b7caf3e1472de5ee2fd4eb0ae7 Mon Sep 17 00:00:00 2001 From: Matthew Gonzalez Date: Sun, 8 May 2022 03:08:46 -0700 Subject: [PATCH 8/8] Testing pre-commit --- mev_inspect/classifiers/specs/__init__.py | 2 +- tests/test_ironbank.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/mev_inspect/classifiers/specs/__init__.py b/mev_inspect/classifiers/specs/__init__.py index a530c7b..59791be 100644 --- a/mev_inspect/classifiers/specs/__init__.py +++ b/mev_inspect/classifiers/specs/__init__.py @@ -11,11 +11,11 @@ from .cream import CREAM_CLASSIFIER_SPECS from .cryptopunks import CRYPTOPUNKS_CLASSIFIER_SPECS from .curve import CURVE_CLASSIFIER_SPECS from .erc20 import ERC20_CLASSIFIER_SPECS +from .ironbank import IRONBANK_CLASSIFIER_SPECS from .opensea import OPENSEA_CLASSIFIER_SPECS from .uniswap import UNISWAP_CLASSIFIER_SPECS from .weth import WETH_CLASSIFIER_SPECS from .zero_ex import ZEROX_CLASSIFIER_SPECS -from .ironbank import IRONBANK_CLASSIFIER_SPECS ALL_CLASSIFIER_SPECS = ( ERC20_CLASSIFIER_SPECS diff --git a/tests/test_ironbank.py b/tests/test_ironbank.py index 5c2a432..b5ef7a2 100644 --- a/tests/test_ironbank.py +++ b/tests/test_ironbank.py @@ -1,7 +1,6 @@ from mev_inspect.classifiers.trace import TraceClassifier from mev_inspect.liquidations import get_liquidations from mev_inspect.schemas.liquidations import Liquidation -from mev_inspect.schemas.prices import ETH_TOKEN_ADDRESS from mev_inspect.schemas.traces import Protocol from tests.utils import load_test_block @@ -13,7 +12,7 @@ from tests.utils import load_test_block # transaction_hash = ( # "0xf5f3df6ec9b51e8e88d0d9078b04373742294530b6bcb9be045525fcab71b915" # ) -# + # liquidations = [ # Liquidation( # liquidated_user="0x44f9636ef615a73688a84da1d714a40be503157d",