diff --git a/mev_inspect/abis/aave/LendingPoolCore.json b/mev_inspect/abis/aave/LendingPoolCore.json new file mode 100644 index 00000000..4ce0bba0 --- /dev/null +++ b/mev_inspect/abis/aave/LendingPoolCore.json @@ -0,0 +1,1728 @@ +[ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "reserve", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "liquidityRate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "stableBorrowRate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "variableBorrowRate", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "liquidityIndex", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "variableBorrowIndex", + "type": "uint256" + } + ], + "name": "ReserveUpdated", + "type": "event" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "constant": true, + "inputs": [], + "name": "CORE_REVISION", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "addressesProvider", + "outputs": [ + { + "internalType": "contract LendingPoolAddressesProvider", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "lendingPoolAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "reservesList", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "contract LendingPoolAddressesProvider", + "name": "_addressesProvider", + "type": "address" + } + ], + "name": "initialize", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "_isFirstDeposit", + "type": "bool" + } + ], + "name": "updateStateOnDeposit", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amountRedeemed", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "_userRedeemedEverything", + "type": "bool" + } + ], + "name": "updateStateOnRedeem", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_availableLiquidityBefore", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_income", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_protocolFee", + "type": "uint256" + } + ], + "name": "updateStateOnFlashLoan", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amountBorrowed", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_borrowFee", + "type": "uint256" + }, + { + "internalType": "enum CoreLibrary.InterestRateMode", + "name": "_rateMode", + "type": "uint8" + } + ], + "name": "updateStateOnBorrow", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_paybackAmountMinusFees", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_originationFeeRepaid", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_balanceIncrease", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "_repaidWholeLoan", + "type": "bool" + } + ], + "name": "updateStateOnRepay", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_principalBorrowBalance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_compoundedBorrowBalance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_balanceIncrease", + "type": "uint256" + }, + { + "internalType": "enum CoreLibrary.InterestRateMode", + "name": "_currentRateMode", + "type": "uint8" + } + ], + "name": "updateStateOnSwapRate", + "outputs": [ + { + "internalType": "enum CoreLibrary.InterestRateMode", + "name": "", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_principalReserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_collateralReserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amountToLiquidate", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_collateralToLiquidate", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_feeLiquidated", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_liquidatedCollateralForFee", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_balanceIncrease", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "_liquidatorReceivesAToken", + "type": "bool" + } + ], + "name": "updateStateOnLiquidation", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_balanceIncrease", + "type": "uint256" + } + ], + "name": "updateStateOnRebalance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "bool", + "name": "_useAsCollateral", + "type": "bool" + } + ], + "name": "setUserUseReserveAsCollateral", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address payable", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "transferToUser", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_destination", + "type": "address" + } + ], + "name": "transferToFeeCollectionAddress", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_destination", + "type": "address" + } + ], + "name": "liquidateFee", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address payable", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "transferToReserve", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "getUserBasicReserveData", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + } + ], + "name": "isUserAllowedToBorrowAtStable", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "getUserUnderlyingAssetBalance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveInterestRateStrategyAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveATokenAddress", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveAvailableLiquidity", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveTotalLiquidity", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveNormalizedIncome", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveTotalBorrows", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveTotalBorrowsStable", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveTotalBorrowsVariable", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveLiquidationThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveLiquidationBonus", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveCurrentVariableBorrowRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveCurrentStableBorrowRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveCurrentAverageStableBorrowRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveCurrentLiquidityRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveLiquidityCumulativeIndex", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveVariableBorrowsCumulativeIndex", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveConfiguration", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveDecimals", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "isReserveBorrowingEnabled", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "isReserveUsageAsCollateralEnabled", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveIsStableBorrowRateEnabled", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveIsActive", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveIsFreezed", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveLastUpdate", + "outputs": [ + { + "internalType": "uint40", + "name": "timestamp", + "type": "uint40" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "getReserveUtilizationRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "getReserves", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "isUserUseReserveAsCollateralEnabled", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "getUserOriginationFee", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "getUserCurrentBorrowRateMode", + "outputs": [ + { + "internalType": "enum CoreLibrary.InterestRateMode", + "name": "", + "type": "uint8" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "getUserCurrentStableBorrowRate", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "getUserBorrowBalances", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "getUserVariableBorrowCumulativeIndex", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_user", + "type": "address" + } + ], + "name": "getUserLastUpdate", + "outputs": [ + { + "internalType": "uint256", + "name": "timestamp", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "refreshConfiguration", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_aTokenAddress", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_decimals", + "type": "uint256" + }, + { + "internalType": "address", + "name": "_interestRateStrategyAddress", + "type": "address" + } + ], + "name": "initReserve", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "address", + "name": "_rateStrategyAddress", + "type": "address" + } + ], + "name": "setReserveInterestRateStrategyAddress", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "bool", + "name": "_stableBorrowRateEnabled", + "type": "bool" + } + ], + "name": "enableBorrowingOnReserve", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "disableBorrowingOnReserve", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_baseLTVasCollateral", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_liquidationThreshold", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_liquidationBonus", + "type": "uint256" + } + ], + "name": "enableReserveAsCollateral", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "disableReserveAsCollateral", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "enableReserveStableBorrowRate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "disableReserveStableBorrowRate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "activateReserve", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "deactivateReserve", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "freezeReserve", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + } + ], + "name": "unfreezeReserve", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_ltv", + "type": "uint256" + } + ], + "name": "setReserveBaseLTVasCollateral", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_threshold", + "type": "uint256" + } + ], + "name": "setReserveLiquidationThreshold", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_bonus", + "type": "uint256" + } + ], + "name": "setReserveLiquidationBonus", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "internalType": "address", + "name": "_reserve", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_decimals", + "type": "uint256" + } + ], + "name": "setReserveDecimals", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + } +] \ No newline at end of file diff --git a/mev_inspect/classifiers/specs/aave.py b/mev_inspect/classifiers/specs/aave.py index 9e7c836a..bad841c5 100644 --- a/mev_inspect/classifiers/specs/aave.py +++ b/mev_inspect/classifiers/specs/aave.py @@ -47,9 +47,9 @@ def parse_liquidation( debt_token_address=debt_token_address, liquidator_user=liquidator, debt_purchase_amount=debt_purchase_amount, - protocol=Protocol.aave, received_amount=received_amount, received_token_address=received_token_address, + protocol=Protocol.aave, transaction_hash=liquidation_trace.transaction_hash, trace_address=liquidation_trace.trace_address, block_number=liquidation_trace.block_number, @@ -74,6 +74,20 @@ def get_transfer(trace: DecodedCallTrace) -> Transfer: ) +class AaveEthTransferClassifier(TransferClassifier): + @staticmethod + def get_transfer(trace: DecodedCallTrace) -> Transfer: + return Transfer( + block_number=trace.block_number, + transaction_hash=trace.transaction_hash, + trace_address=trace.trace_address, + amount=trace.inputs["_amount"], + to_address=trace.to_address, + from_address=trace.inputs["_user"], + token_address=trace.inputs["_reserve"], + ) + + AAVE_SPEC = ClassifierSpec( abi_name="AaveLendingPool", protocol=Protocol.aave, @@ -82,6 +96,14 @@ def get_transfer(trace: DecodedCallTrace) -> Transfer: }, ) +AAVE_ETHTRANSFER_SPEC = ClassifierSpec( + abi_name="LendingPoolCore", + protocol=Protocol.aave, + classifiers={ + "transferToReserve(address,address,uint256)": AaveEthTransferClassifier, + }, +) + ATOKENS_SPEC = ClassifierSpec( abi_name="aTokens", protocol=Protocol.aave, @@ -90,4 +112,8 @@ def get_transfer(trace: DecodedCallTrace) -> Transfer: }, ) -AAVE_CLASSIFIER_SPECS: List[ClassifierSpec] = [AAVE_SPEC, ATOKENS_SPEC] +AAVE_CLASSIFIER_SPECS: List[ClassifierSpec] = [ + AAVE_SPEC, + ATOKENS_SPEC, + AAVE_ETHTRANSFER_SPEC, +] diff --git a/tests/blocks/10384319.json b/tests/blocks/10384319.json new file mode 100644 index 00000000..b528414f --- /dev/null +++ b/tests/blocks/10384319.json @@ -0,0 +1,11513 @@ +{ + "block_number": 10384319, + "miner": "0xd224ca0c819e8e97ba0136b3b95ceff503b79f53", + "base_fee_per_gas": 0, + "traces": [ + { + "action": { + "callType": "call", + "from": "0x736ea9a6bbbbf4524fc6964de1c3e6ab9a43e90b", + "gas": "0xdec6", + "input": "0x", + "to": "0xeeeee89fe451af56b8bab98ad9315f16ea40f7cd", + "value": "0x13f5afcf176000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x01c2f7a026e9bb5342f16eee1449ff00f48e9387761eedc0ff5114157fff80d4", + "transaction_position": 0, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc4cf72924cba093bed9d58f7f7a79eff8ba8af13", + "gas": "0x0", + "input": "0x", + "to": "0x48241435d1e026f93a2e7216ccb85843d9188d70", + "value": "0x16345785d8a0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x6b0264757ba6e13eda5feab70b3a913ec30a1100310568aa73bdfce34b822169", + "transaction_position": 1, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xeea5b82b61424df8020f5fedd81767f2d0d25bfb", + "gas": "0x13498", + "input": "0x", + "to": "0xa117c6d0658823c55c85a68413f1cd60aed1b795", + "value": "0x2685a86706f342d" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x9059f49714dccf31704c43a4bf509a111ec06ae964bfb1af3e5be74d51342147", + "transaction_position": 2, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xadb2b42f6bd96f5c65920b9ac88619dce4166f94", + "gas": "0x1322c", + "input": "0xa9059cbb00000000000000000000000051199a8ff8172f21e609d546934f2b419ba81639000000000000000000000000000000000000000000000000000000017857fe80", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xfd1e2e3adb4338285b6f74d0db7e2ae3801f2f79e7c1ae9ac0a247b524349b4f", + "transaction_position": 3, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xadb2b42f6bd96f5c65920b9ac88619dce4166f94", + "gas": "0x13238", + "input": "0xa9059cbb00000000000000000000000083876df30cfc1d2adc219170ffb011ac6b9faa0f0000000000000000000000000000000000000000000000000000000010ebfc09", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x91a2ade4688d7ceea1bb9f035c9052f4b3e2445eb8af6bf886ac6c5d16371aae", + "transaction_position": 4, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x46705dfff24256421a05d056c29e81bdc09723b8", + "gas": "0x13238", + "input": "0xa9059cbb000000000000000000000000a071a5c2930baab76e3d7e0e2300cada9925d5d100000000000000000000000000000000000000000000000000000002207d09c0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xd2c521a6457581c3ed61d92e9b73283731fd94edab2b70c66e4b54579c2ced04", + "transaction_position": 5, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0a98fb70939162725ae66e626fe4b52cff62c2e5", + "gas": "0x13238", + "input": "0xa9059cbb000000000000000000000000c4d4203434f33017624369129fa4f975c5773cf3000000000000000000000000000000000000000000000000000000001de99c85", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x87fb2418954bd37bd4181074e89b24bbacddde50087a2935e32f6ad66c493d65", + "transaction_position": 6, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xeee28d484628d41a82d01e21d12e2e78d69920da", + "gas": "0x13244", + "input": "0xa9059cbb0000000000000000000000006b32a94785cffd02a3dceb2671adf9ab7a2619560000000000000000000000000000000000000000000000000000000005f5e100", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x0a9f5b0804ec4d77b81645d16e9a4a77bc4b2580eef4c439db8af8faee420392", + "transaction_position": 7, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe9ad3ad627be4560c99d825806ce239f595946e1", + "gas": "0xbd08", + "input": "0xa9059cbb0000000000000000000000009c8aa89793a3af3d311c84b2744e9693187426ca00000000000000000000000000000000000000000000000000000000047f6da0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x0b0ee64ded2fab6b8d0cc60b3bb1dc95ed066784c1d4c49cad161256a88193e6", + "transaction_position": 8, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf890317b8ccb178e2000d7e34edb21fc991c9132", + "gas": "0x11fa5c", + "input": "0xf6a4932f0000000000000000000000000000000000000000000000008ac7230489e800000000000000000000000000000000000000000000000000000000000086cd4700000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "value": "0x8c2a687ce7720000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x10fc65", + "output": "0x" + }, + "subtraces": 8, + "trace_address": [], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "gas": "0x1198dc", + "input": "0x70a08231000000000000000000000000f890317b8ccb178e2000d7e34edb21fc991c9132", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x97f", + "output": "0x000000000000000000000000000000000000000000000000000000028cf777fd" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "gas": "0x11891c", + "input": "0xdd62ed3e000000000000000000000000f890317b8ccb178e2000d7e34edb21fc991c913200000000000000000000000043d99d54f14c64994fd9666beab6023b0069de20", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xac4", + "output": "0x0000000000000000000000000000000000c097ce7bc90715b34b97db895b4940" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "gas": "0x10fcaf", + "init": "0x60806040526008805460ff1916905534801561001a57600080fd5b50604051610c5e380380610c5e833981810160405260a081101561003d57600080fd5b508051602080830151604080850151606086015160809096015160088054610100600160a81b0319166101006001600160a01b038085168202929092179283905585516347f3bf4360e11b815260048101899052600c60248201526b6f66666572466163746f727960a01b60448201529551989996989497939592041692638fe77e8692606480840193919291829003018186803b1580156100de57600080fd5b505afa1580156100f2573d6000803e3d6000fd5b505050506040513d602081101561010857600080fd5b5051600980546001600160a01b0319166001600160a01b03928316179081905516331461013457600080fd5b50600080546001600160a01b0319908116321790915560018590556002849055600380546001600160a01b0394909416939091169290921790915560049290925560055560075543600655610ad08061018e6000396000f3fe6080604052600436106100c25760003560e01c80637aae3c6d1161007f578063b4f58a7611610059578063b4f58a76146101f8578063b6bc03541461020d578063cdbce03d14610236578063e4736a661461024b576100c2565b80637aae3c6d1461018f5780638fc3047d146101a4578063ab5d3366146101b9576100c2565b806304f0c14e146100c757806308ad57b5146100f857806313e24862146101025780631b1bddc91461012957806328a8ef1f1461016557806371aa8fd91461017a575b600080fd5b3480156100d357600080fd5b506100dc610277565b604080516001600160a01b039092168252519081900360200190f35b610100610287565b005b34801561010e57600080fd5b506101176103b9565b60408051918252519081900360200190f35b34801561013557600080fd5b5061013e610452565b6040805193845260208401929092526001600160a01b031682820152519081900360600190f35b34801561017157600080fd5b50610100610469565b34801561018657600080fd5b5061013e6105f5565b34801561019b57600080fd5b5061011761068a565b3480156101b057600080fd5b5061013e610690565b3480156101c557600080fd5b50610100600480360360608110156101dc57600080fd5b50803590602081013590604001356001600160a01b03166106a7565b34801561020457600080fd5b50610117610809565b34801561021957600080fd5b5061022261080f565b604080519115158252519081900360200190f35b34801561024257600080fd5b506100dc610818565b6101006004803603604081101561026157600080fd5b50803590602001356001600160a01b0316610827565b6003546001600160a01b03165b90565b600854604080516347f3bf4360e11b8152602060048201819052600c60248301526b6f66666572466163746f727960a01b604483015291516101009093046001600160a01b031692638fe77e8692606480840193919291829003018186803b1580156102f257600080fd5b505afa158015610306573d6000803e3d6000fd5b505050506040513d602081101561031c57600080fd5b50516001600160a01b0316331461033257600080fd5b600254600354604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561038057600080fd5b505afa158015610394573d6000803e3d6000fd5b505050506040513d60208110156103aa57600080fd5b505110156103b757600080fd5b565b6009546040805163cbc7ef0960e01b815290516000926001600160a01b03169163cbc7ef09916004808301926020929190829003018186803b1580156103fe57600080fd5b505afa158015610412573d6000803e3d6000fd5b505050506040513d602081101561042857600080fd5b505160065461043e90439063ffffffff6109de16565b111561044c57506001610284565b50600090565b6004546005546003546001600160a01b0316909192565b600854604080516347f3bf4360e11b8152602060048201819052600c60248301526b6f66666572466163746f727960a01b604483015291516101009093046001600160a01b031692638fe77e8692606480840193919291829003018186803b1580156104d457600080fd5b505afa1580156104e8573d6000803e3d6000fd5b505050506040513d60208110156104fe57600080fd5b50516001600160a01b0316331461051457600080fd5b6000546001600160a01b0316321461052b57600080fd5b6105336103b9565b60011461053f57600080fd5b60085460ff161561054f57600080fd5b60008061055a6105f5565b506000549193509150610576906001600160a01b0316836109f8565b600354600080546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018690529051919093169263a9059cbb92604480830193919282900301818387803b1580156105cc57600080fd5b505af11580156105e0573d6000803e3d6000fd5b50506008805460ff1916600117905550505050565b600354604080516370a0823160e01b815230600482015290516000928392839247926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561064657600080fd5b505afa15801561065a573d6000803e3d6000fd5b505050506040513d602081101561067057600080fd5b505160035491945092506001600160a01b03169050909192565b60065490565b6001546002546003546001600160a01b0316909192565b600854604080516347f3bf4360e11b8152602060048201819052600c60248301526b6f66666572466163746f727960a01b604483015291516101009093046001600160a01b031692638fe77e8692606480840193919291829003018186803b15801561071257600080fd5b505afa158015610726573d6000803e3d6000fd5b505050506040513d602081101561073c57600080fd5b50516001600160a01b0316331461075257600080fd5b61075a6103b9565b1561076457600080fd5b82600454101561077357600080fd5b81600554101561078257600080fd5b6003546001600160a01b0382811691161461079c57600080fd5b6107c36004546107b785600554610a4b90919063ffffffff16565b9063ffffffff610a7916565b82146107ce57600080fd5b6107d832846109f8565b6004546107eb908463ffffffff6109de16565b600455600554610801908363ffffffff6109de16565b600555505050565b60075490565b60085460ff1690565b6000546001600160a01b031690565b600854604080516347f3bf4360e11b8152602060048201819052600c60248301526b6f66666572466163746f727960a01b604483015291516101009093046001600160a01b031692638fe77e8692606480840193919291829003018186803b15801561089257600080fd5b505afa1580156108a6573d6000803e3d6000fd5b505050506040513d60208110156108bc57600080fd5b50516001600160a01b031633146108d257600080fd5b6108da6103b9565b156108e457600080fd5b3460045410156108f357600080fd5b81600554101561090257600080fd5b6003546001600160a01b0382811691161461091c57600080fd5b6109376004546107b734600554610a4b90919063ffffffff16565b821461094257600080fd5b6003546040805163a9059cbb60e01b81523260048201526024810185905290516001600160a01b039092169163a9059cbb9160448082019260009290919082900301818387803b15801561099557600080fd5b505af11580156109a9573d6000803e3d6000fd5b50506004546109c1925090503463ffffffff6109de16565b6004556005546109d7908363ffffffff6109de16565b6005555050565b6000828211156109ed57600080fd5b508082035b92915050565b6000610a0c836001600160a01b0316610284565b6040519091506001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610a45573d6000803e3d6000fd5b50505050565b600082610a5a575060006109f2565b82820282848281610a6757fe5b0414610a7257600080fd5b9392505050565b6000808211610a8757600080fd5b6000828481610a9257fe5b0494935050505056fea265627a7a723158201cb3b3a6bc39aa2268040c9e5bd5824f82ca28f71fdd5aa97d7006d3c8f3488764736f6c634300051100320000000000000000000000000000000000000000000000008ac7230489e800000000000000000000000000000000000000000000000000000000000086cd4700000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000005e7db2ffc5b2c7c47103e4f21c702bc402603fbf", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "address": "0xe719345be0e036fd1d8d99aa174d8070b7d7cb5f", + "code": "0x6080604052600436106100c25760003560e01c80637aae3c6d1161007f578063b4f58a7611610059578063b4f58a76146101f8578063b6bc03541461020d578063cdbce03d14610236578063e4736a661461024b576100c2565b80637aae3c6d1461018f5780638fc3047d146101a4578063ab5d3366146101b9576100c2565b806304f0c14e146100c757806308ad57b5146100f857806313e24862146101025780631b1bddc91461012957806328a8ef1f1461016557806371aa8fd91461017a575b600080fd5b3480156100d357600080fd5b506100dc610277565b604080516001600160a01b039092168252519081900360200190f35b610100610287565b005b34801561010e57600080fd5b506101176103b9565b60408051918252519081900360200190f35b34801561013557600080fd5b5061013e610452565b6040805193845260208401929092526001600160a01b031682820152519081900360600190f35b34801561017157600080fd5b50610100610469565b34801561018657600080fd5b5061013e6105f5565b34801561019b57600080fd5b5061011761068a565b3480156101b057600080fd5b5061013e610690565b3480156101c557600080fd5b50610100600480360360608110156101dc57600080fd5b50803590602081013590604001356001600160a01b03166106a7565b34801561020457600080fd5b50610117610809565b34801561021957600080fd5b5061022261080f565b604080519115158252519081900360200190f35b34801561024257600080fd5b506100dc610818565b6101006004803603604081101561026157600080fd5b50803590602001356001600160a01b0316610827565b6003546001600160a01b03165b90565b600854604080516347f3bf4360e11b8152602060048201819052600c60248301526b6f66666572466163746f727960a01b604483015291516101009093046001600160a01b031692638fe77e8692606480840193919291829003018186803b1580156102f257600080fd5b505afa158015610306573d6000803e3d6000fd5b505050506040513d602081101561031c57600080fd5b50516001600160a01b0316331461033257600080fd5b600254600354604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561038057600080fd5b505afa158015610394573d6000803e3d6000fd5b505050506040513d60208110156103aa57600080fd5b505110156103b757600080fd5b565b6009546040805163cbc7ef0960e01b815290516000926001600160a01b03169163cbc7ef09916004808301926020929190829003018186803b1580156103fe57600080fd5b505afa158015610412573d6000803e3d6000fd5b505050506040513d602081101561042857600080fd5b505160065461043e90439063ffffffff6109de16565b111561044c57506001610284565b50600090565b6004546005546003546001600160a01b0316909192565b600854604080516347f3bf4360e11b8152602060048201819052600c60248301526b6f66666572466163746f727960a01b604483015291516101009093046001600160a01b031692638fe77e8692606480840193919291829003018186803b1580156104d457600080fd5b505afa1580156104e8573d6000803e3d6000fd5b505050506040513d60208110156104fe57600080fd5b50516001600160a01b0316331461051457600080fd5b6000546001600160a01b0316321461052b57600080fd5b6105336103b9565b60011461053f57600080fd5b60085460ff161561054f57600080fd5b60008061055a6105f5565b506000549193509150610576906001600160a01b0316836109f8565b600354600080546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018690529051919093169263a9059cbb92604480830193919282900301818387803b1580156105cc57600080fd5b505af11580156105e0573d6000803e3d6000fd5b50506008805460ff1916600117905550505050565b600354604080516370a0823160e01b815230600482015290516000928392839247926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561064657600080fd5b505afa15801561065a573d6000803e3d6000fd5b505050506040513d602081101561067057600080fd5b505160035491945092506001600160a01b03169050909192565b60065490565b6001546002546003546001600160a01b0316909192565b600854604080516347f3bf4360e11b8152602060048201819052600c60248301526b6f66666572466163746f727960a01b604483015291516101009093046001600160a01b031692638fe77e8692606480840193919291829003018186803b15801561071257600080fd5b505afa158015610726573d6000803e3d6000fd5b505050506040513d602081101561073c57600080fd5b50516001600160a01b0316331461075257600080fd5b61075a6103b9565b1561076457600080fd5b82600454101561077357600080fd5b81600554101561078257600080fd5b6003546001600160a01b0382811691161461079c57600080fd5b6107c36004546107b785600554610a4b90919063ffffffff16565b9063ffffffff610a7916565b82146107ce57600080fd5b6107d832846109f8565b6004546107eb908463ffffffff6109de16565b600455600554610801908363ffffffff6109de16565b600555505050565b60075490565b60085460ff1690565b6000546001600160a01b031690565b600854604080516347f3bf4360e11b8152602060048201819052600c60248301526b6f66666572466163746f727960a01b604483015291516101009093046001600160a01b031692638fe77e8692606480840193919291829003018186803b15801561089257600080fd5b505afa1580156108a6573d6000803e3d6000fd5b505050506040513d60208110156108bc57600080fd5b50516001600160a01b031633146108d257600080fd5b6108da6103b9565b156108e457600080fd5b3460045410156108f357600080fd5b81600554101561090257600080fd5b6003546001600160a01b0382811691161461091c57600080fd5b6109376004546107b734600554610a4b90919063ffffffff16565b821461094257600080fd5b6003546040805163a9059cbb60e01b81523260048201526024810185905290516001600160a01b039092169163a9059cbb9160448082019260009290919082900301818387803b15801561099557600080fd5b505af11580156109a9573d6000803e3d6000fd5b50506004546109c1925090503463ffffffff6109de16565b6004556005546109d7908363ffffffff6109de16565b6005555050565b6000828211156109ed57600080fd5b508082035b92915050565b6000610a0c836001600160a01b0316610284565b6040519091506001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610a45573d6000803e3d6000fd5b50505050565b600082610a5a575060006109f2565b82820282848281610a6757fe5b0414610a7257600080fd5b9392505050565b6000808211610a8757600080fd5b6000828481610a9257fe5b0494935050505056fea265627a7a723158201cb3b3a6bc39aa2268040c9e5bd5824f82ca28f71fdd5aa97d7006d3c8f3488764736f6c63430005110032", + "gasUsed": "0xba43e" + }, + "subtraces": 1, + "trace_address": [ + 2 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "create", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe719345be0e036fd1d8d99aa174d8070b7d7cb5f", + "gas": "0x105b3c", + "input": "0x8fe77e860000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c6f66666572466163746f72790000000000000000000000000000000000000000", + "to": "0x5e7db2ffc5b2c7c47103e4f21c702bc402603fbf", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x70d", + "output": "0x00000000000000000000000043d99d54f14c64994fd9666beab6023b0069de20" + }, + "subtraces": 0, + "trace_address": [ + 2, + 0 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "gas": "0x57dc6", + "input": "0xb11ce2db000000000000000000000000e719345be0e036fd1d8d99aa174d8070b7d7cb5f", + "to": "0x72b07fc5753a3564cfcac50cd6f246187d2d4306", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x6354", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 3 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x72b07fc5753a3564cfcac50cd6f246187d2d4306", + "gas": "0x55dd2", + "input": "0x8fe77e860000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c6f66666572466163746f72790000000000000000000000000000000000000000", + "to": "0x5e7db2ffc5b2c7c47103e4f21c702bc402603fbf", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x70d", + "output": "0x00000000000000000000000043d99d54f14c64994fd9666beab6023b0069de20" + }, + "subtraces": 0, + "trace_address": [ + 3, + 0 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "gas": "0x50e6f", + "input": "0x23b872dd000000000000000000000000f890317b8ccb178e2000d7e34edb21fc991c9132000000000000000000000000e719345be0e036fd1d8d99aa174d8070b7d7cb5f0000000000000000000000000000000000000000000000000000000086cd4700", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x9eb0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "gas": "0x452a6", + "input": "0x08ad57b5", + "to": "0xe719345be0e036fd1d8d99aa174d8070b7d7cb5f", + "value": "0x8ac7230489e80000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x27ab", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 5 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe719345be0e036fd1d8d99aa174d8070b7d7cb5f", + "gas": "0x4378c", + "input": "0x8fe77e860000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c6f66666572466163746f72790000000000000000000000000000000000000000", + "to": "0x5e7db2ffc5b2c7c47103e4f21c702bc402603fbf", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x70d", + "output": "0x00000000000000000000000043d99d54f14c64994fd9666beab6023b0069de20" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe719345be0e036fd1d8d99aa174d8070b7d7cb5f", + "gas": "0x4240a", + "input": "0x70a08231000000000000000000000000e719345be0e036fd1d8d99aa174d8070b7d7cb5f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x97f", + "output": "0x0000000000000000000000000000000000000000000000000000000086cd4700" + }, + "subtraces": 0, + "trace_address": [ + 5, + 1 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "gas": "0x4221d", + "input": "0x36af3c810000000000000000000000000000000000000000000000008ac7230489e800000000000000000000000000000000000000000000000000000000000086cd4700000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x60cbaeee17d19458420ce572ca32a8de337bcc2e", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1ba15", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 6 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x60cbaeee17d19458420ce572ca32a8de337bcc2e", + "gas": "0x40730", + "input": "0x8fe77e860000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c6f66666572466163746f72790000000000000000000000000000000000000000", + "to": "0x5e7db2ffc5b2c7c47103e4f21c702bc402603fbf", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x70d", + "output": "0x00000000000000000000000043d99d54f14c64994fd9666beab6023b0069de20" + }, + "subtraces": 0, + "trace_address": [ + 6, + 0 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x60cbaeee17d19458420ce572ca32a8de337bcc2e", + "gas": "0x3f6d6", + "input": "0xcbc7ef09", + "to": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x46b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000019" + }, + "subtraces": 0, + "trace_address": [ + 6, + 1 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x43d99d54f14c64994fd9666beab6023b0069de20", + "gas": "0x24bf1", + "input": "0xd17a3688000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", + "to": "0x9c3c7bcf8993a58410016e29882c78b552d5c9b4", + "value": "0x16345785d8a0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x156f8", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 7 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9c3c7bcf8993a58410016e29882c78b552d5c9b4", + "gas": "0x8fc", + "input": "0x", + "to": "0x607b80a3498f01f87b889486f4e7f82c98cf0584", + "value": "0x16345785d8a0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x28", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 7, + 0 + ], + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_position": 9, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb4949b5b23408c74919ceb46ac09202cb15a0428", + "gas": "0x95ec", + "input": "0xa9059cbb000000000000000000000000ff87a411b2b91f5ca6cd13a17ea829b87b088bb40000000000000000000000000000000000000000000000000000000131aa1f40", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe4c06bc269020414a9106554f44f509d4250515fa588a645e785767947464fc1", + "transaction_position": 10, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x18916e1a2933cb349145a280473a5de8eb6630cb", + "gas": "0x0", + "input": "0x", + "to": "0x159a4561fae7b67d22a2304ecc541ea2f3cee07e", + "value": "0xfa1c6d5030000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xb2c4329441544a189b5b0dc96be448f0b7b53a19a7184300870db5dcbf1a8d54", + "transaction_position": 11, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x18916e1a2933cb349145a280473a5de8eb6630cb", + "gas": "0x0", + "input": "0x", + "to": "0xb17af94e1b161ab6f05ce984787dfab601c2d44c", + "value": "0xfa1c6d5030000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xd224762bb51872265f85635cd3ef2882aae57a879d64eb3db8a7ac3ddf4418c3", + "transaction_position": 12, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x8ad9c7e5edf23a697b0ca6bac1a007da56e6207b", + "gas": "0x13238", + "input": "0xa9059cbb000000000000000000000000adb2b42f6bd96f5c65920b9ac88619dce4166f94000000000000000000000000000000000000000000000000000000012a05f200", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xfd05e2693ba4e539133db74b7e7f2ab3efbdf0357af9d3c4a86cd0fa7ede948f", + "transaction_position": 13, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa9e4d940684ed868bb5ffc9436f4bb72fa799caf", + "gas": "0x13238", + "input": "0xa9059cbb00000000000000000000000046705dfff24256421a05d056c29e81bdc09723b80000000000000000000000000000000000000000000000000000000051eebb40", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x514909674c7c19d3f3988e715da93724e673ffa4a4f862047a67d02052e827ad", + "transaction_position": 14, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x12b4a31917a003d15c289db5de402c59ec8aeb6b", + "gas": "0x1322c", + "input": "0xa9059cbb000000000000000000000000adb2b42f6bd96f5c65920b9ac88619dce4166f94000000000000000000000000000000000000000000000000000000018c9bfb80", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xbf55ab3e6ce864e7474f9d80d1df1a502249ceade1b11ce072de3d17f3d3fc84", + "transaction_position": 15, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb3774927689ec7676c8a0768dd14f7431ffbf734", + "gas": "0x12e50", + "input": "0xa9059cbb0000000000000000000000006b209ac25437d5dd266205d71e972a9db29cc9a60000000000000000000000000000000000000000000000000000000012911ce0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x24de778f651b4f2cc9edc2aa32f507d9f2e74bd67a773da5851384a4cd86a77d", + "transaction_position": 16, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x734ac651dd95a339c633cded410228515f97faff", + "gas": "0x0", + "input": "0x", + "to": "0xf8d235c75bf72e9d25d22928a133708f8ddd1224", + "value": "0x6bc3553579040" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x2e075ca2e2bd08b6c634eea4d9670fe96139a62e497698b7b4ceab9bc691eaea", + "transaction_position": 17, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x734ac651dd95a339c633cded410228515f97faff", + "gas": "0x0", + "input": "0x", + "to": "0x210a7a90e48167409d634204094ef58ec3041802", + "value": "0x6009f8b789700" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x3c30b6ed8a3e4631925288e2198eb5f4a3adeeab413505143d7b4bd4f39135e7", + "transaction_position": 18, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x333486b2d5f7ce0c716436efde04aa9dcde3d890", + "gas": "0x116f72", + "input": "0x797eee240000000000000000000000006f5ce746e3f93317248266f4f11f4ae27223ee91", + "to": "0x5acc84a3e955bdd76467d3348077d003f00ffb97", + "value": "0xb1a2bc2ec50000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xd561a", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0xbf028b053bde6a75f130d4f6ab2e1c21a4e43ffdd8d2adc9b624640fa4afc670", + "transaction_position": 19, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5acc84a3e955bdd76467d3348077d003f00ffb97", + "gas": "0x8fc", + "input": "0x", + "to": "0x6f5ce746e3f93317248266f4f11f4ae27223ee91", + "value": "0x58d15e17628000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xbf028b053bde6a75f130d4f6ab2e1c21a4e43ffdd8d2adc9b624640fa4afc670", + "transaction_position": 19, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5acc84a3e955bdd76467d3348077d003f00ffb97", + "gas": "0x8fc", + "input": "0x", + "to": "0xb843ff4fd38a491a0d64b02e6571aa66b16049af", + "value": "0x58d15e17628000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xbf028b053bde6a75f130d4f6ab2e1c21a4e43ffdd8d2adc9b624640fa4afc670", + "transaction_position": 19, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe1e86fd12c45625c43250f98e76b0111ad7592ae", + "gas": "0x50341", + "input": "0xbe389d5700000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002", + "to": "0x5acc84a3e955bdd76467d3348077d003f00ffb97", + "value": "0xb1a2bc2ec50000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3c7dc", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xd8de1374c3ede256567834d0c6d86005c173732c9adde9e396012bf39e664901", + "transaction_position": 20, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5acc84a3e955bdd76467d3348077d003f00ffb97", + "gas": "0x8fc", + "input": "0x", + "to": "0xc030b8006c5c176536ce70d15a11f095250771fd", + "value": "0xb1a2bc2ec50000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xd8de1374c3ede256567834d0c6d86005c173732c9adde9e396012bf39e664901", + "transaction_position": 20, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xee834af587d8617213f05d5687cb883d5bc5502a", + "gas": "0x0", + "input": "0x", + "to": "0x5155ff7d6238931a500ae27ddc5781339414a091", + "value": "0x12dfb0cb5e88000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4af957070765bc841a758bc2db1a51679a7d979cb08fbcf4b8927591978abb8b", + "transaction_position": 21, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x1188d3024cec47f542d4ea83a77c9efb56aae691", + "gas": "0x27e7f", + "input": "0xf305d719000000000000000000000000dc5864ede28bd4405aa04d93e05a0531797d9d59000000000000000000000000000000000000000000000000000002c68f475a01000000000000000000000000000000000000000000000000000002c301c327a2000000000000000000000000000000000000000000000000450ac0242d9180000000000000000000000000001188d3024cec47f542d4ea83a77c9efb56aae691000000000000000000000000000000000000000000000000000000005efeb74c", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x4563918244f40000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2343c", + "output": "0x000000000000000000000000000000000000000000000000000002c68f475a010000000000000000000000000000000000000000000000004563918244f2747d000000000000000000000000000000000000000000000000000d86f40ac01dab" + }, + "subtraces": 7, + "trace_address": [], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x26cef", + "input": "0xe6a43905000000000000000000000000dc5864ede28bd4405aa04d93e05a0531797d9d59000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4f0", + "output": "0x00000000000000000000000050e3d53b4a22e94ee1ce5c3a852d94d145d5852e" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x25e98", + "input": "0x0902f1ac", + "to": "0x50e3d53b4a22e94ee1ce5c3a852d94d145d5852e", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000000017ae3fea00207d96000000000000000000000000000000000000000000000000000000f27eeac94ff000000000000000000000000000000000000000000000000000000005efeb27d" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x24f72", + "input": "0x23b872dd0000000000000000000000001188d3024cec47f542d4ea83a77c9efb56aae69100000000000000000000000050e3d53b4a22e94ee1ce5c3a852d94d145d5852e000000000000000000000000000000000000000000000000000002c68f475a01", + "to": "0xdc5864ede28bd4405aa04d93e05a0531797d9d59", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x600a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x1d07e", + "input": "0xd0e30db0", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x4563918244f2747d" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5892", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x17305", + "input": "0xa9059cbb00000000000000000000000050e3d53b4a22e94ee1ce5c3a852d94d145d5852e0000000000000000000000000000000000000000000000004563918244f2747d", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 4 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x1429e", + "input": "0x6a6278420000000000000000000000001188d3024cec47f542d4ea83a77c9efb56aae691", + "to": "0x50e3d53b4a22e94ee1ce5c3a852d94d145d5852e", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xde23", + "output": "0x000000000000000000000000000000000000000000000000000d86f40ac01dab" + }, + "subtraces": 3, + "trace_address": [ + 5 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x50e3d53b4a22e94ee1ce5c3a852d94d145d5852e", + "gas": "0x119b9", + "input": "0x70a0823100000000000000000000000050e3d53b4a22e94ee1ce5c3a852d94d145d5852e", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000001c047902246fa4ddd" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x50e3d53b4a22e94ee1ce5c3a852d94d145d5852e", + "gas": "0x10ba8", + "input": "0x70a0823100000000000000000000000050e3d53b4a22e94ee1ce5c3a852d94d145d5852e", + "to": "0xdc5864ede28bd4405aa04d93e05a0531797d9d59", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x51c", + "output": "0x000000000000000000000000000000000000000000000000000011ee7df3ef00" + }, + "subtraces": 0, + "trace_address": [ + 5, + 1 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x50e3d53b4a22e94ee1ce5c3a852d94d145d5852e", + "gas": "0xfc83", + "input": "0x017e7e58", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3f6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 5, + 2 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x4a05", + "input": "0x", + "to": "0x1188d3024cec47f542d4ea83a77c9efb56aae691", + "value": "0x18b83" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 6 + ], + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_position": 22, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x4cb7a322b85cbc7016b6a372b36bd2394182f509", + "gas": "0x0", + "input": "0x", + "to": "0x20a564f32057e3e5988df88d5bfcc84e481aa957", + "value": "0x520669e693000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xff1026e26473b13f3042af889c8e1e1b5f5c60e3d009a0441beae39ae83fd42a", + "transaction_position": 23, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd34a35649ba70b010e9e2525e2ccc67a55ce07c3", + "gas": "0x0", + "input": "0x", + "to": "0x59b1246bd4ee7b1e851cdc1460efec45dbc957fc", + "value": "0x3f14548f3535e64" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xdd1cf231838abd173cfda6ffcc068c023d7594f544cbdb1f04883b5ce6cdb7bf", + "transaction_position": 24, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x4b2df36fc1296242343ac56424470679ffcae04e", + "gas": "0x0", + "input": "0x", + "to": "0x89cf9411575c575de3918f16c2962d041b91fe45", + "value": "0x2386f26fc10000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xe1e953f22be33a62142a6bea0161603e06f555a03d2966e83a9e909999b17a7f", + "transaction_position": 25, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0be4d5535764ad17b2da46a3a9bce214af67023b", + "gas": "0x0", + "input": "0x", + "to": "0x5f4f37452e3aacc712a78d00eae6195f9f55aee9", + "value": "0x11c37937e080000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x066f0e7dc3a19badfb6b69127b8c2d2f3711b75936ac7238c0ffc03906790f8d", + "transaction_position": 26, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x438817cb42b9ee1b782f9c81c1454dd7a4ecc4b9", + "gas": "0x10113", + "input": "0xf6838a720000000000000000000000000000000000000000000000000000000000000003", + "to": "0xbcf935d206ca32929e1b887a07ed240f0d8ccd22", + "value": "0x16345785d8a0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xb2a3", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x1f6568f00534699067188dd95fb429a81131bb8b838b18d141f6a7eee3fa0719", + "transaction_position": 27, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xbcf935d206ca32929e1b887a07ed240f0d8ccd22", + "gas": "0x8fc", + "input": "0x", + "to": "0x3c157ddff3790d45c5f324bbb172f830bc96bd7f", + "value": "0x16345785d8a0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x1f6568f00534699067188dd95fb429a81131bb8b838b18d141f6a7eee3fa0719", + "transaction_position": 27, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x824ada524ad4dd041036160f352a6f38411edf0b", + "gas": "0x1ecf8", + "input": "0x39125215000000000000000000000000d11b8e019b434548b39cd7dee1f7269c671573f200000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000005f07ed17000000000000000000000000000000000000000000000000000000000004dcaa0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e569cee874187f9eb3b7aaa8261ea62f2bd3232acb1146170c7df642e5756015713fb88057cf71b595aa9067dcb13d815de7b0731be99c400ce70a2084a0d32b1c00000000000000000000000000000000000000000000000000000000000000", + "to": "0xd4f5bf184bebfd53ac276ec6e091d051d0ed459e", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1145d", + "output": "0x39125215000000000000000000000000d11b8e019b434548b39cd7dee1f7269c" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x53ff52fa09fb125238be4500c21ee5a22d9b35a96d2a03161274fd9acfe78a66", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xd4f5bf184bebfd53ac276ec6e091d051d0ed459e", + "gas": "0x1e226", + "input": "0x39125215000000000000000000000000d11b8e019b434548b39cd7dee1f7269c671573f200000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000005f07ed17000000000000000000000000000000000000000000000000000000000004dcaa0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e569cee874187f9eb3b7aaa8261ea62f2bd3232acb1146170c7df642e5756015713fb88057cf71b595aa9067dcb13d815de7b0731be99c400ce70a2084a0d32b1c00000000000000000000000000000000000000000000000000000000000000", + "to": "0x5b9e8728e316bbeb692d22daaab74f6cbf2c4691", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x11118", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x53ff52fa09fb125238be4500c21ee5a22d9b35a96d2a03161274fd9acfe78a66", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd4f5bf184bebfd53ac276ec6e091d051d0ed459e", + "gas": "0x7b19", + "input": "0x", + "to": "0xd11b8e019b434548b39cd7dee1f7269c671573f2", + "value": "0xf8b0a10e470000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x53ff52fa09fb125238be4500c21ee5a22d9b35a96d2a03161274fd9acfe78a66", + "transaction_position": 28, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9902e2f6d308d85a27b81ff80c45d6ec806134e2", + "gas": "0x0", + "input": "0x", + "to": "0x402708f6f0beee1bc9c0e13f90b23f1ea094073b", + "value": "0x8fb44e494f3400" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x2c7eb14931376fda4c033e2f3d2aedccd9482ed856b72f5f9928f3027bf2e633", + "transaction_position": 29, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2f019d0b2bf469bc3e5f39a190c7c8df093acd14", + "gas": "0x2b8e4", + "input": "0xa9059cbb0000000000000000000000002940c537a0f34637bfbb615f89d2b6ce048d1e550000000000000000000000000000000000000000000000000000000000587ff1", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8e35", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xc43ed418176657f1c6c4538d70b0380c7c77c22cf64b4a758e6727842209ea69", + "transaction_position": 30, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x2a373", + "input": "0xa9059cbb0000000000000000000000002940c537a0f34637bfbb615f89d2b6ce048d1e550000000000000000000000000000000000000000000000000000000000587ff1", + "to": "0x0882477e7895bdc5cea7cb1552ed914ab157fe56", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8350", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xc43ed418176657f1c6c4538d70b0380c7c77c22cf64b4a758e6727842209ea69", + "transaction_position": 30, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xfb4796d529930a10e2bd4a6dfe911fc65590ca45", + "gas": "0x0", + "input": "0x", + "to": "0xd62f4b2728a6386f57af88796c0f0b45fa4cfb6b", + "value": "0x346bdcd507f6000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x3214192cb91caeb7cabef911a12865c53e66db40168de593c8cb35932dabc690", + "transaction_position": 31, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9e8f195658aadc1f13514835123077bc915426ee", + "gas": "0x0", + "input": "0x", + "to": "0x8708fa379b263fd3af0a72328d23c996832cbf61", + "value": "0x60afe5f78ff0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x84c9294645a59e8fe1de061b0189d35a72295f6b66067f283e8df2c5f9457890", + "transaction_position": 32, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe620d25d0db678d013916fff6dd9c2d68aa870e9", + "gas": "0x0", + "input": "0x", + "to": "0x3fdd7f4f7a8f02a0e7051aa5d181d81bdd0d3c94", + "value": "0x2b3374a078000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x8836fc1ff49a8f286b31d426806f4c086d24369054801496af6be60840d365af", + "transaction_position": 33, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x94812cd06f91d478a2eef5d55eb7af5c0d03322f", + "gas": "0x2b8d8", + "input": "0xa9059cbb000000000000000000000000f946024cf289834a90aba71ad58b695172020cc9000000000000000000000000000000000000000000000000000000012a05f200", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8e35", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xe5d4b93a2dbbd784e3c647c890fdff357889b59a01dfbdbf18490379a101b778", + "transaction_position": 34, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x2a367", + "input": "0xa9059cbb000000000000000000000000f946024cf289834a90aba71ad58b695172020cc9000000000000000000000000000000000000000000000000000000012a05f200", + "to": "0x0882477e7895bdc5cea7cb1552ed914ab157fe56", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8350", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xe5d4b93a2dbbd784e3c647c890fdff357889b59a01dfbdbf18490379a101b778", + "transaction_position": 34, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa8e1a1dec0a5da318431a6cf00ed653254ed02c9", + "gas": "0x2b8d8", + "input": "0xa9059cbb00000000000000000000000040bb447f3fed146c8974c0b16d30e1cdf88a98fd000000000000000000000000000000000000000000000000000000000772a706", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x539d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x68e830aa562f997e432008ca8ab7de738bb173512c8b2a7ae7fbe8e0a6b0c1d0", + "transaction_position": 35, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x2a367", + "input": "0xa9059cbb00000000000000000000000040bb447f3fed146c8974c0b16d30e1cdf88a98fd000000000000000000000000000000000000000000000000000000000772a706", + "to": "0x0882477e7895bdc5cea7cb1552ed914ab157fe56", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x48b8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x68e830aa562f997e432008ca8ab7de738bb173512c8b2a7ae7fbe8e0a6b0c1d0", + "transaction_position": 35, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9f6c86d682fe2a6b0dcac8f3961bcb1bc274012e", + "gas": "0x2b8a8", + "input": "0xa9059cbb0000000000000000000000005491ea3e718bed25ca4810e333e481e3cd9df8a8000000000000000000000000000000000000000000000002cbf79e1777f53000", + "to": "0xdd974d5c2e2928dea5f71b9825b8b646686bd200", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3ded", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x998556baf5f036f7552292da4828d15cf7e61da2ee2cd7bc24dfe8531ae51e37", + "transaction_position": 36, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x312e831b3824bd9bbf12e5df4e7b515a6367156f", + "gas": "0x2b8c0", + "input": "0xa9059cbb000000000000000000000000add477fdfd86fa9b2072273ecb66f7c492cdf94b000000000000000000000000000000000000000000000000005e58b6cf89ac00", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x852a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4cd5ac5d9a919f434198f39670e03e9155df62b4c98a11605741e8b3d8ccb4c8", + "transaction_position": 37, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xdf26f2ecfc52c63207a335b6756d2b88352fbd8b", + "gas": "0x13498", + "input": "0x", + "to": "0xed6b0dc3aa8de5908ab857a70cb2ff657d9b6c5d", + "value": "0x429d069189e0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xac4c", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x4c3882397a2f2d8d3d013ab39eca9596cebedb5cf40fd7debd06ad206634b7f5", + "transaction_position": 38, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x72e5263ff33d2494692d7f94a758aa9f82062f73", + "gas": "0xed7e", + "input": "0xa9059cbb00000000000000000000000089d4d7be3a45389f6b4183675af20b67f966891600000000000000000000000000000000000000000000000000000000002c9a87", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x368396f0ded82433facd4e0357396ab0f1a461ca89c746fd0b532474574da87d", + "transaction_position": 39, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xcf17f1b25cb7075255ea72044163082d4c48926d", + "gas": "0x4c91", + "input": "0xa9059cbb000000000000000000000000c72fb5198583e639798f88d4c4593c85af64dc7e000000000000000000000000000000000000000000000000000000000bfb0440", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xfd95e2f0b282e4e9539c1d1924497b0e273058444270db1c43454ffedf1d4417", + "transaction_position": 40, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x42eefcda06ead475cde3731b8eb138e88cd0bac3", + "gas": "0x6d91a", + "input": "0x6a791f110000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000042eefcda06ead475cde3731b8eb138e88cd0bac3000000000000000000000000000000000000000000000000000000000015648a0000000000000000000000000000000000000000000000000000000000156889b492380e78af8a7e4ad1a7d3dbcfe3edf98358475ccaf6d1c41b35b7fc73a7c7d44de474d0fcfc0a7323be0302e8df89d37aeb422c734033ab394bbc22768734000000000000000000000000000000000000000000000000000000000000008900000000000000000000000000000000000000000000000000000000000001c7017a6257a7e1a4a77dab567fbc49998895328fc640b31fd49e64c8086e301d976306742ac34ab5c208664b5dca068daf7e2779a576bd8c1b101ed28c0f4d34ca00225ba30bf49302fd5839265e0bac8717557de283ae8fea73948ed109cf2c1f7f6125cba66bab454d33bf0c6ddd2721a8be08c27aa85f410b149c67b689328982014d297f713d93c0402a857ee006c664791f090d1717dd542e11f88906500aa78f45ba599b7fa6fa0d4e88b1232f5cd79da2ab135d64fff877a0be4e98ab17b6e900476bb571b9cbc7edc9b8970da74c9b71b33155be1f0b215c527cb2e45cb604a64cc1b5176701b5ce3822d4e38ebf1556348d49ce33eb348de0859f890957985e016b7e8aa8b10f27339ad5a4ef8a3ad4c374e5e327bc5597e26b7d3c217dc3b5002cbcd61ec0d245146b9bab8680720405dbf635908300f2868160cad2d6b68cdd00bff38910448db014c576824672234f5c260639c8b3664dc3e1f73360794e52e260340ab9ab81d3aea3a49578af18ab53aef60641553658e438c0d6a3f7268a1b012b6ac828f8eaba9e5ab176a8ee0c459c6bf04caba1d80f1634e446e1adcb394501e80aa6bfc1794248fdabc5f53843c36233552df8db642f7f1890778bbaf4ae0100000000000000000000000000000000000000000000000000", + "to": "0x86e4dc95c7fbdbf52e33d563bbdb00823894c287", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x6a3e7", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x86e4dc95c7fbdbf52e33d563bbdb00823894c287", + "gas": "0x6aca1", + "input": "0x6a791f110000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000042eefcda06ead475cde3731b8eb138e88cd0bac3000000000000000000000000000000000000000000000000000000000015648a0000000000000000000000000000000000000000000000000000000000156889b492380e78af8a7e4ad1a7d3dbcfe3edf98358475ccaf6d1c41b35b7fc73a7c7d44de474d0fcfc0a7323be0302e8df89d37aeb422c734033ab394bbc22768734000000000000000000000000000000000000000000000000000000000000008900000000000000000000000000000000000000000000000000000000000001c7017a6257a7e1a4a77dab567fbc49998895328fc640b31fd49e64c8086e301d976306742ac34ab5c208664b5dca068daf7e2779a576bd8c1b101ed28c0f4d34ca00225ba30bf49302fd5839265e0bac8717557de283ae8fea73948ed109cf2c1f7f6125cba66bab454d33bf0c6ddd2721a8be08c27aa85f410b149c67b689328982014d297f713d93c0402a857ee006c664791f090d1717dd542e11f88906500aa78f45ba599b7fa6fa0d4e88b1232f5cd79da2ab135d64fff877a0be4e98ab17b6e900476bb571b9cbc7edc9b8970da74c9b71b33155be1f0b215c527cb2e45cb604a64cc1b5176701b5ce3822d4e38ebf1556348d49ce33eb348de0859f890957985e016b7e8aa8b10f27339ad5a4ef8a3ad4c374e5e327bc5597e26b7d3c217dc3b5002cbcd61ec0d245146b9bab8680720405dbf635908300f2868160cad2d6b68cdd00bff38910448db014c576824672234f5c260639c8b3664dc3e1f73360794e52e260340ab9ab81d3aea3a49578af18ab53aef60641553658e438c0d6a3f7268a1b012b6ac828f8eaba9e5ab176a8ee0c459c6bf04caba1d80f1634e446e1adcb394501e80aa6bfc1794248fdabc5f53843c36233552df8db642f7f1890778bbaf4ae0100000000000000000000000000000000000000000000000000", + "to": "0x5a09cd4601b66bc107d377ab81e0dbb5dfabaa84", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x69b8f", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x86e4dc95c7fbdbf52e33d563bbdb00823894c287", + "gas": "0x4f2a1", + "input": "0x287be3e4", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x526", + "output": "0x0000000000000000000000005e3ef299fddf15eaa0432e6e66473ace8c13d908" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x86e4dc95c7fbdbf52e33d563bbdb00823894c287", + "gas": "0x4e38e", + "input": "0x066647a0000000000000000000000000000000000000000000000000000000000000040088ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab4969d44de474d0fcfc0a7323be0302e8df89d37aeb422c734033ab394bbc2276873400000000000000000000000042eefcda06ead475cde3731b8eb138e88cd0bac300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c7017a6257a7e1a4a77dab567fbc49998895328fc640b31fd49e64c8086e301d976306742ac34ab5c208664b5dca068daf7e2779a576bd8c1b101ed28c0f4d34ca00225ba30bf49302fd5839265e0bac8717557de283ae8fea73948ed109cf2c1f7f6125cba66bab454d33bf0c6ddd2721a8be08c27aa85f410b149c67b689328982014d297f713d93c0402a857ee006c664791f090d1717dd542e11f88906500aa78f45ba599b7fa6fa0d4e88b1232f5cd79da2ab135d64fff877a0be4e98ab17b6e900476bb571b9cbc7edc9b8970da74c9b71b33155be1f0b215c527cb2e45cb604a64cc1b5176701b5ce3822d4e38ebf1556348d49ce33eb348de0859f890957985e016b7e8aa8b10f27339ad5a4ef8a3ad4c374e5e327bc5597e26b7d3c217dc3b5002cbcd61ec0d245146b9bab8680720405dbf635908300f2868160cad2d6b68cdd00bff38910448db014c576824672234f5c260639c8b3664dc3e1f73360794e52e260340ab9ab81d3aea3a49578af18ab53aef60641553658e438c0d6a3f7268a1b012b6ac828f8eaba9e5ab176a8ee0c459c6bf04caba1d80f1634e446e1adcb394501e80aa6bfc1794248fdabc5f53843c36233552df8db642f7f1890778bbaf4ae0100000000000000000000000000000000000000000000000000", + "to": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4bdc7", + "output": "0x00000000000000000000000000000000000000000000044664c7bf6451f00000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x4b6cb", + "input": "0x066647a0000000000000000000000000000000000000000000000000000000000000040088ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab4969d44de474d0fcfc0a7323be0302e8df89d37aeb422c734033ab394bbc2276873400000000000000000000000042eefcda06ead475cde3731b8eb138e88cd0bac300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001c7017a6257a7e1a4a77dab567fbc49998895328fc640b31fd49e64c8086e301d976306742ac34ab5c208664b5dca068daf7e2779a576bd8c1b101ed28c0f4d34ca00225ba30bf49302fd5839265e0bac8717557de283ae8fea73948ed109cf2c1f7f6125cba66bab454d33bf0c6ddd2721a8be08c27aa85f410b149c67b689328982014d297f713d93c0402a857ee006c664791f090d1717dd542e11f88906500aa78f45ba599b7fa6fa0d4e88b1232f5cd79da2ab135d64fff877a0be4e98ab17b6e900476bb571b9cbc7edc9b8970da74c9b71b33155be1f0b215c527cb2e45cb604a64cc1b5176701b5ce3822d4e38ebf1556348d49ce33eb348de0859f890957985e016b7e8aa8b10f27339ad5a4ef8a3ad4c374e5e327bc5597e26b7d3c217dc3b5002cbcd61ec0d245146b9bab8680720405dbf635908300f2868160cad2d6b68cdd00bff38910448db014c576824672234f5c260639c8b3664dc3e1f73360794e52e260340ab9ab81d3aea3a49578af18ab53aef60641553658e438c0d6a3f7268a1b012b6ac828f8eaba9e5ab176a8ee0c459c6bf04caba1d80f1634e446e1adcb394501e80aa6bfc1794248fdabc5f53843c36233552df8db642f7f1890778bbaf4ae0100000000000000000000000000000000000000000000000000", + "to": "0xf66f01bc2d3e83312e26244550537fe2d2995fee", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b522", + "output": "0x00000000000000000000000000000000000000000000044664c7bf6451f00000" + }, + "subtraces": 15, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x47be7", + "input": "0x0d33190800000000000000000000000000000000000000000000006d707a5ff06e98000000000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x13239ae75da684c73c23712b7da385d130d3eaa1", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5288", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 0, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x13239ae75da684c73c23712b7da385d130d3eaa1", + "gas": "0x45fb6", + "input": "0x1c9486ef", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4fa", + "output": "0x0000000000000000000000002dcad61350ec531910da683d396d92e3ae5e5c8d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 0, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x13239ae75da684c73c23712b7da385d130d3eaa1", + "gas": "0x44450", + "input": "0x0d33190800000000000000000000000000000000000000000000006d707a5ff06e98000000000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x2dcad61350ec531910da683d396d92e3ae5e5c8d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3f12", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 0, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x3f4e8", + "input": "0x77d32e9488ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab496900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000041017a6257a7e1a4a77dab567fbc49998895328fc640b31fd49e64c8086e301d976306742ac34ab5c208664b5dca068daf7e2779a576bd8c1b101ed28c0f4d34ca0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x71d91a8988d81617be53427126ee62471321b7df", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x129b", + "output": "0x0000000000000000000000000375b2fc7140977c9c76d45421564e354ed42277" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x3c080", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x610aebd620437b4b4e88801abd0c8ba0d009df5c", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53cd", + "output": "0x0000000000000000000000000000000000000000003706947d5e9ca5fad8623a" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 0, + 2 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x610aebd620437b4b4e88801abd0c8ba0d009df5c", + "gas": "0x3a73c", + "input": "0x1c9486ef", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4fa", + "output": "0x0000000000000000000000002dcad61350ec531910da683d396d92e3ae5e5c8d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 2, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x610aebd620437b4b4e88801abd0c8ba0d009df5c", + "gas": "0x388e3", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x2dcad61350ec531910da683d396d92e3ae5e5c8d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x404e", + "output": "0x0000000000000000000000000000000000000000003706947d5e9ca5fad8623a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 2, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x3637b", + "input": "0x77d32e9488ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab496900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000041225ba30bf49302fd5839265e0bac8717557de283ae8fea73948ed109cf2c1f7f6125cba66bab454d33bf0c6ddd2721a8be08c27aa85f410b149c67b6893289820100000000000000000000000000000000000000000000000000000000000000", + "to": "0x71d91a8988d81617be53427126ee62471321b7df", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x12af", + "output": "0x00000000000000000000000042eefcda06ead475cde3731b8eb138e88cd0bac3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 3 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x32eff", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x13239ae75da684c73c23712b7da385d130d3eaa1", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x32fd", + "output": "0x00000000000000000000000000000000000000000024afd8312130e86e0e6235" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 0, + 4 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x13239ae75da684c73c23712b7da385d130d3eaa1", + "gas": "0x31801", + "input": "0x1c9486ef", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4fa", + "output": "0x0000000000000000000000002dcad61350ec531910da683d396d92e3ae5e5c8d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 4, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x13239ae75da684c73c23712b7da385d130d3eaa1", + "gas": "0x2f762", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x2dcad61350ec531910da683d396d92e3ae5e5c8d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1f7e", + "output": "0x00000000000000000000000000000000000000000024afd8312130e86e0e6235" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 4, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x2f246", + "input": "0x77d32e9488ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab4969000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000414d297f713d93c0402a857ee006c664791f090d1717dd542e11f88906500aa78f45ba599b7fa6fa0d4e88b1232f5cd79da2ab135d64fff877a0be4e98ab17b6e90000000000000000000000000000000000000000000000000000000000000000", + "to": "0x71d91a8988d81617be53427126ee62471321b7df", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x129b", + "output": "0x0000000000000000000000005973918275c01f50555d44e92c9d9b353cadad54" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 5 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x2bddd", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc14000000000000000000000000000000000000000000000311f02aea4dcd480000", + "to": "0xc1d2e4487ff42a5971a9f4c47914d1ac0cb16617", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53cd", + "output": "0x0000000000000000000000000000000000000000006d5217679a7c5bfe125a78" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 0, + 6 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc1d2e4487ff42a5971a9f4c47914d1ac0cb16617", + "gas": "0x2a8a4", + "input": "0x1c9486ef", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4fa", + "output": "0x0000000000000000000000002dcad61350ec531910da683d396d92e3ae5e5c8d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 6, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xc1d2e4487ff42a5971a9f4c47914d1ac0cb16617", + "gas": "0x28640", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc14000000000000000000000000000000000000000000000311f02aea4dcd480000", + "to": "0x2dcad61350ec531910da683d396d92e3ae5e5c8d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x404e", + "output": "0x0000000000000000000000000000000000000000006d5217679a7c5bfe125a78" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 6, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x260d7", + "input": "0x77d32e9488ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab496900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000041476bb571b9cbc7edc9b8970da74c9b71b33155be1f0b215c527cb2e45cb604a64cc1b5176701b5ce3822d4e38ebf1556348d49ce33eb348de0859f890957985e0100000000000000000000000000000000000000000000000000000000000000", + "to": "0x71d91a8988d81617be53427126ee62471321b7df", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x12af", + "output": "0x0000000000000000000000007fcd58c2d53d980b247f1612fdba93e9a76193e6" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 7 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x22c5c", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0xd9aef0814e7ecbb4447eab08ede33b6ebc29f842", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53cd", + "output": "0x0000000000000000000000000000000000000000003649b1bde2b3a71694f44c" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 0, + 8 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xd9aef0814e7ecbb4447eab08ede33b6ebc29f842", + "gas": "0x21969", + "input": "0x1c9486ef", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4fa", + "output": "0x0000000000000000000000002dcad61350ec531910da683d396d92e3ae5e5c8d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 8, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xd9aef0814e7ecbb4447eab08ede33b6ebc29f842", + "gas": "0x1f4bf", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x2dcad61350ec531910da683d396d92e3ae5e5c8d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x404e", + "output": "0x0000000000000000000000000000000000000000003649b1bde2b3a71694f44c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 8, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x1cf56", + "input": "0x77d32e9488ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab4969000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000416b7e8aa8b10f27339ad5a4ef8a3ad4c374e5e327bc5597e26b7d3c217dc3b5002cbcd61ec0d245146b9bab8680720405dbf635908300f2868160cad2d6b68cdd0000000000000000000000000000000000000000000000000000000000000000", + "to": "0x71d91a8988d81617be53427126ee62471321b7df", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x129b", + "output": "0x000000000000000000000000b702f1c9154ac9c08da247a8e30ee6f2f3373f41" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 9 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x19aee", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x85ed9d45b276aa69176d4a4e3e8af6985bfd1fd4", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53cd", + "output": "0x0000000000000000000000000000000000000000001c0879ad83943c87fc7fc5" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 0, + 10 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x85ed9d45b276aa69176d4a4e3e8af6985bfd1fd4", + "gas": "0x18a40", + "input": "0x1c9486ef", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4fa", + "output": "0x0000000000000000000000002dcad61350ec531910da683d396d92e3ae5e5c8d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 10, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x85ed9d45b276aa69176d4a4e3e8af6985bfd1fd4", + "gas": "0x16351", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x2dcad61350ec531910da683d396d92e3ae5e5c8d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x404e", + "output": "0x0000000000000000000000000000000000000000001c0879ad83943c87fc7fc5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 10, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x13de9", + "input": "0x77d32e9488ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab496900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000041bff38910448db014c576824672234f5c260639c8b3664dc3e1f73360794e52e260340ab9ab81d3aea3a49578af18ab53aef60641553658e438c0d6a3f7268a1b0100000000000000000000000000000000000000000000000000000000000000", + "to": "0x71d91a8988d81617be53427126ee62471321b7df", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x12af", + "output": "0x000000000000000000000000b8bb158b93c94ed35c1970d610d1e2b34e26652c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 11 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x1096d", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x83e978eb20852bdb47dfa3afe60a917b1cda1715", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53cd", + "output": "0x0000000000000000000000000000000000000000003511833b2995e55e7639e3" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 0, + 12 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x83e978eb20852bdb47dfa3afe60a917b1cda1715", + "gas": "0xfb05", + "input": "0x1c9486ef", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4fa", + "output": "0x0000000000000000000000002dcad61350ec531910da683d396d92e3ae5e5c8d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 12, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x83e978eb20852bdb47dfa3afe60a917b1cda1715", + "gas": "0xd1d0", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x2dcad61350ec531910da683d396d92e3ae5e5c8d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x404e", + "output": "0x0000000000000000000000000000000000000000003511833b2995e55e7639e3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 12, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0xac67", + "input": "0x77d32e9488ded161ec3e309d99abb79088032a92758ed2e5e77938dd46d38fb020ab4969000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000412b6ac828f8eaba9e5ab176a8ee0c459c6bf04caba1d80f1634e446e1adcb394501e80aa6bfc1794248fdabc5f53843c36233552df8db642f7f1890778bbaf4ae0100000000000000000000000000000000000000000000000000000000000000", + "to": "0x71d91a8988d81617be53427126ee62471321b7df", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x12af", + "output": "0x000000000000000000000000f84c74dea96df0ec22e11e7c33996c73fcc2d822" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 13 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x5e3ef299fddf15eaa0432e6e66473ace8c13d908", + "gas": "0x77eb", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0xaf643dfb0445fb7e8053b2e6c2200c8bfcbe8880", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53cd", + "output": "0x0000000000000000000000000000000000000000002e76dcc9501322dfc9ff39" + }, + "subtraces": 2, + "trace_address": [ + 0, + 1, + 0, + 14 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xaf643dfb0445fb7e8053b2e6c2200c8bfcbe8880", + "gas": "0x6bca", + "input": "0x1c9486ef", + "to": "0x33a02e6cc863d393d6bf231b697b82f6e499ca71", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4fa", + "output": "0x0000000000000000000000002dcad61350ec531910da683d396d92e3ae5e5c8d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 14, + 0 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xaf643dfb0445fb7e8053b2e6c2200c8bfcbe8880", + "gas": "0x404e", + "input": "0xb37f25900000000000000000000000000000000000000000000003d8f44d5f73e35800000000000000000000000000000000000000000000017ee30f85fa3ad643cacc1400000000000000000000000000000000000000000000021e19e0c9bab2400000", + "to": "0x2dcad61350ec531910da683d396d92e3ae5e5c8d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x404e", + "output": "0x0000000000000000000000000000000000000000002e76dcc9501322dfc9ff39" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0, + 14, + 1 + ], + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_position": 41, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x24654a183e82bd48724c0e3ee600cbba06325693", + "gas": "0x7ccc", + "input": "0xa9059cbb0000000000000000000000009575d4ede287daff436d706ecb3aad9aff476f5300000000000000000000000000000000000000000000001b1ae4d6e2ef500000", + "to": "0xa2d0e29a9627e20fd886a8106dd0ae429403a57d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x7ccc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xa047bffb59eaee801c754eed926440ce57c5d4b7ca8be71a5fc15ca8521488c4", + "transaction_position": 42, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2c2b9da12ba29103af9cb4b8e9f290c3ab705b69", + "gas": "0x95f8", + "input": "0xa9059cbb0000000000000000000000008f805b4450c4ec6896b6897cb6173b44889c6fb40000000000000000000000000000000000000000000000000000000058834d40", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8729", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xec699caecac48c2496c6f28d1cec038d4fe9ac80afc18134a93a4a6f649b7035", + "transaction_position": 43, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xe17c65cd1227b02b02f919e57179677d428c8fd3", + "gas": "0x10b28", + "input": "0xa9059cbb000000000000000000000000502a76d02dfaeb9a7907a4e4b28fb66519ba7d600000000000000000000000000000000000000000000000000000000004c947e0", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c91", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xfd18891b4eceef223113d0186e31378c6456524b6d1b8a2d088374524a43ef88", + "transaction_position": 44, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x6129831f3dc2607f6361eb22c5491f93a332651f", + "gas": "0x1be9d", + "input": "0x07519f6200000000000000000000000000000000000000000000000039f14b14bd81f400000000000000000000000000957ce18746fe9af8791837eaa07c510fe511869b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000357b226f726465724964223a313539333734393635363835322c226f726465724e756d626572223a313539333734393635363835327d0000000000000000000000", + "to": "0x2b074ab88e5f4a48b8389c8dd62f0f5be496ada6", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1be9d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x1e121b0fe89a42be88837c22ab1ce34a4d488b23569ba9992aa0df8315e0dde9", + "transaction_position": 45, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x467927774b59f7cb023863b07960669f958ec19a", + "gas": "0xde480", + "input": "0x00a718a90000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd000000000000000000000000000000000000000000000000003617dd9a68acb60000000000000000000000000000000000000000000000000000000000000000", + "to": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "value": "0x3617dd9a68acb6" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xc3c68", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0xda296", + "input": "0x00a718a90000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd000000000000000000000000000000000000000000000000003617dd9a68acb60000000000000000000000000000000000000000000000000000000000000000", + "to": "0x6d252baea75459ed0077410613c5f6e51cab4750", + "value": "0x3617dd9a68acb6" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xc31bf", + "output": "0x" + }, + "subtraces": 4, + "trace_address": [ + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0xd4b68", + "input": "0x05075d6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf76", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xd0bf7", + "input": "0x05075d6e000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4df", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0xd32a5", + "input": "0x05075d6e0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf76", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xcf397", + "input": "0x05075d6e0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4df", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0xd1a0f", + "input": "0x5834eb9a", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4ea", + "output": "0x00000000000000000000000031cceeb1fa3dbeaf7baad25125b972a17624a40a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0xd0ea7", + "input": "0x00a718a90000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd000000000000000000000000000000000000000000000000003617dd9a68acb60000000000000000000000000000000000000000000000000000000000000000", + "to": "0x31cceeb1fa3dbeaf7baad25125b972a17624a40a", + "value": "0x3617dd9a68acb6" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xbcc9a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000094e6f206572726f72730000000000000000000000000000000000000000000000" + }, + "subtraces": 18, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0xccf0d", + "input": "0x2c6d0e9b0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x54665", + "output": "0x000000000000000000000000000000000000000000000000009f19e1748546fd000000000000000000000000000000000000000000000000009f19e1748546fd000000000000000000000000000000000000000000000000006c2feaa7194a230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b00000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000d44068fea62af830000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xc918d", + "input": "0x2c6d0e9b0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x60853118431dafba53d4d8fcc9bd3d17279b61fe", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53baa", + "output": "0x000000000000000000000000000000000000000000000000009f19e1748546fd000000000000000000000000000000000000000000000000009f19e1748546fd000000000000000000000000000000000000000000000000006c2feaa7194a230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b00000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000d44068fea62af830000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 25, + "trace_address": [ + 0, + 3, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xc5528", + "input": "0xfca513a8", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4e9", + "output": "0x00000000000000000000000076b47460d7f7c5222cfb6b6a75615ab10895dde4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xc45fa", + "input": "0x0902f1ac", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x524a", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000110000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000085d4780b73119b644ae5ecd22b376000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000057ab1ec28d129707052df4df418d58a2d46d5f5100000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd2000000000000000000000000001985365e9f78359a9b6ad760e32412f4a445e8620000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a20000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc942000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c53" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 1 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xc0aa1", + "input": "0x0902f1ac", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4750", + "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000110000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000085d4780b73119b644ae5ecd22b376000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000057ab1ec28d129707052df4df418d58a2d46d5f5100000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd2000000000000000000000000001985365e9f78359a9b6ad760e32412f4a445e8620000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a20000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc942000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c53" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 1, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xbe435", + "input": "0xe10076ad0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 2 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xbaa3e", + "input": "0xe10076ad0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 2, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xb6fdd", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0xfc1e690f61efd961294b3e1ce3313fbd8aa4f85d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 2, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xbb2d3", + "input": "0xe10076ad0000000000000000000000000000000000085d4780b73119b644ae5ecd22b3760000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 3 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xb79a1", + "input": "0xe10076ad0000000000000000000000000000000000085d4780b73119b644ae5ecd22b3760000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 3, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xb4003", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x4da9b813057d04baef4e5800e36083717b4a0341", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 3, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xb8171", + "input": "0xe10076ad000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 4 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xb4905", + "input": "0xe10076ad000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 4, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xb1029", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x9ba00d6856a4edf4665bca2c2309936572473b7e", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 4, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xb500e", + "input": "0xe10076ad000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 5 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xb1868", + "input": "0xe10076ad000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 5, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xae04e", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x71fc860f7d3a592a4a98740e39db31d25db65ae8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 5, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xb1eac", + "input": "0xe10076ad00000000000000000000000057ab1ec28d129707052df4df418d58a2d46d5f510000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 6 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xae7cb", + "input": "0xe10076ad00000000000000000000000057ab1ec28d129707052df4df418d58a2d46d5f510000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 6, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xab074", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x625ae63000f46200499120b906716420bd059240", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 6, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xaed4a", + "input": "0xe10076ad00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5cbf", + "output": "0x00000000000000000000000000000000000000000000000000000000034d5f58000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 7 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xab72f", + "input": "0xe10076ad00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab030000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x51f9", + "output": "0x00000000000000000000000000000000000000000000000000000000034d5f58000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 7, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xa809a", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3e7c", + "output": "0x00000000000000000000000000000000000000000000000000000000034d5f58" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 7, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x7d2d3688df45ce7c552e19c27e007673da9204b8", + "gas": "0xa3ad6", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000033b3761ffbb502de499a47e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 7, + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xa0787", + "input": "0xd15e005300000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000033b3761ffbb502de499a47e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 7, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xa8806", + "input": "0x5fc526ff00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 8 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xa53a2", + "input": "0x5fc526ff00000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 8, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xa67f9", + "input": "0xb3596f0700000000000000000000000080fb784b7ed66730e8b1dbd9820afd29931aab03", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1346", + "output": "0x00000000000000000000000000000000000000000000000000024104627553eb" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 9 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "gas": "0xa338e", + "input": "0x50d25bcd", + "to": "0x1eeaf25f2ecbcaf204ecadc8db7b0db9da845327", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x79a", + "output": "0x00000000000000000000000000000000000000000000000000024104627553eb" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 9, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0xa465b", + "input": "0xe10076ad0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5cbf", + "output": "0x00000000000000000000000000000000000000000000000244fb88ac6374bfe1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 10 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xa12db", + "input": "0xe10076ad0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x51f9", + "output": "0x00000000000000000000000000000000000000000000000244fb88ac6374bfe1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 10, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x9ded8", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3e7c", + "output": "0x00000000000000000000000000000000000000000000000244fb88ac6374bfe1" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 10, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "gas": "0x99b9b", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 10, + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x96ac9", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 10, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x9e118", + "input": "0x5fc526ff0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 11 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x9af50", + "input": "0x5fc526ff0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000003c00000000000000000000000000000000000000000000000000000000000000410000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 11, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x9c10b", + "input": "0xb3596f070000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1346", + "output": "0x0000000000000000000000000000000000000000000000000003cce7989bf000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 12 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "gas": "0x98f3c", + "input": "0x50d25bcd", + "to": "0x9b4e2579895efa2b4765063310dc4109a7641129", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x79a", + "output": "0x0000000000000000000000000000000000000000000000000003cce7989bf000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 12, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x99f6c", + "input": "0xe10076ad000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x74ac", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c2feaa7194a2300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 13 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x96e88", + "input": "0xe10076ad000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x69e6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006c2feaa7194a2300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 13, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x93d16", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3a3a65aab0dd2a17e3f1947ba16138cd37d08c04", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 13, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x9228b", + "input": "0x5fc526ff000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1966", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 14 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x8f3bd", + "input": "0x5fc526ff000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xec3", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 14, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x9027e", + "input": "0xb3596f07000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53a", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 15 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x8effe", + "input": "0xe10076ad000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 16 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x8c1d8", + "input": "0xe10076ad000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 16, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x89319", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0xa64bd6c70cb9051f6a9ba1f163fdc07e0dfb5f84", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 16, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x8be9c", + "input": "0xe10076ad000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd2000000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 17 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x8913b", + "input": "0xe10076ad000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd2000000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 17, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x8633e", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x9d91be44c06d373a8a226e1f3b146956083803eb", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 17, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x88d3a", + "input": "0xe10076ad0000000000000000000000001985365e9f78359a9b6ad760e32412f4a445e8620000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 18 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x8609f", + "input": "0xe10076ad0000000000000000000000001985365e9f78359a9b6ad760e32412f4a445e8620000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 18, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x83365", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x71010a9d003445ac60c4e6a7017c1e89a477b438", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 18, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x85bd7", + "input": "0xe10076ad0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a20000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 19 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x83001", + "input": "0xe10076ad0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a20000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 19, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x80389", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x7deb5e830be29f91e298ba5ff1356bb7f8146998", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 19, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x82a75", + "input": "0xe10076ad0000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc9420000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 20 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x7ff65", + "input": "0xe10076ad0000000000000000000000000f5d2fb29fb7d3cfee444a200298f468908cc9420000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 20, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x7d3b0", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x6fce4a401b6b80ace52baaefe4421bd188e76f6f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 20, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x7f913", + "input": "0xe10076ad000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f4980000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 21 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x7cec8", + "input": "0xe10076ad000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f4980000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 21, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x7a3d5", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x6fb0855c404e09c47c3fbca25f08d4e41f9f062f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 21, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x7c7b0", + "input": "0xe10076ad000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 22 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x79e2b", + "input": "0xe10076ad000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 22, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x773fa", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x328c4c80bc7aca0834db37e6600a6c49e12da4de", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 22, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x7964e", + "input": "0xe10076ad0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 23 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x76d8f", + "input": "0xe10076ad0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 23, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x74421", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0xfc4b8ed459e00e5400be803a9bb3954234fd50e3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 23, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x082b0ca59f2122c94e5f57db0085907fa9584ba6", + "gas": "0x764ec", + "input": "0xe10076ad0000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c530000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x26de", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 24 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x73cf2", + "input": "0xe10076ad0000000000000000000000004fabb145d64652a948d72533023f6e7a623c7c530000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c18", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0, + 0, + 24, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x71446", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x6ee0f7bb50a54ab5253da0667b0dc2ee526c30a8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x89b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0, + 24, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x79425", + "input": "0x18a4dbca0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5455", + "output": "0x00000000000000000000000000000000000000000000000244fb88ac6374bfe1" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 1 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x76b8e", + "input": "0x18a4dbca0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x49bb", + "output": "0x00000000000000000000000000000000000000000000000244fb88ac6374bfe1" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 1, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x74357", + "input": "0x70a082310000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3e7c", + "output": "0x00000000000000000000000000000000000000000000000244fb88ac6374bfe1" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 1, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "gas": "0x70a88", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1cf4", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 1, + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x6e3fb", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x123d", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 1, + 0, + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x737ad", + "input": "0x18f9bbae0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf8b", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 2 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x7108b", + "input": "0x18f9bbae0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4f4", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 2, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x71eda", + "input": "0x9e3c4f3b0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1031", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 3 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x6f7f8", + "input": "0x9e3c4f3b0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x577", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 3, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x70552", + "input": "0x9fb8afcd000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5f25", + "output": "0x000000000000000000000000000000000000000000000000006bd79013dd2a80000000000000000000000000000000000000000000000000006c2feaa7194a230000000000000000000000000000000000000000000000000000585a933c1fa3" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 4 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x6ded6", + "input": "0x9fb8afcd000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5465", + "output": "0x000000000000000000000000000000000000000000000000006bd79013dd2a80000000000000000000000000000000000000000000000000006c2feaa7194a230000000000000000000000000000000000000000000000000000585a933c1fa3" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 4, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x69c91", + "input": "0xfca513a8", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4e9", + "output": "0x00000000000000000000000076b47460d7f7c5222cfb6b6a75615ab10895dde4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 5 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x690cb", + "input": "0xb3596f070000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1346", + "output": "0x0000000000000000000000000000000000000000000000000003cce7989bf000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 6 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "gas": "0x66bbd", + "input": "0x50d25bcd", + "to": "0x9b4e2579895efa2b4765063310dc4109a7641129", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x79a", + "output": "0x0000000000000000000000000000000000000000000000000003cce7989bf000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 6, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x67777", + "input": "0xb3596f07000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x76b47460d7f7c5222cfb6b6a75615ab10895dde4", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x53a", + "output": "0x0000000000000000000000000000000000000000000000000de0b6b3a7640000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 7 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x668e9", + "input": "0xc76a6c9c0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xfa2", + "output": "0x000000000000000000000000000000000000000000000000000000000000006e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 8 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x644e2", + "input": "0xc76a6c9c0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4eb", + "output": "0x000000000000000000000000000000000000000000000000000000000000006e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 8, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x65019", + "input": "0xa2353fdc000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 9 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x62c75", + "input": "0xa2353fdc000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 9, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x63777", + "input": "0xa2353fdc0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf78", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 10 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x61436", + "input": "0xa2353fdc0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c1", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 10, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x61abc", + "input": "0xfeab31ac000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x103d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 11 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x5f7eb", + "input": "0xfeab31ac000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x583", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 11, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x60106", + "input": "0xe24030190000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x18f4", + "output": "0x000000000000000000000000000000000000000000012b617d2f3ff444d3f0a5" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 12 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x5de9f", + "input": "0xe24030190000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xe3d", + "output": "0x000000000000000000000000000000000000000000012b617d2f3ff444d3f0a5" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 12, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x5bf87", + "input": "0x70a082310000000000000000000000003dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "to": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5fb", + "output": "0x000000000000000000000000000000000000000000012b617d2f3ff444d3f0a5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 12, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x5dd92", + "input": "0x68beb4d6000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd000000000000000000000000000000000000000000000000003617dd9a68acb6000000000000000000000000000000000000000000000000d94869de46658f38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000585a933c1fa30000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2da90", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 13 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x5bbac", + "input": "0x68beb4d6000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd000000000000000000000000000000000000000000000000003617dd9a68acb6000000000000000000000000000000000000000000000000d94869de46658f38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000585a933c1fa30000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2cfcf", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0, + 3, + 13, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x434fd", + "input": "0x57e37af0000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000006a3d17612b7e62cd68c00000000000000000000000000000000000000000000003929754148c87cb9d300000000000000000000000000000000000000000000013c64d2d8528c8d05f700000000000000000000000000000000000000000028a2de1f9add336bdc8869", + "to": "0xe5e3baa98532f36a2d0db3277629c8e138d31034", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x36b2", + "output": "0x0000000000000000000000000000000000000000000364ff49acfc4dfb84077c0000000000000000000000000000000000000000002b71c193f2d75b8e77c4930000000000000000000000000000000000000000000ee7350e2bdc688d2c9d42" + }, + "subtraces": 2, + "trace_address": [ + 0, + 3, + 13, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe5e3baa98532f36a2d0db3277629c8e138d31034", + "gas": "0x4175d", + "input": "0x3618abba", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4bf", + "output": "0x0000000000000000000000004d728a4496e4de35f218d5a214366bde3a62b51c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 13, + 0, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe5e3baa98532f36a2d0db3277629c8e138d31034", + "gas": "0x40c67", + "input": "0xbb85c0bb000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", + "to": "0x4d728a4496e4de35f218d5a214366bde3a62b51c", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x48c", + "output": "0x00000000000000000000000000000000000000000018d0bf423c03d8de000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 13, + 0, + 0, + 1 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x393b9", + "input": "0x70a082310000000000000000000000003dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "to": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5fb", + "output": "0x000000000000000000000000000000000000000000012b617d2f3ff444d3f0a5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 13, + 0, + 1 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x37d5d", + "input": "0x57e37af00000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000000000000000000000012b60a3e6d615fe6e616d00000000000000000000000000000000000000000000e3da73f4f09b22980e170000000000000000000000000000000000000000000011ca04bf73249249f29b00000000000000000000000000000000000000000040cc4a3b9728be83760dc6", + "to": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3d18", + "output": "0x0000000000000000000000000000000000000000001d15500dcbb560002d2ac30000000000000000000000000000000000000000006eb545856e12586110045a0000000000000000000000000000000000000000003d13c700f60aa6a510045a" + }, + "subtraces": 2, + "trace_address": [ + 0, + 3, + 13, + 0, + 2 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "gas": "0x36246", + "input": "0x3618abba", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4bf", + "output": "0x0000000000000000000000004d728a4496e4de35f218d5a214366bde3a62b51c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 13, + 0, + 2, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "gas": "0x35751", + "input": "0xbb85c0bb0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x4d728a4496e4de35f218d5a214366bde3a62b51c", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x48c", + "output": "0x00000000000000000000000000000000000000000018d0bf423c03d8de000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 13, + 0, + 2, + 1 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x3052d", + "input": "0x34b3beee0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf8c", + "output": "0x000000000000000000000000e1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 14 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x2eed5", + "input": "0x34b3beee0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4f5", + "output": "0x000000000000000000000000e1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 14, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x2ef5c", + "input": "0x3edb7cb80000000000000000000000006cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd000000000000000000000000000000000000000000000000d94869de46658f38", + "to": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xdb20", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 3, + 15 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "gas": "0x2c080", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c9a", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 15, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x2ab1b", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x11e3", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 15, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "gas": "0x25d69", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c9a", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 15, + 1 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x24990", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x11e3", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 15, + 1, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x20dec", + "input": "0xfa93b2a50000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000467927774b59f7cb023863b07960669f958ec19a000000000000000000000000000000000000000000000000d94869de46658f38", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x9021", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 16 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x1fb48", + "input": "0xfa93b2a50000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000467927774b59f7cb023863b07960669f958ec19a000000000000000000000000000000000000000000000000d94869de46658f38", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8564", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 16, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x1e609", + "input": "0xa9059cbb000000000000000000000000467927774b59f7cb023863b07960669f958ec19a000000000000000000000000000000000000000000000000d94869de46658f38", + "to": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x76bc", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 16, + 0, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x15cfc", + "input": "0x28fcf4d3000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000467927774b59f7cb023863b07960669f958ec19a000000000000000000000000000000000000000000000000003617dd9a68acb6", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x3617dd9a68acb6" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xfee", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 17 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x14d3b", + "input": "0x28fcf4d3000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000467927774b59f7cb023863b07960669f958ec19a000000000000000000000000000000000000000000000000003617dd9a68acb6", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x3617dd9a68acb6" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x551", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 17, + 0 + ], + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_position": 46, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xadb87920fc6a73e1bcdc685cf39732b1ad71b9fe", + "gas": "0x475c7", + "input": "0xa68a76cc", + "to": "0x29e22c534a1081132c9180ec1cbe06dbd89db690", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x35960", + "output": "0x0000000000000000000000002461296624c702ea0fd33fbf5b2ac08958152967" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xa991cbbc1eafd9574dd000d680b75d4d1f79f2875a0c58790205032e80d85e23", + "transaction_position": 47, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x29e22c534a1081132c9180ec1cbe06dbd89db690", + "gas": "0x3e6c2", + "init": "0x6060604052341561000f57600080fd5b60008054600160a060020a033316600160a060020a031990911617905561033c8061003b6000396000f30060606040526004361061003c5763ffffffff60e060020a600035041662821de381146100eb5780633ef133671461011a5780636b9f96ea1461013b575b60008054600160a060020a0316903490366040518083838082843782019150509250505060006040518083038185876187965a03f192505050151561008057600080fd5b7f69b31548dea9b3b707b4dff357d326e3e9348b24e7a6080a218a6edeeec48f9b3334600036604051600160a060020a0385168152602081018490526060604082018181529082018390526080820184848082843782019150509550505050505060405180910390a1005b34156100f657600080fd5b6100fe61014e565b604051600160a060020a03909116815260200160405180910390f35b341561012557600080fd5b610139600160a060020a036004351661015d565b005b341561014657600080fd5b6101396102d9565b600054600160a060020a031681565b600080548190819033600160a060020a0390811691161461017d57600080fd5b83925030915082600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156101da57600080fd5b6102c65a03f115156101eb57600080fd5b5050506040518051915050801515610202576102d3565b60008054600160a060020a038086169263a9059cbb929091169084906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561026857600080fd5b6102c65a03f1151561027957600080fd5b50505060405180519050151561028e57600080fd5b7f9401e4e79c19cbe2bd774cb70a94ba660e6718be1bac1298ab3b07f454a608218482604051600160a060020a03909216825260208201526040908101905180910390a15b50505050565b600054600160a060020a039081169030163160405160006040518083038185876187965a03f192505050151561030e57600080fd5b5600a165627a7a72305820a6b61178cc9f27c0f16522b572583d67a89a7cea9f0d74293c1771a8260c38650029", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "address": "0x2461296624c702ea0fd33fbf5b2ac08958152967", + "code": "0x60606040526004361061003c5763ffffffff60e060020a600035041662821de381146100eb5780633ef133671461011a5780636b9f96ea1461013b575b60008054600160a060020a0316903490366040518083838082843782019150509250505060006040518083038185876187965a03f192505050151561008057600080fd5b7f69b31548dea9b3b707b4dff357d326e3e9348b24e7a6080a218a6edeeec48f9b3334600036604051600160a060020a0385168152602081018490526060604082018181529082018390526080820184848082843782019150509550505050505060405180910390a1005b34156100f657600080fd5b6100fe61014e565b604051600160a060020a03909116815260200160405180910390f35b341561012557600080fd5b610139600160a060020a036004351661015d565b005b341561014657600080fd5b6101396102d9565b600054600160a060020a031681565b600080548190819033600160a060020a0390811691161461017d57600080fd5b83925030915082600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b15156101da57600080fd5b6102c65a03f115156101eb57600080fd5b5050506040518051915050801515610202576102d3565b60008054600160a060020a038086169263a9059cbb929091169084906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561026857600080fd5b6102c65a03f1151561027957600080fd5b50505060405180519050151561028e57600080fd5b7f9401e4e79c19cbe2bd774cb70a94ba660e6718be1bac1298ab3b07f454a608218482604051600160a060020a03909216825260208201526040908101905180910390a15b50505050565b600054600160a060020a039081169030163160405160006040518083038185876187965a03f192505050151561030e57600080fd5b5600a165627a7a72305820a6b61178cc9f27c0f16522b572583d67a89a7cea9f0d74293c1771a8260c38650029", + "gasUsed": "0x2d998" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xa991cbbc1eafd9574dd000d680b75d4d1f79f2875a0c58790205032e80d85e23", + "transaction_position": 47, + "type": "create", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x0af86acf75cd7dc616b40dbe33da038c900964f5", + "gas": "0x4dec9b", + "input": "0xd556c5dc", + "to": "0x9424b1412450d0f8fc2255faf6046b98213b76bd", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x479404", + "output": "0x0000000000000000000000001d4f7575bf0586c1f21f2c94c51ce4933050b399" + }, + "subtraces": 2, + "trace_address": [], + "transaction_hash": "0x5e3a93a5837d95142305f1e2833e1761d4fa82074add6955670b584cac865243", + "transaction_position": 48, + "type": "call", + "error": null + }, + { + "action": { + "from": "0x9424b1412450d0f8fc2255faf6046b98213b76bd", + "gas": "0x4c245f", + "init": "0x60c0604052601360808190527f42616c616e63657220506f6f6c20546f6b656e0000000000000000000000000060a0908152620000409160039190620000f4565b506040805180820190915260038082527f425054000000000000000000000000000000000000000000000000000000000060209092019182526200008791600491620000f4565b506005805460ff19166012179055348015620000a257600080fd5b50600680546005805462010000600160b01b031916336201000081029190911790915564e8d4a510006007556001600160a01b03199091161760ff60a01b191690556008805460ff1916905562000199565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013757805160ff191683800117855562000167565b8280016001018555821562000167579182015b82811115620001675782518255916020019190600101906200014a565b506200017592915062000179565b5090565b6200019691905b8082111562000175576000815560010162000180565b90565b61580980620001a96000396000f3fe608060405234801561001057600080fd5b50600436106103eb5760003560e01c80638d4e40831161021a578063bc694ea211610135578063d73dd623116100c8578063ec09302111610097578063f8b2cb4f1161007c578063f8b2cb4f14610cac578063f8d6aed414610cd2578063fde924f714610d0d576103eb565b8063ec09302114610c7e578063f1b8a9b714610c86576103eb565b8063d73dd62314610bf2578063dd62ed3e14610c1e578063e4a28a52146104f1578063e4e1e53814610c4c576103eb565b8063cc77828d11610104578063cc77828d14610bb4578063cd2ed8fb14610bbc578063cf5e7bd314610bc4578063d4cadf6814610bea576103eb565b8063bc694ea214610b4c578063be3bbd2e14610b54578063c36596a614610565578063c6580d1214610bac576103eb565b8063a221ee49116101ad578063b7b800a41161017c578063b7b800a414610af9578063ba019dab14610b01578063ba9530a614610b09578063bc063e1a14610b44576103eb565b8063a221ee4914610a19578063a9059cbb14610a4e578063b02f0b7314610a7a578063b0e0d13614610af1576103eb565b8063948d8ce6116101e9578063948d8ce6146109db57806395d89b4114610a01578063992e2a9214610a095780639a86139b14610a11576103eb565b80638d4e40831461099d57806392eefe9b146109a5578063936c3477146109cb5780639381cd2b146109d3576103eb565b806349b595521161030a57806376c7a3c71161029d5780638656b6531161026c5780638656b653146108f9578063867378c514610934578063892980121461093c5780638c28cbe814610977576103eb565b806376c7a3c71461081d5780637c5e9ea4146108255780638201aa3f1461087e57806382f652ad146108be576103eb565b80635db34277116102d95780635db342771461076757806366188463146107995780636d06dfa0146107c557806370a08231146107f7576103eb565b806349b595521461068e5780634bb278f3146106ad5780634f69c0d4146106b55780635c1bbaf71461072c576103eb565b8063218b538211610382578063313ce56711610351578063313ce567146105ed57806334e199071461060b5780633fdddaa21461062a57806346ab38f11461065c576103eb565b8063218b53821461056557806323b872dd1461056d5780632f37b624146105a35780633018205f146105c9576103eb565b80631446a7ff116103be5780631446a7ff146104f957806315e84af91461052757806318160ddd14610555578063189d00ca1461055d576103eb565b806302c96748146103f057806306fdde0314610434578063095ea7b3146104b157806309a3bbe4146104f1575b600080fd5b6104226004803603606081101561040657600080fd5b506001600160a01b038135169060208101359060400135610d15565b60408051918252519081900360200190f35b61043c611081565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561047657818101518382015260200161045e565b50505050905090810190601f1680156104a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104dd600480360360408110156104c757600080fd5b506001600160a01b038135169060200135611117565b604080519115158252519081900360200190f35b61042261117e565b6104226004803603604081101561050f57600080fd5b506001600160a01b038135811691602001351661118b565b6104226004803603604081101561053d57600080fd5b506001600160a01b03813581169160200135166112e0565b61042261142c565b610422611432565b610422611446565b6104dd6004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359091169060400135611452565b6104dd600480360360208110156105b957600080fd5b50356001600160a01b03166115c6565b6105d16115e4565b604080516001600160a01b039092168252519081900360200190f35b6105f5611642565b6040805160ff9092168252519081900360200190f35b6106286004803603602081101561062157600080fd5b503561164b565b005b6106286004803603606081101561064057600080fd5b506001600160a01b03813516906020810135906040013561186c565b6104226004803603606081101561067257600080fd5b506001600160a01b038135169060208101359060400135611cae565b610628600480360360208110156106a457600080fd5b50351515611fb9565b610628612157565b610628600480360360408110156106cb57600080fd5b813591908101906040810160208201356401000000008111156106ed57600080fd5b8201836020820111156106ff57600080fd5b8035906020019184602083028401116401000000008311171561072157600080fd5b509092509050612378565b610422600480360360c081101561074257600080fd5b5080359060208101359060408101359060608101359060808101359060a00135612671565b6104226004803603606081101561077d57600080fd5b506001600160a01b038135169060208101359060400135612729565b6104dd600480360360408110156107af57600080fd5b506001600160a01b038135169060200135612a19565b610422600480360360608110156107db57600080fd5b506001600160a01b038135169060208101359060400135612b03565b6104226004803603602081101561080d57600080fd5b50356001600160a01b0316612e21565b610422612e3c565b610865600480360360a081101561083b57600080fd5b506001600160a01b0381358116916020810135916040820135169060608101359060800135612e4e565b6040805192835260208301919091528051918290030190f35b610865600480360360a081101561089457600080fd5b506001600160a01b038135811691602081013591604082013516906060810135906080013561333f565b610422600480360360c08110156108d457600080fd5b5080359060208101359060408101359060608101359060808101359060a00135613818565b610422600480360360c081101561090f57600080fd5b5080359060208101359060408101359060608101359060808101359060a001356138d7565b610422613978565b610422600480360360c081101561095257600080fd5b5080359060208101359060408101359060608101359060808101359060a0013561398c565b6106286004803603602081101561098d57600080fd5b50356001600160a01b0316613a3c565b6104dd613c09565b610628600480360360208110156109bb57600080fd5b50356001600160a01b0316613c12565b610422613d5d565b610422613db2565b610422600480360360208110156109f157600080fd5b50356001600160a01b0316613dbf565b61043c613e89565b610422613eea565b610422613ef6565b610422600480360360a0811015610a2f57600080fd5b5080359060208101359060408101359060608101359060800135613f1a565b6104dd60048036036040811015610a6457600080fd5b506001600160a01b038135169060200135613f7f565b61062860048036036040811015610a9057600080fd5b81359190810190604081016020820135640100000000811115610ab257600080fd5b820183602082011115610ac457600080fd5b80359060200191846020830284011164010000000083111715610ae657600080fd5b509092509050613f95565b6104226142dc565b6104226142e1565b6104226142e6565b610422600480360360c0811015610b1f57600080fd5b5080359060208101359060408101359060608101359060808101359060a001356142eb565b61042261436c565b61042261437c565b610b5c614388565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610b98578181015183820152602001610b80565b505050509050019250505060405180910390f35b610422614480565b610b5c614485565b6104226144d3565b61062860048036036020811015610bda57600080fd5b50356001600160a01b03166144d9565b610422614868565b6104dd60048036036040811015610c0857600080fd5b506001600160a01b0381351690602001356148bd565b61042260048036036040811015610c3457600080fd5b506001600160a01b0381358116916020013516614950565b61062860048036036060811015610c6257600080fd5b506001600160a01b03813516906020810135906040013561497b565b610422614bff565b61042260048036036020811015610c9c57600080fd5b50356001600160a01b0316614c0f565b61042260048036036020811015610cc257600080fd5b50356001600160a01b0316614ceb565b610422600480360360c0811015610ce857600080fd5b5080359060208101359060408101359060608101359060808101359060a00135614db5565b6104dd614e38565b6000336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615610dc3576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16610e1d576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a602052604090205460ff16610e7a576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a60205260409020600390810154610eaf91670de0b6b3a76400005b04600101614e48565b831115610f03576040805162461bcd60e51b815260206004820152601160248201527f4552525f4d41585f4f55545f524154494f000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0384166000908152600a6020526040902060038101546002808301549054600b54600754610f3d94939291908990613818565b915081610f83576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b82821115610fc7576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa624a6a4aa2fa4a760a11b604482015290519081900360640190fd5b610fd5816003015485614f2b565b60038201556000610fe68382614e48565b6040805187815290519192506001600160a01b0388169133917fe74c91552b64c2e2e7bd255639e004e693bd3e1d01cc33e65610b86afcc1ffed919081900360200190a36110343384614f99565b6110466110418483614f2b565b614fa7565b600554611062906201000090046001600160a01b031682614fb3565b61106d863387614fbd565b50506005805461ff00191690559392505050565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b5050505050905090565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6802b5e3af16b188000081565b600554600090610100900460ff16156111d9576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff16611236576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16611293576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152600a602052604080822092851682528120600380840154600280860154928401549084015493946112d79492939290613f1a565b95945050505050565b600554600090610100900460ff161561132e576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1661138b576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff166113e8576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152600a60205260408082209285168252902060038083015460028085015492840154908401546007546112d794929190613f1a565b60025490565b6402540be400670de0b6b3a76400005b0481565b670de0b6b3a764000081565b6000336001600160a01b038516148061148e57506001600160a01b03841660009081526001602090815260408083203384529091529020548211155b6114df576040805162461bcd60e51b815260206004820152601560248201527f4552525f42544f4b454e5f4241445f43414c4c45520000000000000000000000604482015290519081900360640190fd5b6114ea8484846150af565b336001600160a01b0385161480159061152857506001600160a01b038416600090815260016020908152604080832033845290915290205460001914155b156115bc576001600160a01b038416600090815260016020908152604080832033845290915290205461155b9083614f2b565b6001600160a01b03858116600090815260016020908152604080832033808552908352928190208590558051948552519287169391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35b5060019392505050565b6001600160a01b03166000908152600a602052604090205460ff1690565b600554600090610100900460ff1615611632576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b506006546001600160a01b031690565b60055460ff1690565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff16156116f7576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff1615611751576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b6006546001600160a01b031633146117a5576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b64e8d4a510008110156117ff576040805162461bcd60e51b815260206004820152600b60248201527f4552525f4d494e5f464545000000000000000000000000000000000000000000604482015290519081900360640190fd5b67016345785d8a000081111561185c576040805162461bcd60e51b815260206004820152600b60248201527f4552525f4d41585f464545000000000000000000000000000000000000000000604482015290519081900360640190fd5b6007556005805461ff0019169055565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615611918576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff001916610100179055600654336001600160a01b039091161461197d576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff166119da576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b60085460ff1615611a25576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b670de0b6b3a7640000811015611a82576040805162461bcd60e51b815260206004820152600e60248201527f4552525f4d494e5f574549474854000000000000000000000000000000000000604482015290519081900360640190fd5b6802b5e3af16b1880000811115611ae0576040805162461bcd60e51b815260206004820152600e60248201527f4552525f4d41585f574549474854000000000000000000000000000000000000604482015290519081900360640190fd5b620f4240821015611b38576040805162461bcd60e51b815260206004820152600f60248201527f4552525f4d494e5f42414c414e43450000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090206002015480821115611bd857611b71600b54611b6c8484614f2b565b6151c8565b600b8190556802b5e3af16b18800001015611bd3576040805162461bcd60e51b815260206004820152601460248201527f4552525f4d41585f544f54414c5f574549474854000000000000000000000000604482015290519081900360640190fd5b611bf9565b80821015611bf957611bf5600b54611bf08385614f2b565b614f2b565b600b555b6001600160a01b0384166000908152600a602052604090206002810183905560030180549084905580841115611c4257611c3d8533611c388785614f2b565b615222565b611c9c565b80841015611c9c576000611c568286614f2b565b90506000611c65826000614e48565b9050611c7b8733611c768585614f2b565b614fbd565b600554611c999088906201000090046001600160a01b031683614fbd565b50505b50506005805461ff0019169055505050565b6000336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615611d5c576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16611db6576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a602052604090205460ff16611e13576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a6020526040902060038101546002808301549054600b54600754611e4d9493929190899061398c565b915082821015611e94576040805162461bcd60e51b815260206004820152600d60248201526c11549497d31253525517d3d555609a1b604482015290519081900360640190fd5b6001600160a01b0385166000908152600a60205260409020600390810154611ec491670de0b6b3a7640000610ea6565b821115611f18576040805162461bcd60e51b815260206004820152601160248201527f4552525f4d41585f4f55545f524154494f000000000000000000000000000000604482015290519081900360640190fd5b611f26816003015483614f2b565b60038201556000611f378582614e48565b6040805185815290519192506001600160a01b0388169133917fe74c91552b64c2e2e7bd255639e004e693bd3e1d01cc33e65610b86afcc1ffed919081900360200190a3611f853386614f99565b611f926110418683614f2b565b600554611fae906201000090046001600160a01b031682614fb3565b61106d863385614fbd565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612065576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16156120bf576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b6006546001600160a01b03163314612113576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b60068054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff9092169190911790556005805461ff0019169055565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612203576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff001916610100179055600654336001600160a01b0390911614612268576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b60085460ff16156122b3576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b6009546002111561230b576040805162461bcd60e51b815260206004820152600e60248201527f4552525f4d494e5f544f4b454e53000000000000000000000000000000000000604482015290519081900360640190fd5b6008805460ff19166001179055600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b17905561235868056bc75e2d63100000615294565b61236b3368056bc75e2d63100000614fb3565b6005805461ff0019169055565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612424576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff1661247e576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b600061248861142c565b90506000612496858361529d565b9050806124dc576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b60005b60095481101561265d576000600982815481106124f857fe5b60009182526020808320909101546001600160a01b0316808352600a90915260408220600301549092509061252d8583614e48565b905080612573576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b87878581811061257f57fe5b905060200201358111156125c9576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa624a6a4aa2fa4a760a11b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a60205260409020600301546125ef90826151c8565b6001600160a01b0384166000818152600a60209081526040918290206003019390935580518481529051919233927f63982df10efd8dfaaaa0fcc7f50b2d93b7cba26ccc48adee2873220d485dc39a9281900390910190a3612652833383615222565b5050506001016124df565b5061266785615294565b611c9c3386614fb3565b60008061267e878661529d565b9050600061268c87866151c8565b9050600061269a828961529d565b905060006126b0670de0b6b3a76400008561529d565b905060006126be83836153d0565b905060006126cc828e614e48565b905060006126da828f614f2b565b905060006126f96126f3670de0b6b3a76400008a614f2b565b8b614e48565b905061271682612711670de0b6b3a764000084614f2b565b61529d565b9f9e505050505050505050505050505050565b6000336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff16156127d7576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16612831576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a602052604090205460ff1661288e576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a60205260409020600301546128c0906002670de0b6b3a76400005b04614e48565b831115612914576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d41585f494e5f524154494f00000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0384166000908152600a6020526040902060038101546002808301549054600b5460075461294e949392919089906138d7565b915082821015612995576040805162461bcd60e51b815260206004820152600d60248201526c11549497d31253525517d3d555609a1b604482015290519081900360640190fd5b6129a38160030154856151c8565b60038201556040805185815290516001600160a01b0387169133917f63982df10efd8dfaaaa0fcc7f50b2d93b7cba26ccc48adee2873220d485dc39a9181900360200190a36129f182615294565b6129fb3383614fb3565b612a06853386615222565b506005805461ff00191690559392505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205480831115612a6e573360009081526001602090815260408083206001600160a01b0388168452909152812055612a9d565b612a788184614f2b565b3360009081526001602090815260408083206001600160a01b03891684529091529020555b3360008181526001602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612bb1576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16612c0b576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a602052604090205460ff16612c68576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a6020526040902060038101546002808301549054600b54600754612ca294939291908990612671565b915081612ce8576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b82821115612d2c576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa624a6a4aa2fa4a760a11b604482015290519081900360640190fd5b6001600160a01b0385166000908152600a6020526040902060030154612d5c906002670de0b6b3a76400006128ba565b821115612db0576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d41585f494e5f524154494f00000000000000000000000000000000604482015290519081900360640190fd5b612dbe8160030154836151c8565b60038201556040805183815290516001600160a01b0387169133917f63982df10efd8dfaaaa0fcc7f50b2d93b7cba26ccc48adee2873220d485dc39a9181900360200190a3612e0c84615294565b612e163385614fb3565b612a06853384615222565b6001600160a01b031660009081526020819052604090205490565b620f4240670de0b6b3a7640000611442565b60408051602080825236908201819052600092839233926001600160e01b03198535169285929081908101848480828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612eeb576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff0019166101001790556001600160a01b0387166000908152600a602052604090205460ff16612f57576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0385166000908152600a602052604090205460ff16612fb4576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b600654600160a01b900460ff16613012576040805162461bcd60e51b815260206004820152601360248201527f4552525f535741505f4e4f545f5055424c494300000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038088166000908152600a60205260408082209288168252902060038082015461304b91670de0b6b3a7640000610ea6565b86111561309f576040805162461bcd60e51b815260206004820152601160248201527f4552525f4d41585f4f55545f524154494f000000000000000000000000000000604482015290519081900360640190fd5b60006130c08360030154846002015484600301548560020154600754613f1a565b905085811115613117576040805162461bcd60e51b815260206004820152601360248201527f4552525f4241445f4c494d49545f505249434500000000000000000000000000604482015290519081900360640190fd5b61313783600301548460020154846003015485600201548b600754614db5565b94508885111561317d576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa624a6a4aa2fa4a760a11b604482015290519081900360640190fd5b61318b8360030154866151c8565b83600301819055506131a1826003015488614f2b565b6003808401829055840154600280860154908501546007546131c4949190613f1a565b93508084101561320d576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b85841115613262576040805162461bcd60e51b815260206004820152600f60248201527f4552525f4c494d49545f50524943450000000000000000000000000000000000604482015290519081900360640190fd5b61326c858861529d565b8111156132b2576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b876001600160a01b03168a6001600160a01b0316336001600160a01b03167f908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378888b604051808381526020018281526020019250505060405180910390a461331a8a3387615222565b613325883389614fbd565b5050506005805461ff001916905590969095509350505050565b60408051602080825236908201819052600092839233926001600160e01b03198535169285929081908101848480828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff16156133dc576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff0019166101001790556001600160a01b0387166000908152600a602052604090205460ff16613448576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0385166000908152600a602052604090205460ff166134a5576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b600654600160a01b900460ff16613503576040805162461bcd60e51b815260206004820152601360248201527f4552525f535741505f4e4f545f5055424c494300000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038088166000908152600a602052604080822092881682529020600382015461353d906002670de0b6b3a76400006128ba565b881115613591576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d41585f494e5f524154494f00000000000000000000000000000000604482015290519081900360640190fd5b60006135b28360030154846002015484600301548560020154600754613f1a565b905085811115613609576040805162461bcd60e51b815260206004820152601360248201527f4552525f4241445f4c494d49545f505249434500000000000000000000000000604482015290519081900360640190fd5b61362983600301548460020154846003015485600201548d6007546142eb565b945086851015613670576040805162461bcd60e51b815260206004820152600d60248201526c11549497d31253525517d3d555609a1b604482015290519081900360640190fd5b61367e83600301548a6151c8565b8360030181905550613694826003015486614f2b565b6003808401829055840154600280860154908501546007546136b7949190613f1a565b935080841015613700576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b85841115613755576040805162461bcd60e51b815260206004820152600f60248201527f4552525f4c494d49545f50524943450000000000000000000000000000000000604482015290519081900360640190fd5b61375f898661529d565b8111156137a5576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b876001600160a01b03168a6001600160a01b0316336001600160a01b03167f908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d433788c89604051808381526020018281526020019250505060405180910390a461380d8a338b615222565b613325883387614fbd565b600080613825878661529d565b9050600061383b670de0b6b3a764000083614f2b565b905060006138498286614e48565b9050600061386387612711670de0b6b3a764000085614f2b565b905060006138718c83614f2b565b9050600061387f828e61529d565b9050600061388d82886153d0565b9050600061389b828e614e48565b905060006138a98e83614f2b565b90506138c281612711670de0b6b3a76400006000614f2b565b99505050505050505050509695505050505050565b6000806138e4878661529d565b905060006139036138fd670de0b6b3a764000084614f2b565b85614e48565b905060006139228661391d670de0b6b3a764000085614f2b565b614e48565b905060006139308b836151c8565b9050600061393e828d61529d565b9050600061394c82876153d0565b9050600061395a828d614e48565b9050613966818d614f2b565b9e9d5050505050505050505050505050565b64e8d4a51000670de0b6b3a7640000611442565b600080613999878661529d565b905060006139b48561391d670de0b6b3a76400006000614f2b565b905060006139c28883614f2b565b905060006139d0828a61529d565b905060006139ef826139ea670de0b6b3a76400008861529d565b6153d0565b905060006139fd828e614e48565b90506000613a0b8e83614f2b565b90506000613a246126f3670de0b6b3a76400008a614f2b565b90506127168261391d670de0b6b3a764000084614f2b565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615613ae8576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff0019166101001790556001600160a01b0381166000908152600a602052604090205460ff16613b54576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b158015613bb357600080fd5b505afa158015613bc7573d6000803e3d6000fd5b505050506040513d6020811015613bdd57600080fd5b50516001600160a01b039091166000908152600a60205260409020600301556005805461ff0019169055565b60085460ff1690565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615613cbe576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff001916610100179055600654336001600160a01b0390911614613d23576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03929092169190911790556005805461ff0019169055565b600554600090610100900460ff1615613dab576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b50600b5490565b68056bc75e2d6310000081565b600554600090610100900460ff1615613e0d576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16613e6a576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b506001600160a01b03166000908152600a602052604090206002015490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561110d5780601f106110e25761010080835404028352916020019161110d565b6704a03ce68d21555681565b7f42524f4e5a45000000000000000000000000000000000000000000000000000090565b600080613f27878761529d565b90506000613f35868661529d565b90506000613f43838361529d565b90506000613f65670de0b6b3a7640000612711670de0b6b3a764000089614f2b565b9050613f718282614e48565b9a9950505050505050505050565b6000613f8c3384846150af565b50600192915050565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615614041576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff1661409b576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b60006140a561142c565b905060006140b4856000614e48565b905060006140c28683614f2b565b905060006140d0828561529d565b905080614116576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b6141203388614f99565b60055461413c906201000090046001600160a01b031684614fb3565b61414582614fa7565b60005b6009548110156142c75760006009828154811061416157fe5b60009182526020808320909101546001600160a01b0316808352600a9091526040822060030154909250906141968583614e48565b9050806141dc576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b8989858181106141e857fe5b90506020020135811015614233576040805162461bcd60e51b815260206004820152600d60248201526c11549497d31253525517d3d555609a1b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a60205260409020600301546142599082614f2b565b6001600160a01b0384166000818152600a60209081526040918290206003019390935580518481529051919233927fe74c91552b64c2e2e7bd255639e004e693bd3e1d01cc33e65610b86afcc1ffed9281900390910190a36142bc833383614fbd565b505050600101614148565b50506005805461ff0019169055505050505050565b600881565b600281565b600181565b6000806142f8878661529d565b9050600061430e670de0b6b3a764000085614f2b565b905061431a8582614e48565b9050600061432c8a6127118c856151c8565b9050600061433a82856153d0565b90506000614350670de0b6b3a764000083614f2b565b905061435c8a82614e48565b9c9b505050505050505050505050565b600a670de0b6b3a7640000611442565b671bc16d674ec7ffff81565b600554606090610100900460ff16156143d6576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b60085460ff16614421576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b600980548060200260200160405190810160405280929190818152602001828054801561110d57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311614459575050505050905090565b600081565b600554606090610100900460ff1615614421576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b60095490565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615614585576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff001916610100179055600654336001600160a01b03909116146145ea576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16614647576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b60085460ff1615614692576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b6001600160a01b0381166000908152600a6020526040812060030154906146b98282614e48565b600b546001600160a01b0385166000908152600a60205260409020600201549192506146e491614f2b565b600b556001600160a01b0383166000908152600a602052604090206001015460098054600019810191908290811061471857fe5b600091825260209091200154600980546001600160a01b03909216918490811061473e57fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600a60006009858154811061477e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190206001015560098054806147b157fe5b600082815260208082206000199084018101805473ffffffffffffffffffffffffffffffffffffffff1916905590920190925560408051608081018252838152808301848152818301858152606083018681526001600160a01b038c168752600a909552929094209051815460ff1916901515178155925160018401555160028301555160039091015561484a8533611c768787614f2b565b600554611c9c9086906201000090046001600160a01b031685614fbd565b600554600090610100900460ff16156148b6576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b5060075490565b3360009081526001602090815260408083206001600160a01b03861684529091528120546148eb90836151c8565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a26006546001600160a01b03163314614a30576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1615614a9e576040805162461bcd60e51b815260206004820152600c60248201527f4552525f49535f424f554e440000000000000000000000000000000000000000604482015290519081900360640190fd5b60085460ff1615614ae9576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b600954600811614b40576040805162461bcd60e51b815260206004820152600e60248201527f4552525f4d41585f544f4b454e53000000000000000000000000000000000000604482015290519081900360640190fd5b6040805160808101825260018082526009805460208085019182526000858701818152606087018281526001600160a01b038c16808452600a9094529782209651875460ff1916901515178755925186860155915160028601559451600390940193909355805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01805473ffffffffffffffffffffffffffffffffffffffff19169091179055614bfa83838361186c565b505050565b6002670de0b6b3a7640000611442565b600554600090610100900460ff1615614c5d576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16614cba576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a6020526040902060020154600b54614ce490829061529d565b9392505050565b600554600090610100900460ff1615614d39576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16614d96576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b506001600160a01b03166000908152600a602052604090206003015490565b600080614dc2858861529d565b90506000614dd08786614f2b565b90506000614dde888361529d565b90506000614dec82856153d0565b9050614e0081670de0b6b3a7640000614f2b565b9050614e14670de0b6b3a764000087614f2b565b9450614e29614e238c83614e48565b8661529d565b9b9a5050505050505050505050565b600654600160a01b900460ff1690565b6000828202831580614e62575082848281614e5f57fe5b04145b614eb3576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d554c5f4f564552464c4f5700000000000000000000000000000000604482015290519081900360640190fd5b6706f05b59d3b20000810181811015614f13576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d554c5f4f564552464c4f5700000000000000000000000000000000604482015290519081900360640190fd5b6000670de0b6b3a7640000825b049695505050505050565b6000806000614f3a85856154ed565b915091508015614f91576040805162461bcd60e51b815260206004820152601160248201527f4552525f5355425f554e444552464c4f57000000000000000000000000000000604482015290519081900360640190fd5b509392505050565b614fa38282615512565b5050565b614fb08161551d565b50565b614fa382826155f6565b604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052915160009286169163a9059cbb91604480830192602092919082900301818787803b15801561502957600080fd5b505af115801561503d573d6000803e3d6000fd5b505050506040513d602081101561505357600080fd5b50519050806150a9576040805162461bcd60e51b815260206004820152600f60248201527f4552525f45524332305f46414c53450000000000000000000000000000000000604482015290519081900360640190fd5b50505050565b6001600160a01b03831660009081526020819052604090205481111561511c576040805162461bcd60e51b815260206004820152601460248201527f4552525f494e53554646494349454e545f42414c000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526020819052604090205461513f9082614f2b565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461516e90826151c8565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015614ce4576040805162461bcd60e51b815260206004820152601060248201527f4552525f4144445f4f564552464c4f5700000000000000000000000000000000604482015290519081900360640190fd5b604080517f23b872dd0000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301523060248301526044820184905291516000928616916323b872dd91606480830192602092919082900301818787803b15801561502957600080fd5b614fb081615601565b6000816152f1576040805162461bcd60e51b815260206004820152600c60248201527f4552525f4449565f5a45524f0000000000000000000000000000000000000000604482015290519081900360640190fd5b670de0b6b3a764000083028315806153195750670de0b6b3a764000084828161531657fe5b04145b61536a576040805162461bcd60e51b815260206004820152601060248201527f4552525f4449565f494e5445524e414c00000000000000000000000000000000604482015290519081900360640190fd5b600283048101818110156153c5576040805162461bcd60e51b815260206004820152601060248201527f4552525f4449565f494e5445524e414c00000000000000000000000000000000604482015290519081900360640190fd5b6000848281614f2057fe5b60006001831015615428576040805162461bcd60e51b815260206004820152601560248201527f4552525f42504f575f424153455f544f4f5f4c4f570000000000000000000000604482015290519081900360640190fd5b671bc16d674ec7ffff831115615485576040805162461bcd60e51b815260206004820152601660248201527f4552525f42504f575f424153455f544f4f5f4849474800000000000000000000604482015290519081900360640190fd5b600061549083615676565b9050600061549e8483614f2b565b905060006154b4866154af85615691565b61569f565b9050816154c5579250611178915050565b60006154d687846305f5e1006156f6565b90506154e28282614e48565b979650505050505050565b600080828410615503575050808203600061550b565b505081810360015b9250929050565b614fa38230836150af565b30600090815260208190526040902054811115615581576040805162461bcd60e51b815260206004820152601460248201527f4552525f494e53554646494349454e545f42414c000000000000000000000000604482015290519081900360640190fd5b3060009081526020819052604090205461559b9082614f2b565b306000908152602081905260409020556002546155b89082614f2b565b60025560408051828152905160009130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350565b614fa33083836150af565b3060009081526020819052604090205461561b90826151c8565b3060009081526020819052604090205560025461563890826151c8565b60025560408051828152905130916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350565b6000670de0b6b3a764000061568a83615691565b0292915050565b670de0b6b3a7640000900490565b600080600283066156b857670de0b6b3a76400006156ba565b835b90506002830492505b8215614ce4576156d38485614e48565b935060028306156156eb576156e88185614e48565b90505b6002830492506156c3565b600082818061570d87670de0b6b3a76400006154ed565b9092509050670de0b6b3a764000080600060015b8884106157c5576000670de0b6b3a7640000820290506000806157558a61575085670de0b6b3a7640000614f2b565b6154ed565b915091506157678761391d848c614e48565b9650615773878461529d565b965086615782575050506157c5565b871561578c579315935b8015615796579315935b84156157ad576157a68688614f2b565b95506157ba565b6157b786886151c8565b95505b505050600101615721565b5090999850505050505050505056fea265627a7a7231582008be3d1ae8df326becfb0d7fa15f3da56c3488a4813f666aa4154f7433e2a31e64736f6c634300050c0032", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "address": "0x1d4f7575bf0586c1f21f2c94c51ce4933050b399", + "code": "0x608060405234801561001057600080fd5b50600436106103eb5760003560e01c80638d4e40831161021a578063bc694ea211610135578063d73dd623116100c8578063ec09302111610097578063f8b2cb4f1161007c578063f8b2cb4f14610cac578063f8d6aed414610cd2578063fde924f714610d0d576103eb565b8063ec09302114610c7e578063f1b8a9b714610c86576103eb565b8063d73dd62314610bf2578063dd62ed3e14610c1e578063e4a28a52146104f1578063e4e1e53814610c4c576103eb565b8063cc77828d11610104578063cc77828d14610bb4578063cd2ed8fb14610bbc578063cf5e7bd314610bc4578063d4cadf6814610bea576103eb565b8063bc694ea214610b4c578063be3bbd2e14610b54578063c36596a614610565578063c6580d1214610bac576103eb565b8063a221ee49116101ad578063b7b800a41161017c578063b7b800a414610af9578063ba019dab14610b01578063ba9530a614610b09578063bc063e1a14610b44576103eb565b8063a221ee4914610a19578063a9059cbb14610a4e578063b02f0b7314610a7a578063b0e0d13614610af1576103eb565b8063948d8ce6116101e9578063948d8ce6146109db57806395d89b4114610a01578063992e2a9214610a095780639a86139b14610a11576103eb565b80638d4e40831461099d57806392eefe9b146109a5578063936c3477146109cb5780639381cd2b146109d3576103eb565b806349b595521161030a57806376c7a3c71161029d5780638656b6531161026c5780638656b653146108f9578063867378c514610934578063892980121461093c5780638c28cbe814610977576103eb565b806376c7a3c71461081d5780637c5e9ea4146108255780638201aa3f1461087e57806382f652ad146108be576103eb565b80635db34277116102d95780635db342771461076757806366188463146107995780636d06dfa0146107c557806370a08231146107f7576103eb565b806349b595521461068e5780634bb278f3146106ad5780634f69c0d4146106b55780635c1bbaf71461072c576103eb565b8063218b538211610382578063313ce56711610351578063313ce567146105ed57806334e199071461060b5780633fdddaa21461062a57806346ab38f11461065c576103eb565b8063218b53821461056557806323b872dd1461056d5780632f37b624146105a35780633018205f146105c9576103eb565b80631446a7ff116103be5780631446a7ff146104f957806315e84af91461052757806318160ddd14610555578063189d00ca1461055d576103eb565b806302c96748146103f057806306fdde0314610434578063095ea7b3146104b157806309a3bbe4146104f1575b600080fd5b6104226004803603606081101561040657600080fd5b506001600160a01b038135169060208101359060400135610d15565b60408051918252519081900360200190f35b61043c611081565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561047657818101518382015260200161045e565b50505050905090810190601f1680156104a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104dd600480360360408110156104c757600080fd5b506001600160a01b038135169060200135611117565b604080519115158252519081900360200190f35b61042261117e565b6104226004803603604081101561050f57600080fd5b506001600160a01b038135811691602001351661118b565b6104226004803603604081101561053d57600080fd5b506001600160a01b03813581169160200135166112e0565b61042261142c565b610422611432565b610422611446565b6104dd6004803603606081101561058357600080fd5b506001600160a01b03813581169160208101359091169060400135611452565b6104dd600480360360208110156105b957600080fd5b50356001600160a01b03166115c6565b6105d16115e4565b604080516001600160a01b039092168252519081900360200190f35b6105f5611642565b6040805160ff9092168252519081900360200190f35b6106286004803603602081101561062157600080fd5b503561164b565b005b6106286004803603606081101561064057600080fd5b506001600160a01b03813516906020810135906040013561186c565b6104226004803603606081101561067257600080fd5b506001600160a01b038135169060208101359060400135611cae565b610628600480360360208110156106a457600080fd5b50351515611fb9565b610628612157565b610628600480360360408110156106cb57600080fd5b813591908101906040810160208201356401000000008111156106ed57600080fd5b8201836020820111156106ff57600080fd5b8035906020019184602083028401116401000000008311171561072157600080fd5b509092509050612378565b610422600480360360c081101561074257600080fd5b5080359060208101359060408101359060608101359060808101359060a00135612671565b6104226004803603606081101561077d57600080fd5b506001600160a01b038135169060208101359060400135612729565b6104dd600480360360408110156107af57600080fd5b506001600160a01b038135169060200135612a19565b610422600480360360608110156107db57600080fd5b506001600160a01b038135169060208101359060400135612b03565b6104226004803603602081101561080d57600080fd5b50356001600160a01b0316612e21565b610422612e3c565b610865600480360360a081101561083b57600080fd5b506001600160a01b0381358116916020810135916040820135169060608101359060800135612e4e565b6040805192835260208301919091528051918290030190f35b610865600480360360a081101561089457600080fd5b506001600160a01b038135811691602081013591604082013516906060810135906080013561333f565b610422600480360360c08110156108d457600080fd5b5080359060208101359060408101359060608101359060808101359060a00135613818565b610422600480360360c081101561090f57600080fd5b5080359060208101359060408101359060608101359060808101359060a001356138d7565b610422613978565b610422600480360360c081101561095257600080fd5b5080359060208101359060408101359060608101359060808101359060a0013561398c565b6106286004803603602081101561098d57600080fd5b50356001600160a01b0316613a3c565b6104dd613c09565b610628600480360360208110156109bb57600080fd5b50356001600160a01b0316613c12565b610422613d5d565b610422613db2565b610422600480360360208110156109f157600080fd5b50356001600160a01b0316613dbf565b61043c613e89565b610422613eea565b610422613ef6565b610422600480360360a0811015610a2f57600080fd5b5080359060208101359060408101359060608101359060800135613f1a565b6104dd60048036036040811015610a6457600080fd5b506001600160a01b038135169060200135613f7f565b61062860048036036040811015610a9057600080fd5b81359190810190604081016020820135640100000000811115610ab257600080fd5b820183602082011115610ac457600080fd5b80359060200191846020830284011164010000000083111715610ae657600080fd5b509092509050613f95565b6104226142dc565b6104226142e1565b6104226142e6565b610422600480360360c0811015610b1f57600080fd5b5080359060208101359060408101359060608101359060808101359060a001356142eb565b61042261436c565b61042261437c565b610b5c614388565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610b98578181015183820152602001610b80565b505050509050019250505060405180910390f35b610422614480565b610b5c614485565b6104226144d3565b61062860048036036020811015610bda57600080fd5b50356001600160a01b03166144d9565b610422614868565b6104dd60048036036040811015610c0857600080fd5b506001600160a01b0381351690602001356148bd565b61042260048036036040811015610c3457600080fd5b506001600160a01b0381358116916020013516614950565b61062860048036036060811015610c6257600080fd5b506001600160a01b03813516906020810135906040013561497b565b610422614bff565b61042260048036036020811015610c9c57600080fd5b50356001600160a01b0316614c0f565b61042260048036036020811015610cc257600080fd5b50356001600160a01b0316614ceb565b610422600480360360c0811015610ce857600080fd5b5080359060208101359060408101359060608101359060808101359060a00135614db5565b6104dd614e38565b6000336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615610dc3576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16610e1d576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a602052604090205460ff16610e7a576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a60205260409020600390810154610eaf91670de0b6b3a76400005b04600101614e48565b831115610f03576040805162461bcd60e51b815260206004820152601160248201527f4552525f4d41585f4f55545f524154494f000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0384166000908152600a6020526040902060038101546002808301549054600b54600754610f3d94939291908990613818565b915081610f83576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b82821115610fc7576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa624a6a4aa2fa4a760a11b604482015290519081900360640190fd5b610fd5816003015485614f2b565b60038201556000610fe68382614e48565b6040805187815290519192506001600160a01b0388169133917fe74c91552b64c2e2e7bd255639e004e693bd3e1d01cc33e65610b86afcc1ffed919081900360200190a36110343384614f99565b6110466110418483614f2b565b614fa7565b600554611062906201000090046001600160a01b031682614fb3565b61106d863387614fbd565b50506005805461ff00191690559392505050565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b5050505050905090565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6802b5e3af16b188000081565b600554600090610100900460ff16156111d9576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff16611236576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16611293576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152600a602052604080822092851682528120600380840154600280860154928401549084015493946112d79492939290613f1a565b95945050505050565b600554600090610100900460ff161561132e576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1661138b576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff166113e8576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152600a60205260408082209285168252902060038083015460028085015492840154908401546007546112d794929190613f1a565b60025490565b6402540be400670de0b6b3a76400005b0481565b670de0b6b3a764000081565b6000336001600160a01b038516148061148e57506001600160a01b03841660009081526001602090815260408083203384529091529020548211155b6114df576040805162461bcd60e51b815260206004820152601560248201527f4552525f42544f4b454e5f4241445f43414c4c45520000000000000000000000604482015290519081900360640190fd5b6114ea8484846150af565b336001600160a01b0385161480159061152857506001600160a01b038416600090815260016020908152604080832033845290915290205460001914155b156115bc576001600160a01b038416600090815260016020908152604080832033845290915290205461155b9083614f2b565b6001600160a01b03858116600090815260016020908152604080832033808552908352928190208590558051948552519287169391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35b5060019392505050565b6001600160a01b03166000908152600a602052604090205460ff1690565b600554600090610100900460ff1615611632576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b506006546001600160a01b031690565b60055460ff1690565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff16156116f7576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff1615611751576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b6006546001600160a01b031633146117a5576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b64e8d4a510008110156117ff576040805162461bcd60e51b815260206004820152600b60248201527f4552525f4d494e5f464545000000000000000000000000000000000000000000604482015290519081900360640190fd5b67016345785d8a000081111561185c576040805162461bcd60e51b815260206004820152600b60248201527f4552525f4d41585f464545000000000000000000000000000000000000000000604482015290519081900360640190fd5b6007556005805461ff0019169055565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615611918576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff001916610100179055600654336001600160a01b039091161461197d576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff166119da576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b60085460ff1615611a25576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b670de0b6b3a7640000811015611a82576040805162461bcd60e51b815260206004820152600e60248201527f4552525f4d494e5f574549474854000000000000000000000000000000000000604482015290519081900360640190fd5b6802b5e3af16b1880000811115611ae0576040805162461bcd60e51b815260206004820152600e60248201527f4552525f4d41585f574549474854000000000000000000000000000000000000604482015290519081900360640190fd5b620f4240821015611b38576040805162461bcd60e51b815260206004820152600f60248201527f4552525f4d494e5f42414c414e43450000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090206002015480821115611bd857611b71600b54611b6c8484614f2b565b6151c8565b600b8190556802b5e3af16b18800001015611bd3576040805162461bcd60e51b815260206004820152601460248201527f4552525f4d41585f544f54414c5f574549474854000000000000000000000000604482015290519081900360640190fd5b611bf9565b80821015611bf957611bf5600b54611bf08385614f2b565b614f2b565b600b555b6001600160a01b0384166000908152600a602052604090206002810183905560030180549084905580841115611c4257611c3d8533611c388785614f2b565b615222565b611c9c565b80841015611c9c576000611c568286614f2b565b90506000611c65826000614e48565b9050611c7b8733611c768585614f2b565b614fbd565b600554611c999088906201000090046001600160a01b031683614fbd565b50505b50506005805461ff0019169055505050565b6000336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615611d5c576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16611db6576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a602052604090205460ff16611e13576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a6020526040902060038101546002808301549054600b54600754611e4d9493929190899061398c565b915082821015611e94576040805162461bcd60e51b815260206004820152600d60248201526c11549497d31253525517d3d555609a1b604482015290519081900360640190fd5b6001600160a01b0385166000908152600a60205260409020600390810154611ec491670de0b6b3a7640000610ea6565b821115611f18576040805162461bcd60e51b815260206004820152601160248201527f4552525f4d41585f4f55545f524154494f000000000000000000000000000000604482015290519081900360640190fd5b611f26816003015483614f2b565b60038201556000611f378582614e48565b6040805185815290519192506001600160a01b0388169133917fe74c91552b64c2e2e7bd255639e004e693bd3e1d01cc33e65610b86afcc1ffed919081900360200190a3611f853386614f99565b611f926110418683614f2b565b600554611fae906201000090046001600160a01b031682614fb3565b61106d863385614fbd565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612065576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16156120bf576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b6006546001600160a01b03163314612113576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b60068054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff9092169190911790556005805461ff0019169055565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612203576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff001916610100179055600654336001600160a01b0390911614612268576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b60085460ff16156122b3576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b6009546002111561230b576040805162461bcd60e51b815260206004820152600e60248201527f4552525f4d494e5f544f4b454e53000000000000000000000000000000000000604482015290519081900360640190fd5b6008805460ff19166001179055600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b17905561235868056bc75e2d63100000615294565b61236b3368056bc75e2d63100000614fb3565b6005805461ff0019169055565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612424576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff1661247e576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b600061248861142c565b90506000612496858361529d565b9050806124dc576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b60005b60095481101561265d576000600982815481106124f857fe5b60009182526020808320909101546001600160a01b0316808352600a90915260408220600301549092509061252d8583614e48565b905080612573576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b87878581811061257f57fe5b905060200201358111156125c9576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa624a6a4aa2fa4a760a11b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a60205260409020600301546125ef90826151c8565b6001600160a01b0384166000818152600a60209081526040918290206003019390935580518481529051919233927f63982df10efd8dfaaaa0fcc7f50b2d93b7cba26ccc48adee2873220d485dc39a9281900390910190a3612652833383615222565b5050506001016124df565b5061266785615294565b611c9c3386614fb3565b60008061267e878661529d565b9050600061268c87866151c8565b9050600061269a828961529d565b905060006126b0670de0b6b3a76400008561529d565b905060006126be83836153d0565b905060006126cc828e614e48565b905060006126da828f614f2b565b905060006126f96126f3670de0b6b3a76400008a614f2b565b8b614e48565b905061271682612711670de0b6b3a764000084614f2b565b61529d565b9f9e505050505050505050505050505050565b6000336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff16156127d7576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16612831576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a602052604090205460ff1661288e576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a60205260409020600301546128c0906002670de0b6b3a76400005b04614e48565b831115612914576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d41585f494e5f524154494f00000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0384166000908152600a6020526040902060038101546002808301549054600b5460075461294e949392919089906138d7565b915082821015612995576040805162461bcd60e51b815260206004820152600d60248201526c11549497d31253525517d3d555609a1b604482015290519081900360640190fd5b6129a38160030154856151c8565b60038201556040805185815290516001600160a01b0387169133917f63982df10efd8dfaaaa0fcc7f50b2d93b7cba26ccc48adee2873220d485dc39a9181900360200190a36129f182615294565b6129fb3383614fb3565b612a06853386615222565b506005805461ff00191690559392505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205480831115612a6e573360009081526001602090815260408083206001600160a01b0388168452909152812055612a9d565b612a788184614f2b565b3360009081526001602090815260408083206001600160a01b03891684529091529020555b3360008181526001602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612bb1576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff16612c0b576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a602052604090205460ff16612c68576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0384166000908152600a6020526040902060038101546002808301549054600b54600754612ca294939291908990612671565b915081612ce8576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b82821115612d2c576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa624a6a4aa2fa4a760a11b604482015290519081900360640190fd5b6001600160a01b0385166000908152600a6020526040902060030154612d5c906002670de0b6b3a76400006128ba565b821115612db0576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d41585f494e5f524154494f00000000000000000000000000000000604482015290519081900360640190fd5b612dbe8160030154836151c8565b60038201556040805183815290516001600160a01b0387169133917f63982df10efd8dfaaaa0fcc7f50b2d93b7cba26ccc48adee2873220d485dc39a9181900360200190a3612e0c84615294565b612e163385614fb3565b612a06853384615222565b6001600160a01b031660009081526020819052604090205490565b620f4240670de0b6b3a7640000611442565b60408051602080825236908201819052600092839233926001600160e01b03198535169285929081908101848480828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615612eeb576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff0019166101001790556001600160a01b0387166000908152600a602052604090205460ff16612f57576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0385166000908152600a602052604090205460ff16612fb4576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b600654600160a01b900460ff16613012576040805162461bcd60e51b815260206004820152601360248201527f4552525f535741505f4e4f545f5055424c494300000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038088166000908152600a60205260408082209288168252902060038082015461304b91670de0b6b3a7640000610ea6565b86111561309f576040805162461bcd60e51b815260206004820152601160248201527f4552525f4d41585f4f55545f524154494f000000000000000000000000000000604482015290519081900360640190fd5b60006130c08360030154846002015484600301548560020154600754613f1a565b905085811115613117576040805162461bcd60e51b815260206004820152601360248201527f4552525f4241445f4c494d49545f505249434500000000000000000000000000604482015290519081900360640190fd5b61313783600301548460020154846003015485600201548b600754614db5565b94508885111561317d576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa624a6a4aa2fa4a760a11b604482015290519081900360640190fd5b61318b8360030154866151c8565b83600301819055506131a1826003015488614f2b565b6003808401829055840154600280860154908501546007546131c4949190613f1a565b93508084101561320d576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b85841115613262576040805162461bcd60e51b815260206004820152600f60248201527f4552525f4c494d49545f50524943450000000000000000000000000000000000604482015290519081900360640190fd5b61326c858861529d565b8111156132b2576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b876001600160a01b03168a6001600160a01b0316336001600160a01b03167f908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d43378888b604051808381526020018281526020019250505060405180910390a461331a8a3387615222565b613325883389614fbd565b5050506005805461ff001916905590969095509350505050565b60408051602080825236908201819052600092839233926001600160e01b03198535169285929081908101848480828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff16156133dc576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff0019166101001790556001600160a01b0387166000908152600a602052604090205460ff16613448576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0385166000908152600a602052604090205460ff166134a5576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b600654600160a01b900460ff16613503576040805162461bcd60e51b815260206004820152601360248201527f4552525f535741505f4e4f545f5055424c494300000000000000000000000000604482015290519081900360640190fd5b6001600160a01b038088166000908152600a602052604080822092881682529020600382015461353d906002670de0b6b3a76400006128ba565b881115613591576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d41585f494e5f524154494f00000000000000000000000000000000604482015290519081900360640190fd5b60006135b28360030154846002015484600301548560020154600754613f1a565b905085811115613609576040805162461bcd60e51b815260206004820152601360248201527f4552525f4241445f4c494d49545f505249434500000000000000000000000000604482015290519081900360640190fd5b61362983600301548460020154846003015485600201548d6007546142eb565b945086851015613670576040805162461bcd60e51b815260206004820152600d60248201526c11549497d31253525517d3d555609a1b604482015290519081900360640190fd5b61367e83600301548a6151c8565b8360030181905550613694826003015486614f2b565b6003808401829055840154600280860154908501546007546136b7949190613f1a565b935080841015613700576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b85841115613755576040805162461bcd60e51b815260206004820152600f60248201527f4552525f4c494d49545f50524943450000000000000000000000000000000000604482015290519081900360640190fd5b61375f898661529d565b8111156137a5576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b876001600160a01b03168a6001600160a01b0316336001600160a01b03167f908fb5ee8f16c6bc9bc3690973819f32a4d4b10188134543c88706e0e1d433788c89604051808381526020018281526020019250505060405180910390a461380d8a338b615222565b613325883387614fbd565b600080613825878661529d565b9050600061383b670de0b6b3a764000083614f2b565b905060006138498286614e48565b9050600061386387612711670de0b6b3a764000085614f2b565b905060006138718c83614f2b565b9050600061387f828e61529d565b9050600061388d82886153d0565b9050600061389b828e614e48565b905060006138a98e83614f2b565b90506138c281612711670de0b6b3a76400006000614f2b565b99505050505050505050509695505050505050565b6000806138e4878661529d565b905060006139036138fd670de0b6b3a764000084614f2b565b85614e48565b905060006139228661391d670de0b6b3a764000085614f2b565b614e48565b905060006139308b836151c8565b9050600061393e828d61529d565b9050600061394c82876153d0565b9050600061395a828d614e48565b9050613966818d614f2b565b9e9d5050505050505050505050505050565b64e8d4a51000670de0b6b3a7640000611442565b600080613999878661529d565b905060006139b48561391d670de0b6b3a76400006000614f2b565b905060006139c28883614f2b565b905060006139d0828a61529d565b905060006139ef826139ea670de0b6b3a76400008861529d565b6153d0565b905060006139fd828e614e48565b90506000613a0b8e83614f2b565b90506000613a246126f3670de0b6b3a76400008a614f2b565b90506127168261391d670de0b6b3a764000084614f2b565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615613ae8576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff0019166101001790556001600160a01b0381166000908152600a602052604090205460ff16613b54576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b158015613bb357600080fd5b505afa158015613bc7573d6000803e3d6000fd5b505050506040513d6020811015613bdd57600080fd5b50516001600160a01b039091166000908152600a60205260409020600301556005805461ff0019169055565b60085460ff1690565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615613cbe576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff001916610100179055600654336001600160a01b0390911614613d23576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03929092169190911790556005805461ff0019169055565b600554600090610100900460ff1615613dab576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b50600b5490565b68056bc75e2d6310000081565b600554600090610100900460ff1615613e0d576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16613e6a576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b506001600160a01b03166000908152600a602052604090206002015490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561110d5780601f106110e25761010080835404028352916020019161110d565b6704a03ce68d21555681565b7f42524f4e5a45000000000000000000000000000000000000000000000000000090565b600080613f27878761529d565b90506000613f35868661529d565b90506000613f43838361529d565b90506000613f65670de0b6b3a7640000612711670de0b6b3a764000089614f2b565b9050613f718282614e48565b9a9950505050505050505050565b6000613f8c3384846150af565b50600192915050565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615614041576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff00191661010017905560085460ff1661409b576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b60006140a561142c565b905060006140b4856000614e48565b905060006140c28683614f2b565b905060006140d0828561529d565b905080614116576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b6141203388614f99565b60055461413c906201000090046001600160a01b031684614fb3565b61414582614fa7565b60005b6009548110156142c75760006009828154811061416157fe5b60009182526020808320909101546001600160a01b0316808352600a9091526040822060030154909250906141968583614e48565b9050806141dc576040805162461bcd60e51b815260206004820152600f60248201526e08aa4a4be9a82a890be82a0a0a49eb608b1b604482015290519081900360640190fd5b8989858181106141e857fe5b90506020020135811015614233576040805162461bcd60e51b815260206004820152600d60248201526c11549497d31253525517d3d555609a1b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a60205260409020600301546142599082614f2b565b6001600160a01b0384166000818152600a60209081526040918290206003019390935580518481529051919233927fe74c91552b64c2e2e7bd255639e004e693bd3e1d01cc33e65610b86afcc1ffed9281900390910190a36142bc833383614fbd565b505050600101614148565b50506005805461ff0019169055505050505050565b600881565b600281565b600181565b6000806142f8878661529d565b9050600061430e670de0b6b3a764000085614f2b565b905061431a8582614e48565b9050600061432c8a6127118c856151c8565b9050600061433a82856153d0565b90506000614350670de0b6b3a764000083614f2b565b905061435c8a82614e48565b9c9b505050505050505050505050565b600a670de0b6b3a7640000611442565b671bc16d674ec7ffff81565b600554606090610100900460ff16156143d6576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b60085460ff16614421576040805162461bcd60e51b815260206004820152601160248201527011549497d393d517d19253905312569151607a1b604482015290519081900360640190fd5b600980548060200260200160405190810160405280929190818152602001828054801561110d57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311614459575050505050905090565b600081565b600554606090610100900460ff1615614421576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b60095490565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a2600554610100900460ff1615614585576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6005805461ff001916610100179055600654336001600160a01b03909116146145ea576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16614647576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b60085460ff1615614692576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b6001600160a01b0381166000908152600a6020526040812060030154906146b98282614e48565b600b546001600160a01b0385166000908152600a60205260409020600201549192506146e491614f2b565b600b556001600160a01b0383166000908152600a602052604090206001015460098054600019810191908290811061471857fe5b600091825260209091200154600980546001600160a01b03909216918490811061473e57fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600a60006009858154811061477e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190206001015560098054806147b157fe5b600082815260208082206000199084018101805473ffffffffffffffffffffffffffffffffffffffff1916905590920190925560408051608081018252838152808301848152818301858152606083018681526001600160a01b038c168752600a909552929094209051815460ff1916901515178155925160018401555160028301555160039091015561484a8533611c768787614f2b565b600554611c9c9086906201000090046001600160a01b031685614fbd565b600554600090610100900460ff16156148b6576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b5060075490565b3360009081526001602090815260408083206001600160a01b03861684529091528120546148eb90836151c8565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b336001600160a01b03166000356001600160e01b0319166001600160e01b03191660003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a26006546001600160a01b03163314614a30576040805162461bcd60e51b815260206004820152601260248201527122a9292fa727aa2fa1a7a72a2927a62622a960711b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1615614a9e576040805162461bcd60e51b815260206004820152600c60248201527f4552525f49535f424f554e440000000000000000000000000000000000000000604482015290519081900360640190fd5b60085460ff1615614ae9576040805162461bcd60e51b815260206004820152601060248201526f11549497d254d7d1925390531256915160821b604482015290519081900360640190fd5b600954600811614b40576040805162461bcd60e51b815260206004820152600e60248201527f4552525f4d41585f544f4b454e53000000000000000000000000000000000000604482015290519081900360640190fd5b6040805160808101825260018082526009805460208085019182526000858701818152606087018281526001600160a01b038c16808452600a9094529782209651875460ff1916901515178755925186860155915160028601559451600390940193909355805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01805473ffffffffffffffffffffffffffffffffffffffff19169091179055614bfa83838361186c565b505050565b6002670de0b6b3a7640000611442565b600554600090610100900460ff1615614c5d576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16614cba576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a6020526040902060020154600b54614ce490829061529d565b9392505050565b600554600090610100900460ff1615614d39576040805162461bcd60e51b815260206004820152600b60248201526a4552525f5245454e54525960a81b604482015290519081900360640190fd5b6001600160a01b0382166000908152600a602052604090205460ff16614d96576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d093d55391609a1b604482015290519081900360640190fd5b506001600160a01b03166000908152600a602052604090206003015490565b600080614dc2858861529d565b90506000614dd08786614f2b565b90506000614dde888361529d565b90506000614dec82856153d0565b9050614e0081670de0b6b3a7640000614f2b565b9050614e14670de0b6b3a764000087614f2b565b9450614e29614e238c83614e48565b8661529d565b9b9a5050505050505050505050565b600654600160a01b900460ff1690565b6000828202831580614e62575082848281614e5f57fe5b04145b614eb3576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d554c5f4f564552464c4f5700000000000000000000000000000000604482015290519081900360640190fd5b6706f05b59d3b20000810181811015614f13576040805162461bcd60e51b815260206004820152601060248201527f4552525f4d554c5f4f564552464c4f5700000000000000000000000000000000604482015290519081900360640190fd5b6000670de0b6b3a7640000825b049695505050505050565b6000806000614f3a85856154ed565b915091508015614f91576040805162461bcd60e51b815260206004820152601160248201527f4552525f5355425f554e444552464c4f57000000000000000000000000000000604482015290519081900360640190fd5b509392505050565b614fa38282615512565b5050565b614fb08161551d565b50565b614fa382826155f6565b604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052915160009286169163a9059cbb91604480830192602092919082900301818787803b15801561502957600080fd5b505af115801561503d573d6000803e3d6000fd5b505050506040513d602081101561505357600080fd5b50519050806150a9576040805162461bcd60e51b815260206004820152600f60248201527f4552525f45524332305f46414c53450000000000000000000000000000000000604482015290519081900360640190fd5b50505050565b6001600160a01b03831660009081526020819052604090205481111561511c576040805162461bcd60e51b815260206004820152601460248201527f4552525f494e53554646494349454e545f42414c000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526020819052604090205461513f9082614f2b565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461516e90826151c8565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015614ce4576040805162461bcd60e51b815260206004820152601060248201527f4552525f4144445f4f564552464c4f5700000000000000000000000000000000604482015290519081900360640190fd5b604080517f23b872dd0000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301523060248301526044820184905291516000928616916323b872dd91606480830192602092919082900301818787803b15801561502957600080fd5b614fb081615601565b6000816152f1576040805162461bcd60e51b815260206004820152600c60248201527f4552525f4449565f5a45524f0000000000000000000000000000000000000000604482015290519081900360640190fd5b670de0b6b3a764000083028315806153195750670de0b6b3a764000084828161531657fe5b04145b61536a576040805162461bcd60e51b815260206004820152601060248201527f4552525f4449565f494e5445524e414c00000000000000000000000000000000604482015290519081900360640190fd5b600283048101818110156153c5576040805162461bcd60e51b815260206004820152601060248201527f4552525f4449565f494e5445524e414c00000000000000000000000000000000604482015290519081900360640190fd5b6000848281614f2057fe5b60006001831015615428576040805162461bcd60e51b815260206004820152601560248201527f4552525f42504f575f424153455f544f4f5f4c4f570000000000000000000000604482015290519081900360640190fd5b671bc16d674ec7ffff831115615485576040805162461bcd60e51b815260206004820152601660248201527f4552525f42504f575f424153455f544f4f5f4849474800000000000000000000604482015290519081900360640190fd5b600061549083615676565b9050600061549e8483614f2b565b905060006154b4866154af85615691565b61569f565b9050816154c5579250611178915050565b60006154d687846305f5e1006156f6565b90506154e28282614e48565b979650505050505050565b600080828410615503575050808203600061550b565b505081810360015b9250929050565b614fa38230836150af565b30600090815260208190526040902054811115615581576040805162461bcd60e51b815260206004820152601460248201527f4552525f494e53554646494349454e545f42414c000000000000000000000000604482015290519081900360640190fd5b3060009081526020819052604090205461559b9082614f2b565b306000908152602081905260409020556002546155b89082614f2b565b60025560408051828152905160009130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350565b614fa33083836150af565b3060009081526020819052604090205461561b90826151c8565b3060009081526020819052604090205560025461563890826151c8565b60025560408051828152905130916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350565b6000670de0b6b3a764000061568a83615691565b0292915050565b670de0b6b3a7640000900490565b600080600283066156b857670de0b6b3a76400006156ba565b835b90506002830492505b8215614ce4576156d38485614e48565b935060028306156156eb576156e88185614e48565b90505b6002830492506156c3565b600082818061570d87670de0b6b3a76400006154ed565b9092509050670de0b6b3a764000080600060015b8884106157c5576000670de0b6b3a7640000820290506000806157558a61575085670de0b6b3a7640000614f2b565b6154ed565b915091506157678761391d848c614e48565b9650615773878461529d565b965086615782575050506157c5565b871561578c579315935b8015615796579315935b84156157ad576157a68688614f2b565b95506157ba565b6157b786886151c8565b95505b505050600101615721565b5090999850505050505050505056fea265627a7a7231582008be3d1ae8df326becfb0d7fa15f3da56c3488a4813f666aa4154f7433e2a31e64736f6c634300050c0032", + "gasUsed": "0x467eb1" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x5e3a93a5837d95142305f1e2833e1761d4fa82074add6955670b584cac865243", + "transaction_position": 48, + "type": "create", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9424b1412450d0f8fc2255faf6046b98213b76bd", + "gas": "0x66350", + "input": "0x92eefe9b0000000000000000000000000af86acf75cd7dc616b40dbe33da038c900964f5", + "to": "0x1d4f7575bf0586c1f21f2c94c51ce4933050b399", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x243c", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0x5e3a93a5837d95142305f1e2833e1761d4fa82074add6955670b584cac865243", + "transaction_position": 48, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x21c64441279c8a47a4f9199a03d8f5c628b5810d", + "gas": "0x102d77", + "input": "0xe0e90acf000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a7615cd307f323172331865181dc8b80a283432400000000000000000000000000000000000000000000000000000000000000010000000000000000000000001becc315e044e8ee8898011609e63f8259d3b1240000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003e4dc5bb7cd0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000009964a127b5c0f1a460000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xbd11f", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xfe904", + "input": "0xe0e90acf000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a7615cd307f323172331865181dc8b80a283432400000000000000000000000000000000000000000000000000000000000000010000000000000000000000001becc315e044e8ee8898011609e63f8259d3b1240000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003e4dc5bb7cd0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000009964a127b5c0f1a460000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x939daad09fc4a9b8f8a9352a485dab2df4f4b3f8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xbcd31", + "output": "0x" + }, + "subtraces": 5, + "trace_address": [ + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xf9806", + "input": "0x13ede1a10000000000000000000000000000000000000000000000000000000000000001", + "to": "0x2971adfa57b20e5a416ae5a708a8655a9c74f723", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x631", + "output": "0x000000000000000000000000d6a602c01a023b98ecfb29df02fba380d3b21e0c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xf8763", + "input": "0xa829f165000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000001becc315e044e8ee8898011609e63f8259d3b124", + "to": "0xd6a602c01a023b98ecfb29df02fba380d3b21e0c", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x667", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xf7909", + "input": "0xdc5bb7cd0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000009964a127b5c0f1a460000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x1becc315e044e8ee8898011609e63f8259d3b124", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xb081b", + "output": "0x" + }, + "subtraces": 8, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xf321a", + "input": "0x70a08231000000000000000000000000437e4d0d77043c9a5021816997555a63a6de06f5", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x000000000000000000000000000000000000000000000000035cf04ed686ac35" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xf2436", + "input": "0x313ce567", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xf1cc5", + "input": "0x313ce567", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x15e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xf1218", + "input": "0x095ea7b3000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e000000000000000000000000000000000000000000000000035cf04ed686ac35", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d92", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xeaf97", + "input": "0x70a08231000000000000000000000000437e4d0d77043c9a5021816997555a63a6de06f5", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x0000000000000000000000000000000000000000000000ba8ff8cfc29b1e69bd" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 4 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xe9c80", + "input": "0xe2a7515e000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000000035cf04ed686ac3500000000000000000000000000000000000000000000000252c12b4a1b9fc24e00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xa264d", + "output": "0x" + }, + "subtraces": 10, + "trace_address": [ + 0, + 2, + 5 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0xe5752", + "input": "0x70a08231000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0xe49cf", + "input": "0x70a08231000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0xe3ac8", + "input": "0x23b872dd000000000000000000000000437e4d0d77043c9a5021816997555a63a6de06f5000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e000000000000000000000000000000000000000000000000035cf04ed686ac35", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x99a8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0xd9883", + "input": "0xdd62ed3e000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x71f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 3 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0xd8ad1", + "input": "0xdd62ed3e000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x71f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 4 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0xd7b35", + "input": "0x095ea7b3000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000000000000000000000000000035cf04ed686ac35", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d92", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 5 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0xd0db4", + "input": "0xe2a7515e000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000000035cf04ed686ac3500000000000000000000000000000000000000000000000252c12b4a1b9fc24e00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x87be2", + "output": "0x" + }, + "subtraces": 8, + "trace_address": [ + 0, + 2, + 5, + 6 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xccc96", + "input": "0x23b872dd000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000000000000000000000000000035cf04ed686ac35", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8940", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xc3dac", + "input": "0x70a08231000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x000000000000000000000000000000000000000000000000035cf04ed686ac35" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x1388", + "input": "0x06fdde03", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2b6", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000008436f6d706f756e64000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x1388", + "input": "0x06fdde03", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x275", + "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000e44616920537461626c65636f696e000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 3 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xb1b6e", + "input": "0xe2a7515e000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000000035cf04ed686ac35000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000005f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3a2d9db352580eb50018fc86eae32e19070a9982", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x62a56", + "output": "0x" + }, + "subtraces": 24, + "trace_address": [ + 0, + 2, + 5, + 6, + 4 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xad016", + "input": "0x06f2bf62000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888", + "to": "0xc0a47dfe034b400b47bdad5fecda2621de6c4d95", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x465", + "output": "0x000000000000000000000000daf005507e257d34cf5b9d52d01e7e1c0876cf5f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xac49e", + "input": "0xdd62ed3e000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000daf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x71f", + "output": "0x0000000000000000000000000000000000000000ffffffffffffffffffffffff" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xab668", + "input": "0xdd62ed3e000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000daf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x71f", + "output": "0x0000000000000000000000000000000000000000ffffffffffffffffffffffff" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xaa66b", + "input": "0x095ea7b3000000000000000000000000daf005507e257d34cf5b9d52d01e7e1c0876cf5f0000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x22fa", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 3 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xa7ca3", + "input": "0xdd62ed3e000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000daf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x71f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 4 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xa6cfb", + "input": "0x095ea7b3000000000000000000000000daf005507e257d34cf5b9d52d01e7e1c0876cf5fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1210", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 5 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0xa53fa", + "input": "0x95e3c50b00000000000000000000000000000000000000000000000000089c00c9d344480000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000005efeb29a", + "to": "0xdaf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x9684", + "output": "0x0000000000000000000000000000000000000000000000000005c33e69772f4ec9d344480000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000005efeb29a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 6 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xdaf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "gas": "0xa263a", + "input": "0x95e3c50b00000000000000000000000000000000000000000000000000089c00c9d344480000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000005efeb29a", + "to": "0x2157a7894439191e520825fe9399ab8655e0f708", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x91ec", + "output": "0x0000000000000000000000000000000000000000000000000005c33e69772f4e" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 6, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xdaf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "gas": "0x9ebf8", + "input": "0x70a08231000000000000000000000000daf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x0000000000000000000000000000000000000000000000000061ac5235c04ba4" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 6, + 0, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xdaf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "gas": "0x8fc", + "input": "0x", + "to": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "value": "0x5c33e69772f4e" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x40", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 6, + 0, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xdaf005507e257d34cf5b9d52d01e7e1c0876cf5f", + "gas": "0x9b3cf", + "input": "0x23b872dd000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000daf005507e257d34cf5b9d52d01e7e1c0876cf5f00000000000000000000000000000000000000000000000000089c00c9d34448", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3f0d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 6, + 0, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x9b8f5", + "input": "0x06f2bf620000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0xc0a47dfe034b400b47bdad5fecda2621de6c4d95", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x465", + "output": "0x0000000000000000000000002a1530c4c41db0b0b2bb646cb5eb1a67b7158667" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 7 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x99490", + "input": "0xf39b5b9b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000005efeb29a", + "to": "0x2a1530c4c41db0b0b2bb646cb5eb1a67b7158667", + "value": "0x5c33e69772f4e" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xb20c", + "output": "0x00000000000000000000000000000000000000000000000005012e90c633cede00000001000000000000000000000000000000000000000000000000000000005efeb29a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 8 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x2a1530c4c41db0b0b2bb646cb5eb1a67b7158667", + "gas": "0x969d0", + "input": "0xf39b5b9b0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000005efeb29a", + "to": "0x2157a7894439191e520825fe9399ab8655e0f708", + "value": "0x5c33e69772f4e" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xad77", + "output": "0x00000000000000000000000000000000000000000000000005012e90c633cede" + }, + "subtraces": 2, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 8, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2a1530c4c41db0b0b2bb646cb5eb1a67b7158667", + "gas": "0x93339", + "input": "0x70a082310000000000000000000000002a1530c4c41db0b0b2bb646cb5eb1a67b7158667", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x000000000000000000000000000000000000000000008760b7a00b6abfa11671" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 8, + 0, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x2a1530c4c41db0b0b2bb646cb5eb1a67b7158667", + "gas": "0x915ee", + "input": "0xa9059cbb000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d5200000000000000000000000000000000000000000000000005012e90c633cede", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x76a6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 8, + 0, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x8d41f", + "input": "0xe6a43905000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4f0", + "output": "0x000000000000000000000000f3194e22d3212a6f930a7c6a88003d43f68befab" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 9 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x8c802", + "input": "0x70a08231000000000000000000000000f3194e22d3212a6f930a7c6a88003d43f68befab", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x000000000000000000000000000000000000000000000000248e12b64145a4d9" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 10 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x8bb1a", + "input": "0x70a08231000000000000000000000000f3194e22d3212a6f930a7c6a88003d43f68befab", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x00000000000000000000000000000000000000000000001a9337e535069f2b4d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 11 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x8a969", + "input": "0xa9059cbb000000000000000000000000f3194e22d3212a6f930a7c6a88003d43f68befab00000000000000000000000000000000000000000000000000227003274d1120", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3a2a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 12 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x8687d", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000018de8f5d0abe03090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xf3194e22d3212a6f930a7c6a88003d43f68befab", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xcefb", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 13 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf3194e22d3212a6f930a7c6a88003d43f68befab", + "gas": "0x81ef7", + "input": "0xa9059cbb000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d5200000000000000000000000000000000000000000000000018de8f5d0abe0309", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2ba6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 13, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf3194e22d3212a6f930a7c6a88003d43f68befab", + "gas": "0x7ecf5", + "input": "0x70a08231000000000000000000000000f3194e22d3212a6f930a7c6a88003d43f68befab", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x00000000000000000000000000000000000000000000001a7a5955d7fbe12844" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 13, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf3194e22d3212a6f930a7c6a88003d43f68befab", + "gas": "0x7e1c0", + "input": "0x70a08231000000000000000000000000f3194e22d3212a6f930a7c6a88003d43f68befab", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x00000000000000000000000000000000000000000000000024b082b96892b5f9" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 13, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x79127", + "input": "0xe6a43905000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4f0", + "output": "0x000000000000000000000000cffdded873554f362ac02f8fb1f02e5ada10516f" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 14 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x7850a", + "input": "0x70a08231000000000000000000000000cffdded873554f362ac02f8fb1f02e5ada10516f", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x0000000000000000000000000000000000000000000000900fce1df62f485730" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 15 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x77823", + "input": "0x70a08231000000000000000000000000cffdded873554f362ac02f8fb1f02e5ada10516f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000077320d026ecad2825b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 16 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x766bb", + "input": "0xa9059cbb000000000000000000000000cffdded873554f362ac02f8fb1f02e5ada10516f0000000000000000000000000000000000000000000000000331e44ae56656cd", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3a2a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 17 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x725d0", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a2a0ea7a90497f000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xcffdded873554f362ac02f8fb1f02e5ada10516f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x118e3", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 18 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xcffdded873554f362ac02f8fb1f02e5ada10516f", + "gas": "0x6e136", + "input": "0xa9059cbb000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d5200000000000000000000000000000000000000000000000002a2a0ea7a90497f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x75d2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 18, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xcffdded873554f362ac02f8fb1f02e5ada10516f", + "gas": "0x66644", + "input": "0x70a08231000000000000000000000000cffdded873554f362ac02f8fb1f02e5ada10516f", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x0000000000000000000000000000000000000000000000901300024114aeadfd" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 18, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xcffdded873554f362ac02f8fb1f02e5ada10516f", + "gas": "0x65a59", + "input": "0x70a08231000000000000000000000000cffdded873554f362ac02f8fb1f02e5ada10516f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000000772f6a6184504238dc" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 18, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x6087a", + "input": "0xe6a43905000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4f0", + "output": "0x000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 19 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x5fc5d", + "input": "0x70a08231000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000003445b57db9f633e7b0b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 20 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x5f06f", + "input": "0x70a08231000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x00000000000000000000000000000000000000000002d6829467bd3cce5d21c1" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 21 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x5decb", + "input": "0xa9059cbb000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb1100000000000000000000000000000000000000000000000002a2a0ea7a90497f", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2ad2", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 22 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x5acf9", + "input": "0x022c0d9f000000000000000000000000000000000000000000000002484207162c982d260000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xcdfd", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 23 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "gas": "0x56e61", + "input": "0xa9059cbb000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52000000000000000000000000000000000000000000000002484207162c982d26", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2ba6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 23, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "gas": "0x53c5f", + "input": "0x70a08231000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x00000000000000000000000000000000000000000002d6804c25b626a1c4f49b" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 23, + 1 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "gas": "0x5312a", + "input": "0x70a08231000000000000000000000000a478c2975ab1ea89e8196811f51a7b7ade33eb11", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000003445dfa7c89ddcec48a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 4, + 23, + 2 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x50164", + "input": "0x70a08231000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x0000000000000000000000000000000000000000000000026621c503fd89ff0d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 5 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x4f2ab", + "input": "0xa9059cbb000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e0000000000000000000000000000000000000000000000026621c503fd89ff0d", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x663e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 6 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc3037b2a1a9e9268025ff6d45fe7095436446d52", + "gas": "0x4862b", + "input": "0x70a08231000000000000000000000000c3037b2a1a9e9268025ff6d45fe7095436446d52", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 6, + 7 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0x4acdb", + "input": "0x70a08231000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 7 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0x4a007", + "input": "0x70a08231000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x0000000000000000000000000000000000000000000000026621c503fd89ff0d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 8 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "gas": "0x490a7", + "input": "0xa9059cbb000000000000000000000000437e4d0d77043c9a5021816997555a63a6de06f50000000000000000000000000000000000000000000000026621c503fd89ff0d", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x2ba6", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5, + 9 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0x49866", + "input": "0x70a08231000000000000000000000000437e4d0d77043c9a5021816997555a63a6de06f5", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x0000000000000000000000000000000000000000000000bcf61a94c698a868ca" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 6 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0x47d8b", + "input": "0xe14d4fb1000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000118d9bc2a1bde35a10f10d4953a131a84701a1e89707f3a6f359e6a850b5da33fe000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000000000000000000000000000026621c503fd89ff0d000000000000000000000000000000000000000000000000035cf04ed686ac3500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x2af7ea6cb911035f3eb1ed895cb6692c39ecba97", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1e85", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2, + 7 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x2af7ea6cb911035f3eb1ed895cb6692c39ecba97", + "gas": "0x463e8", + "input": "0x6cfaf5e9000000000000000000000000437e4d0d77043c9a5021816997555a63a6de06f5", + "to": "0x4c8a1beb8a87765788946d6b19c6c6355194abeb", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b6", + "output": "0x000000000000000000000000000000000000000000000000000000000000059a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 7, + 0 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0x49635", + "input": "0x5f72f4500000000000000000000000000000000000000000000000000000000000000001", + "to": "0x2971adfa57b20e5a416ae5a708a8655a9c74f723", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x646", + "output": "0x00000000000000000000000006cb7c24990cbe6b9f99982f975f9147c000fec6" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0x4888f", + "input": "0xd957dd3c", + "to": "0x06cb7c24990cbe6b9f99982f975f9147c000fec6", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x7614", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_position": 49, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x21c64441279c8a47a4f9199a03d8f5c628b5810d", + "gas": "0xbcdd1", + "input": "0xe0e90acf000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a7615cd307f323172331865181dc8b80a283432400000000000000000000000000000000000000000000000000000000000000010000000000000000000000001becc315e044e8ee8898011609e63f8259d3b1240000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003e4dc5bb7cd0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000009f00b55ad31ed3af400000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8f4b", + "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d4f6e6553706c69743a2073776170206d616b6573206e6f2073656e7365000000" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "delegatecall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xb9adc", + "input": "0xe0e90acf000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a7615cd307f323172331865181dc8b80a283432400000000000000000000000000000000000000000000000000000000000000010000000000000000000000001becc315e044e8ee8898011609e63f8259d3b1240000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000003e4dc5bb7cd0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000009f00b55ad31ed3af400000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x939daad09fc4a9b8f8a9352a485dab2df4f4b3f8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x8b52", + "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d4f6e6553706c69743a2073776170206d616b6573206e6f2073656e7365000000" + }, + "subtraces": 3, + "trace_address": [ + 0 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xb5b17", + "input": "0x13ede1a10000000000000000000000000000000000000000000000000000000000000001", + "to": "0x2971adfa57b20e5a416ae5a708a8655a9c74f723", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x631", + "output": "0x000000000000000000000000d6a602c01a023b98ecfb29df02fba380d3b21e0c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xb4a73", + "input": "0xa829f165000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000000000000000000001becc315e044e8ee8898011609e63f8259d3b124", + "to": "0xd6a602c01a023b98ecfb29df02fba380d3b21e0c", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x667", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xb3c19", + "input": "0xdc5bb7cd0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c00e94cb662c3520282e6f5717214004a7f26888ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000009f00b55ad31ed3af4000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0x1becc315e044e8ee8898011609e63f8259d3b124", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x59f9", + "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d4f6e6553706c69743a2073776170206d616b6573206e6f2073656e7365000000" + }, + "subtraces": 6, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xb061e", + "input": "0x70a08231000000000000000000000000437e4d0d77043c9a5021816997555a63a6de06f5", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 0 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xaf839", + "input": "0x313ce567", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xaf0c9", + "input": "0x313ce567", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x15e", + "output": "0x0000000000000000000000000000000000000000000000000000000000000012" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 2 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xae64f", + "input": "0x095ea7b3000000000000000000000000c586bef4a0992c495cf22e1aeee4e446cecdee0e0000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1292", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 3 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xacda2", + "input": "0x70a08231000000000000000000000000437e4d0d77043c9a5021816997555a63a6de06f5", + "to": "0x6b175474e89094c44da98b954eedeac495271d0f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x516", + "output": "0x0000000000000000000000000000000000000000000000bcf61a94c698a868ca" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 4 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x437e4d0d77043c9a5021816997555a63a6de06f5", + "gas": "0xaba8b", + "input": "0xe2a7515e000000000000000000000000c00e94cb662c3520282e6f5717214004a7f268880000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "to": "0xc586bef4a0992c495cf22e1aeee4e446cecdee0e", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3d1", + "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001d4f6e6553706c69743a2073776170206d616b6573206e6f2073656e7365000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 5 + ], + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_position": 50, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "call", + "from": "0xfffff0c5512e2bdf0206ceb4c0eef0237f097453", + "gas": "0x741c7", + "input": "0x65d78dd8000000000000000000000000e43f2bc70cfa008432087ae8945f9abe3dee07e03e13e134ca1ed64b4f0cbe272f5ccdbfa5ed9aa1e8e1325cf78e72a9864dac6c000000000000000000000000000000000000000000000000a42f061ef4b5d5c0000000000000000000000000000000000000000000000000000000000010f44700000000000000000000000000000000000000000000000007439b08ccb3fcf900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b1433bb46f1d83b22e4b4ef235da7dda0fe3451a61a000000000000000000000005000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x12229", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x671c7", + "input": "0x7d12cf8500000000000000000000000000000000000000000000000007439b08ccb3fcf900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b1433bb46f1d83b22e4b4ef235da7dda0fe3451a61a000000000000000000000005000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xe43f2bc70cfa008432087ae8945f9abe3dee07e0", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xbe62", + "output": "0x" + }, + "subtraces": 8, + "trace_address": [ + 0 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x64abe", + "input": "0xf8b2cb4f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x33bb46f1d83b22e4b4ef235da7dda0fe3451a61a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xbaf", + "output": "0x000000000000000000000000000000000000000000000001434de0e0c7e4dc72" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x638d5", + "input": "0x948d8ce6000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "to": "0x33bb46f1d83b22e4b4ef235da7dda0fe3451a61a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xb9b", + "output": "0x0000000000000000000000000000000000000000000000015af1d78b58c40000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x62700", + "input": "0xf8b2cb4f000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b14", + "to": "0x33bb46f1d83b22e4b4ef235da7dda0fe3451a61a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xbaf", + "output": "0x00000000000000000000000000000000000000000000009db869ed8e7d331633" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x61516", + "input": "0x948d8ce6000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b14", + "to": "0x33bb46f1d83b22e4b4ef235da7dda0fe3451a61a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xb9b", + "output": "0x000000000000000000000000000000000000000000000001158e460913d00000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x60380", + "input": "0xd4cadf68", + "to": "0x33bb46f1d83b22e4b4ef235da7dda0fe3451a61a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x7b8", + "output": "0x0000000000000000000000000000000000000000000000000005543df729c000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x5f50b", + "input": "0xba9530a6000000000000000000000000000000000000000000000001434de0e0c7e4dc720000000000000000000000000000000000000000000000015af1d78b58c4000000000000000000000000000000000000000000000000009db869ed8e7d331633000000000000000000000000000000000000000000000001158e460913d0000000000000000000000000000000000000000000000000000007439b08ccb3fcf90000000000000000000000000000000000000000000000000005543df729c000", + "to": "0x33bb46f1d83b22e4b4ef235da7dda0fe3451a61a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x27e3", + "output": "0x00000000000000000000000000000000000000000000000450627d3ab956aba9" + }, + "subtraces": 0, + "trace_address": [ + 0, + 5 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x5bd5e", + "input": "0x0902f1ac", + "to": "0xd7ba33a66a51fb6d01b488df1682dfcc38c8d05f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000000000000000236f8f1c7000000000000000000000000000000000000000000000155e663dc42aa3aae6d000000000000000000000000000000000000000000000000000000005efeb0f5" + }, + "subtraces": 0, + "trace_address": [ + 0, + 6 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x5a66b", + "input": "0x0902f1ac", + "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000000000b0d5029b63c22a06a0000000000000000000000000000000000000000000000000000000ab24c04bb000000000000000000000000000000000000000000000000000000005efeb1cb" + }, + "subtraces": 0, + "trace_address": [ + 0, + 7 + ], + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_position": 51, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xfffffff6fd89188376e106f97d0791bf6974fd04", + "gas": "0x741c7", + "input": "0x65d78dd8000000000000000000000000e43f2bc70cfa008432087ae8945f9abe3dee07e03e13e134ca1ed64b4f0cbe272f5ccdbfa5ed9aa1e8e1325cf78e72a9864dac6c000000000000000000000000000000000000000000000000a42f061ef4b5d5c0000000000000000000000000000000000000000000000000000000000010f44700000000000000000000000000000000000000000000000007439b08ccb3fcf900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b1433bb46f1d83b22e4b4ef235da7dda0fe3451a61a000000000000000000000005000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x930", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xea3a55e167c9992e92958d83df17eac99a557a1c5a8ef01edfe5b47840a9db33", + "transaction_position": 52, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xaf028cf9a1074fd5134ce90958757982c2c23ac6", + "gas": "0x51e28", + "input": "0x3ccfd60b", + "to": "0xfa85069e3d1ca1b09945cf11d2365386b1e4430a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3e46", + "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b5a65726f207061796f7574000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x29ad0d6ae1bdf8a16b2f2737ae6e8ee57460ee55cc1d6fd8cca6895a23631ffb", + "transaction_position": 53, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "staticcall", + "from": "0xfa85069e3d1ca1b09945cf11d2365386b1e4430a", + "gas": "0x4ffb6", + "input": "0x6da61d1e000000000000000000000000af028cf9a1074fd5134ce90958757982c2c23ac6", + "to": "0xfa85069e3d1ca1b09945cf11d2365386b1e4430a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1a78", + "output": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a582a822fcb0000" + }, + "subtraces": 1, + "trace_address": [ + 0 + ], + "transaction_hash": "0x29ad0d6ae1bdf8a16b2f2737ae6e8ee57460ee55cc1d6fd8cca6895a23631ffb", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xfa85069e3d1ca1b09945cf11d2365386b1e4430a", + "gas": "0x4e14f", + "input": "0x8959af3c0000000000000000000000000000000000000000000000001d24b2dfac520000", + "to": "0xfa85069e3d1ca1b09945cf11d2365386b1e4430a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x176", + "output": "0x0000000000000000000000000000000000000000000000005a582a822fcb0000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x29ad0d6ae1bdf8a16b2f2737ae6e8ee57460ee55cc1d6fd8cca6895a23631ffb", + "transaction_position": 53, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x131c89aba76e5a90a156ce3d6b16896a05b93a93", + "gas": "0x43916", + "input": "0x38ed1739000000000000000000000000000000000000000000000000000000002ad3d2ea00000000000000000000000000000000000000000000556291b63e711a19f28400000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000131c89aba76e5a90a156ce3d6b16896a05b93a93000000000000000000000000000000000000000000000000000000005efeb4600000000000000000000000000000000000000000000000000000000000000004000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000bb7db697567178c590efa64a7dcb2ce6213768c", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3c66c", + "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000002ad3d2ea000000000000000000000000000000000000000000000000000000002ac9409a0000000000000000000000000000000000000000000000002bda307f6db1d82e0000000000000000000000000000000000000000000063d3517de3cba4279915" + }, + "subtraces": 7, + "trace_address": [], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x41abd", + "input": "0x0902f1ac", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b4", + "output": "0x0000000000000000000000000000000000000000000000000000011a0201fd950000000000000000000000000000000000000000000000000000011944321e28000000000000000000000000000000000000000000000000000000005efeb27d" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x40895", + "input": "0x0902f1ac", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000000000001b3117750ee0000000000000000000000000000000000000000000001bf6c26b2f5f57a54a1000000000000000000000000000000000000000000000000000000005efeb27d" + }, + "subtraces": 0, + "trace_address": [ + 1 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x3f662", + "input": "0x0902f1ac", + "to": "0x48f4a6c65abb4b209823771b0d2c0f156ee6268b", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000065461e0b4268c5e20297b00000000000000000000000000000000000000000000000299f60e524c23bbc1000000000000000000000000000000000000000000000000000000005efeb282" + }, + "subtraces": 0, + "trace_address": [ + 2 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x3e492", + "input": "0x23b872dd000000000000000000000000131c89aba76e5a90a156ce3d6b16896a05b93a930000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f000000000000000000000000000000000000000000000000000000002ad3d2ea", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4f6a", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 3 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x386ec", + "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000002ac9409a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1063e", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 4 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "gas": "0x350ec", + "input": "0xa9059cbb000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc000000000000000000000000000000000000000000000000000000002ac9409a", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x539d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 4, + 0 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x3391b", + "input": "0xa9059cbb000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc000000000000000000000000000000000000000000000000000000002ac9409a", + "to": "0x0882477e7895bdc5cea7cb1552ed914ab157fe56", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x48b8", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 4, + 0, + 0 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "gas": "0x2f793", + "input": "0x70a082310000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x10b3", + "output": "0x00000000000000000000000000000000000000000000000000000119d738bcfb" + }, + "subtraces": 1, + "trace_address": [ + 4, + 1 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x2e12a", + "input": "0x70a082310000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0x0882477e7895bdc5cea7cb1552ed914ab157fe56", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d1", + "output": "0x00000000000000000000000000000000000000000000000000000119d738bcfb" + }, + "subtraces": 0, + "trace_address": [ + 4, + 1, + 0 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3041cbd36888becc7bbcbc0045e3b1f144466f5f", + "gas": "0x2e0f0", + "input": "0x70a082310000000000000000000000003041cbd36888becc7bbcbc0045e3b1f144466f5f", + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x97f", + "output": "0x000000000000000000000000000000000000000000000000000001196f05f112" + }, + "subtraces": 0, + "trace_address": [ + 4, + 2 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x27662", + "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bda307f6db1d82e00000000000000000000000048f4a6c65abb4b209823771b0d2c0f156ee6268b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xe92e", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 5 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "gas": "0x24486", + "input": "0xa9059cbb00000000000000000000000048f4a6c65abb4b209823771b0d2c0f156ee6268b0000000000000000000000000000000000000000000000002bda307f6db1d82e", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3b3a", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 5, + 0 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "gas": "0x20342", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x10b3", + "output": "0x000000000000000000000000000000000000000000000000000001b33c409188" + }, + "subtraces": 1, + "trace_address": [ + 5, + 1 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "gas": "0x1f0aa", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0x0882477e7895bdc5cea7cb1552ed914ab157fe56", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5d1", + "output": "0x000000000000000000000000000000000000000000000000000001b33c409188" + }, + "subtraces": 0, + "trace_address": [ + 5, + 1, + 0 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "gas": "0x1ec9f", + "input": "0x70a08231000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4d2", + "output": "0x0000000000000000000000000000000000000000000001bf404c827687c87c73" + }, + "subtraces": 0, + "trace_address": [ + 5, + 2 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "gas": "0x184fb", + "input": "0x022c0d9f0000000000000000000000000000000000000000000063d3517de3cba42799150000000000000000000000000000000000000000000000000000000000000000000000000000000000000000131c89aba76e5a90a156ce3d6b16896a05b93a9300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", + "to": "0x48f4a6c65abb4b209823771b0d2c0f156ee6268b", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1162a", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 6 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x48f4a6c65abb4b209823771b0d2c0f156ee6268b", + "gas": "0x15703", + "input": "0xa9059cbb000000000000000000000000131c89aba76e5a90a156ce3d6b16896a05b93a930000000000000000000000000000000000000000000063d3517de3cba4279915", + "to": "0x0bb7db697567178c590efa64a7dcb2ce6213768c", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x7427", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 6, + 0 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x48f4a6c65abb4b209823771b0d2c0f156ee6268b", + "gas": "0xdda2", + "input": "0x70a0823100000000000000000000000048f4a6c65abb4b209823771b0d2c0f156ee6268b", + "to": "0x0bb7db697567178c590efa64a7dcb2ce6213768c", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4c2", + "output": "0x00000000000000000000000000000000000000000005f08e8f3642c0b9f89066" + }, + "subtraces": 0, + "trace_address": [ + 6, + 1 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x48f4a6c65abb4b209823771b0d2c0f156ee6268b", + "gas": "0xd2c0", + "input": "0x70a0823100000000000000000000000048f4a6c65abb4b209823771b0d2c0f156ee6268b", + "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4d2", + "output": "0x000000000000000000000000000000000000000000000002c5d03ed1b9d593ef" + }, + "subtraces": 0, + "trace_address": [ + 6, + 2 + ], + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_position": 54, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xfffffcf997a338dabebc43b67a891a5c76ff6c2f", + "gas": "0x741c7", + "input": "0x65d78dd8000000000000000000000000e43f2bc70cfa008432087ae8945f9abe3dee07e03e13e134ca1ed64b4f0cbe272f5ccdbfa5ed9aa1e8e1325cf78e72a9864dac6c000000000000000000000000000000000000000000000000a42f061ef4b5d5c0000000000000000000000000000000000000000000000000000000000010f44700000000000000000000000000000000000000000000000007439b08ccb3fcf900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b1433bb46f1d83b22e4b4ef235da7dda0fe3451a61a000000000000000000000005000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x930", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x51d7ca75b6f0386fac9b94eb637b3c6211a531fd29aa3e9dd9201f1807994e86", + "transaction_position": 55, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xffff0c1e1b11b7d0be2ae5fc3a1db68662167a15", + "gas": "0x741c7", + "input": "0x65d78dd8000000000000000000000000e43f2bc70cfa008432087ae8945f9abe3dee07e03e13e134ca1ed64b4f0cbe272f5ccdbfa5ed9aa1e8e1325cf78e72a9864dac6c000000000000000000000000000000000000000000000000a42f061ef4b5d5c0000000000000000000000000000000000000000000000000000000000010f44700000000000000000000000000000000000000000000000007439b08ccb3fcf900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b1433bb46f1d83b22e4b4ef235da7dda0fe3451a61a000000000000000000000005000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x930", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x79896fc894feab783977bee07645490098571ab7dd84d194877819dcd9f74190", + "transaction_position": 56, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xf8ab79fcfbb3d22793ab6536acdde3eb7eac856b", + "gas": "0x23121", + "input": "0x7ff36ab5000000000000000000000000000000000000000000000003bb23671610e7bfc60000000000000000000000000000000000000000000000000000000000000080000000000000000000000000f8ab79fcfbb3d22793ab6536acdde3eb7eac856b000000000000000000000000000000000000000000000000000000005efeb1220000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x6f05b59d3b20000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x233", + "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000018556e69737761705632526f757465723a20455850495245440000000000000000" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xb0e79e5f8b08f5e1a40cfce7ebce72b226b954400a08ced8198b2dee283fbbdc", + "transaction_position": 57, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "call", + "from": "0xffff0fc92bdd117965e31ad11f8c44b29303f29b", + "gas": "0x741c7", + "input": "0x65d78dd8000000000000000000000000e43f2bc70cfa008432087ae8945f9abe3dee07e03e13e134ca1ed64b4f0cbe272f5ccdbfa5ed9aa1e8e1325cf78e72a9864dac6c000000000000000000000000000000000000000000000000a42f061ef4b5d5c0000000000000000000000000000000000000000000000000000000000010f44700000000000000000000000000000000000000000000000007439b08ccb3fcf900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b1433bb46f1d83b22e4b4ef235da7dda0fe3451a61a000000000000000000000005000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x930", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x7b631afda32aab901dff21ffdd5eb87f7767d31291d6d69e067e4853da60af22", + "transaction_position": 58, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xfffffe0b1309cc6a11149e45777c418b8f1483fd", + "gas": "0x7aca5", + "input": "0x65d78dd8000000000000000000000000e43f2bc70cfa008432087ae8945f9abe3dee07e03e13e134c8a245f022d43d8e0e8695db854a5d7c85a3591cfeae34f6426e937d000000000000000000000000000000000000000000000000951eada69f97c7d8000000000000000000000000000000000000000000000000000000000010f447000000000000000000000000000000000000000000000000b4dcaae0777324d200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000040000000000000000000000006b175474e89094c44da98b954eedeac495271d0fa5407eae9ba41422680e2e00537571bcc53efbfd00000000000000000001a9d200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1264c", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0xb83cda3f2e4c081da3a94ba558c93bd4fbf6647fdc7956a8cad1ef94d23176e3", + "transaction_position": 59, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x6dca5", + "input": "0x7d12cf85000000000000000000000000000000000000000000000000b4dcaae0777324d200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000040000000000000000000000006b175474e89094c44da98b954eedeac495271d0fa5407eae9ba41422680e2e00537571bcc53efbfd00000000000000000001a9d200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xe43f2bc70cfa008432087ae8945f9abe3dee07e0", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xc285", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0 + ], + "transaction_hash": "0xb83cda3f2e4c081da3a94ba558c93bd4fbf6647fdc7956a8cad1ef94d23176e3", + "transaction_position": 59, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x6af85", + "input": "0x0902f1ac", + "to": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b4", + "output": "0x000000000000000000000000000000000000000000000000000001b33c4091880000000000000000000000000000000000000000000001bf404c827687c87c73000000000000000000000000000000000000000000000000000000005efeb29a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0xb83cda3f2e4c081da3a94ba558c93bd4fbf6647fdc7956a8cad1ef94d23176e3", + "transaction_position": 59, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x69d34", + "input": "0x5e0d443f0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000af32f3d4", + "to": "0xa5407eae9ba41422680e2e00537571bcc53efbfd", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x831d", + "output": "0x00000000000000000000000000000000000000000000009d78c1c9683e0004db" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0xb83cda3f2e4c081da3a94ba558c93bd4fbf6647fdc7956a8cad1ef94d23176e3", + "transaction_position": 59, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "gas": "0x60b77", + "input": "0x0902f1ac", + "to": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4b4", + "output": "0x00000000000000000000000000000000000000000002d6804c25b626a1c4f49b0000000000000000000000000000000000000000000003445dfa7c89ddcec48a000000000000000000000000000000000000000000000000000000005efeb29a" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0xb83cda3f2e4c081da3a94ba558c93bd4fbf6647fdc7956a8cad1ef94d23176e3", + "transaction_position": 59, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xfffff27d90d7468238c6b4fb85fb92227711a9ad", + "gas": "0x741c7", + "input": "0x65d78dd8000000000000000000000000e43f2bc70cfa008432087ae8945f9abe3dee07e03e13e134ca1ed64b4f0cbe272f5ccdbfa5ed9aa1e8e1325cf78e72a9864dac6c000000000000000000000000000000000000000000000000a42f061ef4b5d5c0000000000000000000000000000000000000000000000000000000000010f44700000000000000000000000000000000000000000000000007439b08ccb3fcf900000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000ed91879919b71bb6905f23af0a68d231ecf87b1433bb46f1d83b22e4b4ef235da7dda0fe3451a61a000000000000000000000005000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004", + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x930", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x444a6610289b2656d7f781a7c480e34848f96e9d6b64a791491283a361f52498", + "transaction_position": 60, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd5d287e1f0d04acdbf7f4d2c9179e6e37c1bd56e", + "gas": "0x4e3fa", + "input": "0x8803dbee0000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000225f66ed0381cf54c00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d5d287e1f0d04acdbf7f4d2c9179e6e37c1bd56e000000000000000000000000000000000000000000000000000000005efeb22f0000000000000000000000000000000000000000000000000000000000000004000000000000000000000000c011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f", + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x242", + "output": "0x08c379a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000018556e69737761705632526f757465723a20455850495245440000000000000000" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x21c71368bce0ffc50d78ce746e4bdd04ba13813fc254c8ce3e904fcc094fc5d2", + "transaction_position": 61, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "call", + "from": "0xc834395315ff25140d18cfd1fdf146363217bc60", + "gas": "0x3c133", + "input": "0xd2d0e0660000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000000000000000000000000000068a415368347f01900000000000000000000000000000000000000000000000000000000000000000", + "to": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x30f89", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x3a7c2", + "input": "0xd2d0e0660000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef0000000000000000000000000000000000000000000000068a415368347f01900000000000000000000000000000000000000000000000000000000000000000", + "to": "0x6d252baea75459ed0077410613c5f6e51cab4750", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x304cc", + "output": "0x" + }, + "subtraces": 7, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x37854", + "input": "0x05075d6e0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf76", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 1, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x3602f", + "input": "0x05075d6e0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4df", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x35f91", + "input": "0x4a08accb0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xfa0", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 1, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x347cf", + "input": "0x4a08accb0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x509", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x34678", + "input": "0x34b3beee0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xf8c", + "output": "0x000000000000000000000000e1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00" + }, + "subtraces": 1, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x32f1a", + "input": "0x34b3beee0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4f5", + "output": "0x000000000000000000000000e1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x330e3", + "input": "0x70a08231000000000000000000000000c834395315ff25140d18cfd1fdf146363217bc60", + "to": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3e22", + "output": "0x000000000000000000000000000000000000000000000005049555ffdf5810f0" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "gas": "0x3085e", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c9a", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 3, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x2f1d9", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x11e3", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 3, + 0, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x2ea12", + "input": "0xbcd6ffa40000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000c834395315ff25140d18cfd1fdf146363217bc600000000000000000000000000000000000000000000000068a415368347f01900000000000000000000000000000000000000000000000000000000000000000", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xeaa2", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 4 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x2d3f8", + "input": "0xbcd6ffa40000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000c834395315ff25140d18cfd1fdf146363217bc600000000000000000000000000000000000000000000000068a415368347f01900000000000000000000000000000000000000000000000000000000000000000", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xdfdf", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 4, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x28fc4", + "input": "0x70a082310000000000000000000000003dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "to": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x5fb", + "output": "0x000000000000000000000000000000000000000000012b60a3e6d615fe6e616d" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4, + 0, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x2795c", + "input": "0x57e37af00000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000000000000000000000012b672e28297e32ed62fd00000000000000000000000000000000000000000000e3da73f4f09b22980e170000000000000000000000000000000000000000000011ca04bf73249249f29b00000000000000000000000000000000000000000040cc4a3b9728be83760dc6", + "to": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x3d18", + "output": "0x0000000000000000000000000000000000000000001d142ad7de55c77bfeb50f0000000000000000000000000000000000000000006e9cdefdc0cbba574ccb710000000000000000000000000000000000000000003cfb607948c4089b4ccb71" + }, + "subtraces": 2, + "trace_address": [ + 0, + 4, + 0, + 1 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "gas": "0x26255", + "input": "0x3618abba", + "to": "0x24a42fd28c976a61df5d00d0599c34c4f90748c8", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4bf", + "output": "0x0000000000000000000000004d728a4496e4de35f218d5a214366bde3a62b51c" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4, + 0, + 1, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x85b6c5e82886be58e99c3aeab8c74f566dc5811a", + "gas": "0x25760", + "input": "0xbb85c0bb0000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x4d728a4496e4de35f218d5a214366bde3a62b51c", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x48c", + "output": "0x00000000000000000000000000000000000000000018d0bf423c03d8de000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 4, + 0, + 1, + 1 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x1fcf2", + "input": "0x94362e8b000000000000000000000000c834395315ff25140d18cfd1fdf146363217bc600000000000000000000000000000000000000000000000068a415368347f0190", + "to": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xdafd", + "output": "0x" + }, + "subtraces": 2, + "trace_address": [ + 0, + 5 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "gas": "0x1d1f8", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c9a", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 5, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x1c04d", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x11e3", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 5, + 0, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0xe1ba0fb44ccb0d11b80f92f4f8ed94ca3ff51d00", + "gas": "0x16ee2", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1c9a", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 1, + "trace_address": [ + 0, + 5, + 1 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x15ec3", + "input": "0xd15e00530000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x11e3", + "output": "0x0000000000000000000000000000000000000000033e7caea86776764e9d645e" + }, + "subtraces": 0, + "trace_address": [ + 0, + 5, + 1, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x398ec7346dcd622edc5ae82352f02be94c62d119", + "gas": "0x11c00", + "input": "0x28fcf4d30000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000c834395315ff25140d18cfd1fdf146363217bc600000000000000000000000000000000000000000000000068a415368347f0190", + "to": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x7059", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 6 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0x10d43", + "input": "0x28fcf4d30000000000000000000000000d8775f648430679a709e98d2b0cb6250d2887ef000000000000000000000000c834395315ff25140d18cfd1fdf146363217bc600000000000000000000000000000000000000000000000068a415368347f0190", + "to": "0x5766067108e534419ce13f05899bc3e3f4344948", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x65bc", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [ + 0, + 6, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x3dfd23a6c5e8bbcfc9581d2e864a68feb6a076d3", + "gas": "0xfb3b", + "input": "0x23b872dd000000000000000000000000c834395315ff25140d18cfd1fdf146363217bc600000000000000000000000003dfd23a6c5e8bbcfc9581d2e864a68feb6a076d30000000000000000000000000000000000000000000000068a415368347f0190", + "to": "0x0d8775f648430679a709e98d2b0cb6250d2887ef", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x568f", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 6, + 0, + 0 + ], + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_position": 62, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x270864586801f4bdf2022a9c85071ec9e7e08dd2", + "gas": "0x3a3a4", + "input": "0x5bc8495e000000000000000000000000a7f87e8d193e29bf1ed050fdd511b79fe0264d8b000000000000000000000000000000000000000000000000000000000003a758000000000000000000000000270864586801f4bdf2022a9c85071ec9e7e08dd2", + "to": "0x9184cda90ee2c63842abdfa85111f93a60b6f3b1", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x392e4", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "delegatecall", + "from": "0x9184cda90ee2c63842abdfa85111f93a60b6f3b1", + "gas": "0x39236", + "input": "0x5bc8495e000000000000000000000000a7f87e8d193e29bf1ed050fdd511b79fe0264d8b000000000000000000000000000000000000000000000000000000000003a758000000000000000000000000270864586801f4bdf2022a9c85071ec9e7e08dd2", + "to": "0xa09c1152441a71d1bad6691cd65b7b439f79ab98", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x38fd7", + "output": "0x" + }, + "subtraces": 3, + "trace_address": [ + 0 + ], + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x9184cda90ee2c63842abdfa85111f93a60b6f3b1", + "gas": "0x37975", + "input": "0x430c2081000000000000000000000000270864586801f4bdf2022a9c85071ec9e7e08dd20000000000000000000000009184cda90ee2c63842abdfa85111f93a60b6f3b1", + "to": "0x574317b5167521d2e3e34469a6993102fbbd92ed", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1117", + "output": "0x0000000000000000000000000000000000000000000000000000000000000001" + }, + "subtraces": 0, + "trace_address": [ + 0, + 0 + ], + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9184cda90ee2c63842abdfa85111f93a60b6f3b1", + "gas": "0x33e67", + "input": "0x42842e0e0000000000000000000000009184cda90ee2c63842abdfa85111f93a60b6f3b1000000000000000000000000270864586801f4bdf2022a9c85071ec9e7e08dd2000000000000000000000000000000000000000000000000000000000003a758", + "to": "0xa7f87e8d193e29bf1ed050fdd511b79fe0264d8b", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x1ba62", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0, + 1 + ], + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x9184cda90ee2c63842abdfa85111f93a60b6f3b1", + "gas": "0xc08d", + "input": "0xb5ed6ea2000000000000000000000000a7f87e8d193e29bf1ed050fdd511b79fe0264d8b000000000000000000000000000000000000000000000000000000000003a7580000000000000000000000000000000000000000000000000000000000000000", + "to": "0x555b93d60faaa1abec6a1c57c1d217cbeeb91619", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0xc08d", + "output": "0xb5ed6ea200000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 3, + "trace_address": [ + 0, + 2 + ], + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x555b93d60faaa1abec6a1c57c1d217cbeeb91619", + "gas": "0xb628", + "input": "0x6352211e000000000000000000000000000000000000000000000000000000000003a758", + "to": "0xa7f87e8d193e29bf1ed050fdd511b79fe0264d8b", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x90a", + "output": "0x000000000000000000000000270864586801f4bdf2022a9c85071ec9e7e08dd2" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 0 + ], + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x555b93d60faaa1abec6a1c57c1d217cbeeb91619", + "gas": "0x9d14", + "input": "0x4036ab78000000000000000000000000000000000000000000000000000000000003a758", + "to": "0xa7f87e8d193e29bf1ed050fdd511b79fe0264d8b", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x960", + "output": "0x0000000000000000000000000000000000000000000000000000000000000003" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 1 + ], + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "staticcall", + "from": "0x555b93d60faaa1abec6a1c57c1d217cbeeb91619", + "gas": "0x8374", + "input": "0x80057b9a000000000000000000000000000000000000000000000000000000000003a758", + "to": "0xa7f87e8d193e29bf1ed050fdd511b79fe0264d8b", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x96d", + "output": "0x0000000000000000000000000000000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [ + 0, + 2, + 2 + ], + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_position": 63, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd39a7ad8ebe8c57aab85f868fe0d454e1aa5349e", + "gas": "0x1ce18", + "input": "0xe93ad0e900000000000000000000000000000000000000000000000000000000000397c0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000010000000000000000000000002b15bdea3e1f4373607c1e468194e52d7d7c5b350000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "to": "0xa7f87e8d193e29bf1ed050fdd511b79fe0264d8b", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x170f0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xfc272c7550cda8556b6f69f9cd13a9a0f349235ae93dee2a9d4590274b10a508", + "transaction_position": 64, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x70dc2c7e7a733da9f8ff6e0ace70a748a0c8188f", + "gas": "0x12d84", + "input": "0xea1790b90000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000005efea00400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041e407ae1a692ee617d71b782bd7144fbb6494af9b361e984da3786881b2ad7027252849c35ed8640c6ce3dac4edbd693af09693e8d65867259b226d5e6943e6b11b00000000000000000000000000000000000000000000000000000000000000", + "to": "0xd7bec4d6bf6fc371eb51611a50540f0b59b5f896", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x429e", + "output": "0x" + }, + "subtraces": 1, + "trace_address": [], + "transaction_hash": "0x8ad0e904b2d930c06d103119a15f65fa4db312af52f5b5f0720815944bc0fc35", + "transaction_position": 65, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd7bec4d6bf6fc371eb51611a50540f0b59b5f896", + "gas": "0x8fc", + "input": "0x", + "to": "0x70dc2c7e7a733da9f8ff6e0ace70a748a0c8188f", + "value": "0x0" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [ + 0 + ], + "transaction_hash": "0x8ad0e904b2d930c06d103119a15f65fa4db312af52f5b5f0720815944bc0fc35", + "transaction_position": 65, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0xd9969153ec3ffffa932792d4f774931850c7fa13", + "gas": "0x0", + "input": "0x", + "to": "0x44f14099b8b9c60515e83a0cb1a85e14982bb091", + "value": "0x5a330b869c35000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0x5cf110b7fc7c0dbb6c3613f0edcbd28a47d6bb492697fbb50c599cba612acdf3", + "transaction_position": 66, + "type": "call", + "error": null + }, + { + "action": { + "callType": "call", + "from": "0x18b03166501ba770ba811dfa706d65503c510b79", + "gas": "0x496c", + "input": "0xf6838a720000000000000000000000000000000000000000000000000000000000000001", + "to": "0xbcf935d206ca32929e1b887a07ed240f0d8ccd22", + "value": "0x6a94d74f430000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x4d5", + "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000e55736572206e6f74206578697374000000000000000000000000000000000000" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xd2a1fe0d216eb0cbeac85a6b1e3ba65ba6294cb2c56083d7ceff29cef4eb54ae", + "transaction_position": 67, + "type": "call", + "error": "Reverted" + }, + { + "action": { + "callType": "call", + "from": "0x281b12b731b1682850e896adced9b4cab09a8d6f", + "gas": "0x0", + "input": "0x", + "to": "0x3e7d0f8b0cbf2a62f3c607ff12bf4cd64dec0e98", + "value": "0x61b31ab352c0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": { + "gasUsed": "0x0", + "output": "0x" + }, + "subtraces": 0, + "trace_address": [], + "transaction_hash": "0xeb12cbddd724ef75e12252ac176fe10213e445e9d2f26cc2665b9474cf76c609", + "transaction_position": 68, + "type": "call", + "error": null + }, + { + "action": { + "author": "0xd224ca0c819e8e97ba0136b3b95ceff503b79f53", + "rewardType": "block", + "value": "0x1c9f78d2893e4000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": null, + "subtraces": 0, + "trace_address": [], + "type": "reward", + "error": null + }, + { + "action": { + "author": "0x97c7e57edefef758896cd9b309d57cdaca544215", + "rewardType": "uncle", + "value": "0x1158e460913d0000" + }, + "block_hash": "0x396f8611959f6f2c1be71f203f4576c8624e751e82e7442cefb868899a734962", + "block_number": 10384319, + "result": null, + "subtraces": 0, + "trace_address": [], + "type": "reward", + "error": null + } + ], + "receipts" : [ + { + "block_number": 10384319, + "transaction_hash": "0x01c2f7a026e9bb5342f16eee1449ff00f48e9387761eedc0ff5114157fff80d4", + "transaction_index": 0, + "gas_used": 21000, + "effective_gas_price": 72000000000, + "cumulative_gas_used": 21000, + "to": "0xeeeee89fe451af56b8bab98ad9315f16ea40f7cd" + }, + { + "block_number": 10384319, + "transaction_hash": "0x6b0264757ba6e13eda5feab70b3a913ec30a1100310568aa73bdfce34b822169", + "transaction_index": 1, + "gas_used": 21000, + "effective_gas_price": 57030000000, + "cumulative_gas_used": 42000, + "to": "0x48241435d1e026f93a2e7216ccb85843d9188d70" + }, + { + "block_number": 10384319, + "transaction_hash": "0x9059f49714dccf31704c43a4bf509a111ec06ae964bfb1af3e5be74d51342147", + "transaction_index": 2, + "gas_used": 21000, + "effective_gas_price": 53500000000, + "cumulative_gas_used": 63000, + "to": "0xa117c6d0658823c55c85a68413f1cd60aed1b795" + }, + { + "block_number": 10384319, + "transaction_hash": "0xfd1e2e3adb4338285b6f74d0db7e2ae3801f2f79e7c1ae9ac0a247b524349b4f", + "transaction_index": 3, + "gas_used": 41221, + "effective_gas_price": 52000000000, + "cumulative_gas_used": 104221, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x91a2ade4688d7ceea1bb9f035c9052f4b3e2445eb8af6bf886ac6c5d16371aae", + "transaction_index": 4, + "gas_used": 56209, + "effective_gas_price": 52000000000, + "cumulative_gas_used": 160430, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0xd2c521a6457581c3ed61d92e9b73283731fd94edab2b70c66e4b54579c2ced04", + "transaction_index": 5, + "gas_used": 56209, + "effective_gas_price": 52000000000, + "cumulative_gas_used": 216639, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x87fb2418954bd37bd4181074e89b24bbacddde50087a2935e32f6ad66c493d65", + "transaction_index": 6, + "gas_used": 56209, + "effective_gas_price": 52000000000, + "cumulative_gas_used": 272848, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x0a9f5b0804ec4d77b81645d16e9a4a77bc4b2580eef4c439db8af8faee420392", + "transaction_index": 7, + "gas_used": 56197, + "effective_gas_price": 52000000000, + "cumulative_gas_used": 329045, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x0b0ee64ded2fab6b8d0cc60b3bb1dc95ed066784c1d4c49cad161256a88193e6", + "transaction_index": 8, + "gas_used": 56209, + "effective_gas_price": 50000000000, + "cumulative_gas_used": 385254, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x735f53dc44043ec2797913e07e9539d56d5cadc81dc1b0973fb329b9e181465f", + "transaction_index": 9, + "gas_used": 1134985, + "effective_gas_price": 45980000000, + "cumulative_gas_used": 1520239, + "to": "0x43d99d54f14c64994fd9666beab6023b0069de20" + }, + { + "block_number": 10384319, + "transaction_hash": "0xe4c06bc269020414a9106554f44f509d4250515fa588a645e785767947464fc1", + "transaction_index": 10, + "gas_used": 26221, + "effective_gas_price": 45500000000, + "cumulative_gas_used": 1546460, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0xb2c4329441544a189b5b0dc96be448f0b7b53a19a7184300870db5dcbf1a8d54", + "transaction_index": 11, + "gas_used": 21000, + "effective_gas_price": 44000000000, + "cumulative_gas_used": 1567460, + "to": "0x159a4561fae7b67d22a2304ecc541ea2f3cee07e" + }, + { + "block_number": 10384319, + "transaction_hash": "0xd224762bb51872265f85635cd3ef2882aae57a879d64eb3db8a7ac3ddf4418c3", + "transaction_index": 12, + "gas_used": 21000, + "effective_gas_price": 44000000000, + "cumulative_gas_used": 1588460, + "to": "0xb17af94e1b161ab6f05ce984787dfab601c2d44c" + }, + { + "block_number": 10384319, + "transaction_hash": "0xfd05e2693ba4e539133db74b7e7f2ab3efbdf0357af9d3c4a86cd0fa7ede948f", + "transaction_index": 13, + "gas_used": 26209, + "effective_gas_price": 44000000000, + "cumulative_gas_used": 1614669, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x514909674c7c19d3f3988e715da93724e673ffa4a4f862047a67d02052e827ad", + "transaction_index": 14, + "gas_used": 26209, + "effective_gas_price": 44000000000, + "cumulative_gas_used": 1640878, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0xbf55ab3e6ce864e7474f9d80d1df1a502249ceade1b11ce072de3d17f3d3fc84", + "transaction_index": 15, + "gas_used": 26221, + "effective_gas_price": 44000000000, + "cumulative_gas_used": 1667099, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x24de778f651b4f2cc9edc2aa32f507d9f2e74bd67a773da5851384a4cd86a77d", + "transaction_index": 16, + "gas_used": 26209, + "effective_gas_price": 43000000000, + "cumulative_gas_used": 1693308, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x2e075ca2e2bd08b6c634eea4d9670fe96139a62e497698b7b4ceab9bc691eaea", + "transaction_index": 17, + "gas_used": 21000, + "effective_gas_price": 41800000000, + "cumulative_gas_used": 1714308, + "to": "0xf8d235c75bf72e9d25d22928a133708f8ddd1224" + }, + { + "block_number": 10384319, + "transaction_hash": "0x3c30b6ed8a3e4631925288e2198eb5f4a3adeeab413505143d7b4bd4f39135e7", + "transaction_index": 18, + "gas_used": 21000, + "effective_gas_price": 41800000000, + "cumulative_gas_used": 1735308, + "to": "0x210a7a90e48167409d634204094ef58ec3041802" + }, + { + "block_number": 10384319, + "transaction_hash": "0xbf028b053bde6a75f130d4f6ab2e1c21a4e43ffdd8d2adc9b624640fa4afc670", + "transaction_index": 19, + "gas_used": 488642, + "effective_gas_price": 41020000000, + "cumulative_gas_used": 2223950, + "to": "0x5acc84a3e955bdd76467d3348077d003f00ffb97" + }, + { + "block_number": 10384319, + "transaction_hash": "0xd8de1374c3ede256567834d0c6d86005c173732c9adde9e396012bf39e664901", + "transaction_index": 20, + "gas_used": 140716, + "effective_gas_price": 41020000000, + "cumulative_gas_used": 2364666, + "to": "0x5acc84a3e955bdd76467d3348077d003f00ffb97" + }, + { + "block_number": 10384319, + "transaction_hash": "0x4af957070765bc841a758bc2db1a51679a7d979cb08fbcf4b8927591978abb8b", + "transaction_index": 21, + "gas_used": 21000, + "effective_gas_price": 41000000000, + "cumulative_gas_used": 2385666, + "to": "0x5155ff7d6238931a500ae27ddc5781339414a091" + }, + { + "block_number": 10384319, + "transaction_hash": "0x2b7574973d21de30036bc732a296fab26425b8f1ae2a99ec771ea5f422a77a2e", + "transaction_index": 22, + "gas_used": 143632, + "effective_gas_price": 41000000000, + "cumulative_gas_used": 2529298, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10384319, + "transaction_hash": "0xff1026e26473b13f3042af889c8e1e1b5f5c60e3d009a0441beae39ae83fd42a", + "transaction_index": 23, + "gas_used": 21000, + "effective_gas_price": 41000000000, + "cumulative_gas_used": 2550298, + "to": "0x20a564f32057e3e5988df88d5bfcc84e481aa957" + }, + { + "block_number": 10384319, + "transaction_hash": "0xdd1cf231838abd173cfda6ffcc068c023d7594f544cbdb1f04883b5ce6cdb7bf", + "transaction_index": 24, + "gas_used": 21000, + "effective_gas_price": 41000000000, + "cumulative_gas_used": 2571298, + "to": "0x59b1246bd4ee7b1e851cdc1460efec45dbc957fc" + }, + { + "block_number": 10384319, + "transaction_hash": "0xe1e953f22be33a62142a6bea0161603e06f555a03d2966e83a9e909999b17a7f", + "transaction_index": 25, + "gas_used": 21000, + "effective_gas_price": 41000000000, + "cumulative_gas_used": 2592298, + "to": "0x89cf9411575c575de3918f16c2962d041b91fe45" + }, + { + "block_number": 10384319, + "transaction_hash": "0x066f0e7dc3a19badfb6b69127b8c2d2f3711b75936ac7238c0ffc03906790f8d", + "transaction_index": 26, + "gas_used": 21000, + "effective_gas_price": 41000000000, + "cumulative_gas_used": 2613298, + "to": "0x5f4f37452e3aacc712a78d00eae6195f9f55aee9" + }, + { + "block_number": 10384319, + "transaction_hash": "0x1f6568f00534699067188dd95fb429a81131bb8b838b18d141f6a7eee3fa0719", + "transaction_index": 27, + "gas_used": 66935, + "effective_gas_price": 40020000000, + "cumulative_gas_used": 2680233, + "to": "0xbcf935d206ca32929e1b887a07ed240f0d8ccd22" + }, + { + "block_number": 10384319, + "transaction_hash": "0x53ff52fa09fb125238be4500c21ee5a22d9b35a96d2a03161274fd9acfe78a66", + "transaction_index": 28, + "gas_used": 94549, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2774782, + "to": "0xd4f5bf184bebfd53ac276ec6e091d051d0ed459e" + }, + { + "block_number": 10384319, + "transaction_hash": "0x2c7eb14931376fda4c033e2f3d2aedccd9482ed856b72f5f9928f3027bf2e633", + "transaction_index": 29, + "gas_used": 21000, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2795782, + "to": "0x402708f6f0beee1bc9c0e13f90b23f1ea094073b" + }, + { + "block_number": 10384319, + "transaction_hash": "0xc43ed418176657f1c6c4538d70b0380c7c77c22cf64b4a758e6727842209ea69", + "transaction_index": 30, + "gas_used": 43001, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2838783, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 10384319, + "transaction_hash": "0x3214192cb91caeb7cabef911a12865c53e66db40168de593c8cb35932dabc690", + "transaction_index": 31, + "gas_used": 21000, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2859783, + "to": "0xd62f4b2728a6386f57af88796c0f0b45fa4cfb6b" + }, + { + "block_number": 10384319, + "transaction_hash": "0x84c9294645a59e8fe1de061b0189d35a72295f6b66067f283e8df2c5f9457890", + "transaction_index": 32, + "gas_used": 21000, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2880783, + "to": "0x8708fa379b263fd3af0a72328d23c996832cbf61" + }, + { + "block_number": 10384319, + "transaction_hash": "0x8836fc1ff49a8f286b31d426806f4c086d24369054801496af6be60840d365af", + "transaction_index": 33, + "gas_used": 21000, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2901783, + "to": "0x3fdd7f4f7a8f02a0e7051aa5d181d81bdd0d3c94" + }, + { + "block_number": 10384319, + "transaction_hash": "0xe5d4b93a2dbbd784e3c647c890fdff357889b59a01dfbdbf18490379a101b778", + "transaction_index": 34, + "gas_used": 43013, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2944796, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 10384319, + "transaction_hash": "0x68e830aa562f997e432008ca8ab7de738bb173512c8b2a7ae7fbe8e0a6b0c1d0", + "transaction_index": 35, + "gas_used": 28013, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2972809, + "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" + }, + { + "block_number": 10384319, + "transaction_hash": "0x998556baf5f036f7552292da4828d15cf7e61da2ee2cd7bc24dfe8531ae51e37", + "transaction_index": 36, + "gas_used": 22509, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 2995318, + "to": "0xdd974d5c2e2928dea5f71b9825b8b646686bd200" + }, + { + "block_number": 10384319, + "transaction_hash": "0x4cd5ac5d9a919f434198f39670e03e9155df62b4c98a11605741e8b3d8ccb4c8", + "transaction_index": 37, + "gas_used": 40722, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 3036040, + "to": "0xc00e94cb662c3520282e6f5717214004a7f26888" + }, + { + "block_number": 10384319, + "transaction_hash": "0x4c3882397a2f2d8d3d013ab39eca9596cebedb5cf40fd7debd06ad206634b7f5", + "transaction_index": 38, + "gas_used": 65108, + "effective_gas_price": 40000000000, + "cumulative_gas_used": 3101148, + "to": "0xed6b0dc3aa8de5908ab857a70cb2ff657d9b6c5d" + }, + { + "block_number": 10384319, + "transaction_hash": "0x368396f0ded82433facd4e0357396ab0f1a461ca89c746fd0b532474574da87d", + "transaction_index": 39, + "gas_used": 56197, + "effective_gas_price": 38020000000, + "cumulative_gas_used": 3157345, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0xfd95e2f0b282e4e9539c1d1924497b0e273058444270db1c43454ffedf1d4417", + "transaction_index": 40, + "gas_used": 26209, + "effective_gas_price": 38000000000, + "cumulative_gas_used": 3183554, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x321dd353b8ae267764370365572a1025a2fa281cae22f838b0846d877f2e4b7a", + "transaction_index": 41, + "gas_used": 466003, + "effective_gas_price": 38000000000, + "cumulative_gas_used": 3649557, + "to": "0x86e4dc95c7fbdbf52e33d563bbdb00823894c287" + }, + { + "block_number": 10384319, + "transaction_hash": "0xa047bffb59eaee801c754eed926440ce57c5d4b7ca8be71a5fc15ca8521488c4", + "transaction_index": 42, + "gas_used": 53592, + "effective_gas_price": 35000000000, + "cumulative_gas_used": 3703149, + "to": "0xa2d0e29a9627e20fd886a8106dd0ae429403a57d" + }, + { + "block_number": 10384319, + "transaction_hash": "0xec699caecac48c2496c6f28d1cec038d4fe9ac80afc18134a93a4a6f649b7035", + "transaction_index": 43, + "gas_used": 56209, + "effective_gas_price": 33000000000, + "cumulative_gas_used": 3759358, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0xfd18891b4eceef223113d0186e31378c6456524b6d1b8a2d088374524a43ef88", + "transaction_index": 44, + "gas_used": 26209, + "effective_gas_price": 30000000000, + "cumulative_gas_used": 3785567, + "to": "0xdac17f958d2ee523a2206206994597c13d831ec7" + }, + { + "block_number": 10384319, + "transaction_hash": "0x1e121b0fe89a42be88837c22ab1ce34a4d488b23569ba9992aa0df8315e0dde9", + "transaction_index": 45, + "gas_used": 137149, + "effective_gas_price": 30000000000, + "cumulative_gas_used": 3922716, + "to": "0x2b074ab88e5f4a48b8389c8dd62f0f5be496ada6" + }, + { + "block_number": 10384319, + "transaction_hash": "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797", + "transaction_index": 46, + "gas_used": 824392, + "effective_gas_price": 24000000000, + "cumulative_gas_used": 4747108, + "to": "0x398ec7346dcd622edc5ae82352f02be94c62d119" + }, + { + "block_number": 10384319, + "transaction_hash": "0xa991cbbc1eafd9574dd000d680b75d4d1f79f2875a0c58790205032e80d85e23", + "transaction_index": 47, + "gas_used": 240552, + "effective_gas_price": 24000000000, + "cumulative_gas_used": 4987660, + "to": "0x29e22c534a1081132c9180ec1cbe06dbd89db690" + }, + { + "block_number": 10384319, + "transaction_hash": "0x5e3a93a5837d95142305f1e2833e1761d4fa82074add6955670b584cac865243", + "transaction_index": 48, + "gas_used": 4712012, + "effective_gas_price": 24000000000, + "cumulative_gas_used": 9699672, + "to": "0x9424b1412450d0f8fc2255faf6046b98213b76bd" + }, + { + "block_number": 10384319, + "transaction_hash": "0x23e3e8d1469f890549e7e5ba29e27d56af43e467baefacc986cf215ce72c1d47", + "transaction_index": 49, + "gas_used": 636059, + "effective_gas_price": 23185137563, + "cumulative_gas_used": 10335731, + "to": "0x437e4d0d77043c9a5021816997555a63a6de06f5" + }, + { + "block_number": 10384319, + "transaction_hash": "0x335bfe05508d45c944770e0db14aac25aa2906a91b0e0a34837bc27c7373e08f", + "transaction_index": 50, + "gas_used": 64487, + "effective_gas_price": 35000000000, + "cumulative_gas_used": 10400218, + "to": "0x437e4d0d77043c9a5021816997555a63a6de06f5" + }, + { + "block_number": 10384319, + "transaction_hash": "0x00807a5b8fc5716865ed18823a98e4c89c0e7e0ab7d74a3c1c1c095fc86227c1", + "transaction_index": 51, + "gas_used": 98629, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 10498847, + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673" + }, + { + "block_number": 10384319, + "transaction_hash": "0xea3a55e167c9992e92958d83df17eac99a557a1c5a8ef01edfe5b47840a9db33", + "transaction_index": 52, + "gas_used": 26700, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 10525547, + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673" + }, + { + "block_number": 10384319, + "transaction_hash": "0x29ad0d6ae1bdf8a16b2f2737ae6e8ee57460ee55cc1d6fd8cca6895a23631ffb", + "transaction_index": 53, + "gas_used": 37006, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 10562553, + "to": "0xfa85069e3d1ca1b09945cf11d2365386b1e4430a" + }, + { + "block_number": 10384319, + "transaction_hash": "0xcf3d3fbeff3de259e6602ac13c532bff1a4623d58ce26e5f5cc5aa78d52318f9", + "transaction_index": 54, + "gas_used": 243588, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 10806141, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10384319, + "transaction_hash": "0x51d7ca75b6f0386fac9b94eb637b3c6211a531fd29aa3e9dd9201f1807994e86", + "transaction_index": 55, + "gas_used": 26700, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 10832841, + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673" + }, + { + "block_number": 10384319, + "transaction_hash": "0x79896fc894feab783977bee07645490098571ab7dd84d194877819dcd9f74190", + "transaction_index": 56, + "gas_used": 26700, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 10859541, + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673" + }, + { + "block_number": 10384319, + "transaction_hash": "0xb0e79e5f8b08f5e1a40cfce7ebce72b226b954400a08ced8198b2dee283fbbdc", + "transaction_index": 57, + "gas_used": 23411, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 10882952, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10384319, + "transaction_hash": "0x7b631afda32aab901dff21ffdd5eb87f7767d31291d6d69e067e4853da60af22", + "transaction_index": 58, + "gas_used": 26700, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 10909652, + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673" + }, + { + "block_number": 10384319, + "transaction_hash": "0xb83cda3f2e4c081da3a94ba558c93bd4fbf6647fdc7956a8cad1ef94d23176e3", + "transaction_index": 59, + "gas_used": 99700, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 11009352, + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673" + }, + { + "block_number": 10384319, + "transaction_hash": "0x444a6610289b2656d7f781a7c480e34848f96e9d6b64a791491283a361f52498", + "transaction_index": 60, + "gas_used": 26700, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 11036052, + "to": "0xf1ad4bfdf8829d55ec0ce7900ef9d122b2610673" + }, + { + "block_number": 10384319, + "transaction_hash": "0x21c71368bce0ffc50d78ce746e4bdd04ba13813fc254c8ce3e904fcc094fc5d2", + "transaction_index": 61, + "gas_used": 24386, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 11060438, + "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d" + }, + { + "block_number": 10384319, + "transaction_hash": "0x3b5e4d4c05de3099dd90c3708dcc96adca398077fecd43294f363fda7ebd1837", + "transaction_index": 62, + "gas_used": 207381, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 11267819, + "to": "0x398ec7346dcd622edc5ae82352f02be94c62d119" + }, + { + "block_number": 10384319, + "transaction_hash": "0x3c5759678b095767757294808aa72f19bcae59846a884efffb53228e327c3a83", + "transaction_index": 63, + "gas_used": 181176, + "effective_gas_price": 23000000000, + "cumulative_gas_used": 11448995, + "to": "0x9184cda90ee2c63842abdfa85111f93a60b6f3b1" + }, + { + "block_number": 10384319, + "transaction_hash": "0xfc272c7550cda8556b6f69f9cd13a9a0f349235ae93dee2a9d4590274b10a508", + "transaction_index": 64, + "gas_used": 117152, + "effective_gas_price": 22200000000, + "cumulative_gas_used": 11566147, + "to": "0xa7f87e8d193e29bf1ed050fdd511b79fe0264d8b" + }, + { + "block_number": 10384319, + "transaction_hash": "0x8ad0e904b2d930c06d103119a15f65fa4db312af52f5b5f0720815944bc0fc35", + "transaction_index": 65, + "gas_used": 39866, + "effective_gas_price": 22074000000, + "cumulative_gas_used": 11606013, + "to": "0xd7bec4d6bf6fc371eb51611a50540f0b59b5f896" + }, + { + "block_number": 10384319, + "transaction_hash": "0x5cf110b7fc7c0dbb6c3613f0edcbd28a47d6bb492697fbb50c599cba612acdf3", + "transaction_index": 66, + "gas_used": 21000, + "effective_gas_price": 22000000000, + "cumulative_gas_used": 11627013, + "to": "0x44f14099b8b9c60515e83a0cb1a85e14982bb091" + }, + { + "block_number": 10384319, + "transaction_hash": "0xd2a1fe0d216eb0cbeac85a6b1e3ba65ba6294cb2c56083d7ceff29cef4eb54ae", + "transaction_index": 67, + "gas_used": 22441, + "effective_gas_price": 22000000000, + "cumulative_gas_used": 11649454, + "to": "0xbcf935d206ca32929e1b887a07ed240f0d8ccd22" + }, + { + "block_number": 10384319, + "transaction_hash": "0xeb12cbddd724ef75e12252ac176fe10213e445e9d2f26cc2665b9474cf76c609", + "transaction_index": 68, + "gas_used": 21000, + "effective_gas_price": 22000000000, + "cumulative_gas_used": 11670454, + "to": "0x3e7d0f8b0cbf2a62f3c607ff12bf4cd64dec0e98" + } + ] +} \ No newline at end of file diff --git a/tests/test_aave.py b/tests/test_aave.py index 2e5d8995..af3c53fa 100644 --- a/tests/test_aave.py +++ b/tests/test_aave.py @@ -9,6 +9,7 @@ def test_single_weth_liquidation(trace_classifier: TraceClassifier): + transaction_hash = ( "0xb7575eedc9d8cfe82c4a11cd1a851221f2eafb93d738301995ac7103ffe877f7" ) @@ -190,6 +191,35 @@ def test_liquidations_with_eth_transfer(trace_classifier: TraceClassifier): assert liquidation in result +def test_single_eth_liquidation(trace_classifier: TraceClassifier): + transaction_hash = ( + "0x1ba93cb9471dad0843e04f3565314e6d2f3281168f57410ca138cc4065047797" + ) + block_number = 10384319 + + liquidations = [ + Liquidation( + liquidated_user="0x6cf4e3764b4e295d58f90e6cfcea2b3144f2bdbd", + liquidator_user="0x467927774b59f7cb023863b07960669f958ec19a", + debt_token_address=ETH_TOKEN_ADDRESS, + debt_purchase_amount=15225889288137910, + received_amount=15656880507938246456, + received_token_address="0x0d8775f648430679a709e98d2b0cb6250d2887ef", + protocol=Protocol.aave, + 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: + assert liquidation in result + + def _assert_equal_list_of_liquidations( actual_liquidations: List[Liquidation], expected_liquidations: List[Liquidation] ):