trace_replayBlockTransactions RPC Method
Please note that this RPC method is available to all users on the Build plan and higher. If you are using the Free plan, you will need to upgrade to utilize this method. See our pricing for more information.
Parameters
blockNumber
stringstring
REQUIRED
The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum and Gnosis
array
array
REQUIRED
The type of trace, which can be one of the following:
vmTrace
string
To get a full trace of the virtual machine's state during the execution of the given of given transaction, including for any subcalls
trace
string
To get the basic trace of the given transaction
stateDiff
string
To get information on altered Ethereum state due to execution of the given transaction
Returns
array
The block traces, which have the following fields (please note that all return types are hexadecimal representations of their data type unless otherwise stated):
output
The data which is returned as an output encoded in hexadecimal format
stateDiff
It returns the information on altered Ethereum state due to execution of the given transaction
trace
It is used to retrieve the basic trace of the given information
action
The action to be performed on the receiver id
from
The address of the sender
callType
The type of method such as call, delegatecall
gas
The gas provided by the sender, encoded as hexadecimal
input
The data sent along with the transaction
to
The address of the receiver
value
The integer of the value sent with this transaction, encoded as hexadecimal
result
The integer of the gas price used encoded as hexadecimal
gasUsed
The total used gas by all transactions in this block encoded as hexadecimal
output
The value returned by the contract call, and it only contains the actual value sent by the RETURN method. If the RETURN method was not executed, the output is empty bytes
subtraces
The traces of contract calls made by the transaction
traceAddress
The list of addresses where the call was executed, the address of the parents, and the order of the current sub call
type
The value of the method such as call or create
vmTrace
It is used to get a full trace of the virtual machine's state during the execution of the given transaction, including for any sub-calls
Request
curl https://docs-demo.quiknode.pro/ \ -X POST \ -H "Content-Type: application/json" \ --data '{"method":"trace_replayBlockTransactions","params":["0xccb93d",["trace"]],"id":1,"jsonrpc":"2.0"}'
require 'eth' client = Eth::Client.create 'https://docs-demo.quiknode.pro/' payload = { "jsonrpc": "2.0", "method": "trace_replayBlockTransactions", "params": ["0xccb93d",["trace"]], "id": "1" } response = client.send(payload.to_json) puts response
import { ethers } from "ethers"; (async () => { const provider = new ethers.JsonRpcProvider("https://docs-demo.quiknode.pro/"); const transactions = await provider.send("trace_replayBlockTransactions", [ "0xccb93d", ["trace"], ]); console.log(transactions); })();
var myHeaders = new Headers(); myHeaders.append("Content-Type", "application/json"); var raw = JSON.stringify({ "method": "trace_replayBlockTransactions", "params": [ "0xccb93d", [ "trace" ] ], "id": 1, "jsonrpc": "2.0" }); var requestOptions = { method: 'POST', headers: myHeaders, body: raw, redirect: 'follow' }; fetch("https://docs-demo.quiknode.pro/", requestOptions) .then(response => response.text()) .then(result => console.log(result)) .catch(error => console.log('error', error));
import requests import json url = "https://docs-demo.quiknode.pro/" payload = json.dumps({ "method": "trace_replayBlockTransactions", "params": [ "0xccb93d", [ "trace" ] ], "id": 1, "jsonrpc": "2.0" }) headers = { 'Content-Type': 'application/json' } response = requests.request("POST", url, headers=headers, data=payload) print(response.text)
require "uri" require "json" require "net/http" url = URI("https://docs-demo.quiknode.pro/") https = Net::HTTP.new(url.host, url.port) https.use_ssl = true request = Net::HTTP::Post.new(url) request["Content-Type"] = "application/json" request.body = JSON.dump({ "method": "trace_replayBlockTransactions", "params": [ "0xccb93d", [ "trace" ] ], "id": 1, "jsonrpc": "2.0" }) response = https.request(request) puts response.read_body
from web3 import HTTPProvider client = HTTPProvider('https://docs-demo.quiknode.pro/') result = client.make_request('trace_replayBlockTransactions', ['0xccb93d',['trace']]) print(result)
Response
{ "jsonrpc": "2.0", "id": 1, "result": [ { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xa06c3c08a19e51b33309eddfb356c33ead8517a3", "callType": "call", "gas": "0x23c30", "input": "0x00000055000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000ccb93d0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000003da1313ae46132a397d90d95b1424a9a7e3e0fce000000000000000000000000fa6de2697d59e88ed7fc4dfe5a33dac43565ea41000000000000000000000000fa6de2697d59e88ed7fc4dfe5a33dac43565ea410000000000000000000000008dcba0b75c1038c4babbdc0ff3bd9a8f6979dd13000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000044a9059cbb0000000000000000000000003da1313ae46132a397d90d95b1424a9a7e3e0fce000000000000000000000000000000000000000000000000359b994a1cd0f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000108c24b47b23b1c1cba000000000000000000000000ec001d0000004536cad29291f4000000d029abb20000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000645db34277000000000000000000000000d533a949740bb3306d119cc777fa900ba034cd52000000000000000000000000000000000000000000000108c24b47b23b1c1cba00000000000000000000000000000000000000000000000900e43c0913bd8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a9059cbb0000000000000000000000008dcba0b75c1038c4babbdc0ff3bd9a8f6979dd1300000000000000000000000000000000000000000000000900e43c0913bd80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4022c0d9f000000000000000000000000000000000000000000000000362804ffdb77a1630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ec001d0000004536cad29291f4000000d029abb200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0xec001d0000004536cad29291f4000000d029abb2", "value": "0x0" }, "result": { "gasUsed": "0x203b8", "output": "0x" }, "subtraces": 5, "traceAddress": [], "type": "call" }, { "action": { "from": "0xec001d0000004536cad29291f4000000d029abb2", "callType": "call", "gas": "0x22c00", "input": "0xa9059cbb0000000000000000000000003da1313ae46132a397d90d95b1424a9a7e3e0fce000000000000000000000000000000000000000000000000359b994a1cd0f800", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x229e", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xec001d0000004536cad29291f4000000d029abb2", "callType": "call", "gas": "0x2051a", "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000108c24b47b23b1c1cba000000000000000000000000ec001d0000004536cad29291f4000000d029abb2000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x3da1313ae46132a397d90d95b1424a9a7e3e0fce", "value": "0x0" }, "result": { "gasUsed": "0x8a28", "output": "0x" }, "subtraces": 3, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0x3da1313ae46132a397d90d95b1424a9a7e3e0fce", "callType": "call", "gas": "0x1ea29", "input": "0xa9059cbb000000000000000000000000ec001d0000004536cad29291f4000000d029abb2000000000000000000000000000000000000000000000108c24b47b23b1c1cba", "to": "0xd533a949740bb3306d119cc777fa900ba034cd52", "value": "0x0" }, "result": { "gasUsed": "0x2185", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 1, 0 ], "type": "call" }, { "action": { "from": "0x3da1313ae46132a397d90d95b1424a9a7e3e0fce", "callType": "staticcall", "gas": "0x1c6d0", "input": "0x70a082310000000000000000000000003da1313ae46132a397d90d95b1424a9a7e3e0fce", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x00000000000000000000000000000000000000000000002b684a5f20a439b4b5" }, "subtraces": 0, "traceAddress": [ 1, 1 ], "type": "call" }, { "action": { "from": "0x3da1313ae46132a397d90d95b1424a9a7e3e0fce", "callType": "staticcall", "gas": "0x1c32d", "input": "0x70a082310000000000000000000000003da1313ae46132a397d90d95b1424a9a7e3e0fce", "to": "0xd533a949740bb3306d119cc777fa900ba034cd52", "value": "0x0" }, "result": { "gasUsed": "0x3a2", "output": "0x00000000000000000000000000000000000000000000d5fd1d33315af46ba9fc" }, "subtraces": 0, "traceAddress": [ 1, 2 ], "type": "call" }, { "action": { "from": "0xec001d0000004536cad29291f4000000d029abb2", "callType": "call", "gas": "0x178a8", "input": "0x5db34277000000000000000000000000d533a949740bb3306d119cc777fa900ba034cd52000000000000000000000000000000000000000000000108c24b47b23b1c1cba00000000000000000000000000000000000000000000000900e43c0913bd8000", "to": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "value": "0x0" }, "result": { "gasUsed": "0xab9c", "output": "0x00000000000000000000000000000000000000000000000900e4d316c76de2c7" }, "subtraces": 2, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "callType": "staticcall", "gas": "0x171d5", "input": "0x", "to": "0xffde4785e980a99fe10e6a87a67d243664b91b25", "value": "0x0" }, "result": { "gasUsed": "0xac", "output": "0x0000000000000000000000005bd628141c62a901e0a83e630ce5fafa95bbdee4" }, "subtraces": 0, "traceAddress": [ 2, 0 ], "type": "call" }, { "action": { "from": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "callType": "delegatecall", "gas": "0x16f8a", "input": "0x5db34277000000000000000000000000d533a949740bb3306d119cc777fa900ba034cd52000000000000000000000000000000000000000000000108c24b47b23b1c1cba00000000000000000000000000000000000000000000000900e43c0913bd8000", "to": "0x5bd628141c62a901e0a83e630ce5fafa95bbdee4", "value": "0x0" }, "result": { "gasUsed": "0xa82a", "output": "0x00000000000000000000000000000000000000000000000900e4d316c76de2c7" }, "subtraces": 1, "traceAddress": [ 2, 1 ], "type": "call" }, { "action": { "from": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "callType": "call", "gas": "0xe997", "input": "0x23b872dd000000000000000000000000ec001d0000004536cad29291f4000000d029abb2000000000000000000000000fa6de2697d59e88ed7fc4dfe5a33dac43565ea41000000000000000000000000000000000000000000000108c24b47b23b1c1cba", "to": "0xd533a949740bb3306d119cc777fa900ba034cd52", "value": "0x0" }, "result": { "gasUsed": "0x2352", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 2, 1, 0 ], "type": "call" }, { "action": { "from": "0xec001d0000004536cad29291f4000000d029abb2", "callType": "call", "gas": "0xcb06", "input": "0xa9059cbb0000000000000000000000008dcba0b75c1038c4babbdc0ff3bd9a8f6979dd1300000000000000000000000000000000000000000000000900e43c0913bd8000", "to": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "value": "0x0" }, "result": { "gasUsed": "0x1ce6", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 2, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "callType": "staticcall", "gas": "0xc6e9", "input": "0x", "to": "0xffde4785e980a99fe10e6a87a67d243664b91b25", "value": "0x0" }, "result": { "gasUsed": "0xac", "output": "0x0000000000000000000000005bd628141c62a901e0a83e630ce5fafa95bbdee4" }, "subtraces": 0, "traceAddress": [ 3, 0 ], "type": "call" }, { "action": { "from": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "callType": "delegatecall", "gas": "0xc4a1", "input": "0xa9059cbb0000000000000000000000008dcba0b75c1038c4babbdc0ff3bd9a8f6979dd1300000000000000000000000000000000000000000000000900e43c0913bd8000", "to": "0x5bd628141c62a901e0a83e630ce5fafa95bbdee4", "value": "0x0" }, "result": { "gasUsed": "0x1977", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3, 1 ], "type": "call" }, { "action": { "from": "0xec001d0000004536cad29291f4000000d029abb2", "callType": "call", "gas": "0xa9c7", "input": "0x022c0d9f000000000000000000000000000000000000000000000000362804ffdb77a1630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ec001d0000004536cad29291f4000000d029abb2000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x8dcba0b75c1038c4babbdc0ff3bd9a8f6979dd13", "value": "0x0" }, "result": { "gasUsed": "0x732c", "output": "0x" }, "subtraces": 3, "traceAddress": [ 4 ], "type": "call" }, { "action": { "from": "0x8dcba0b75c1038c4babbdc0ff3bd9a8f6979dd13", "callType": "call", "gas": "0x9462", "input": "0xa9059cbb000000000000000000000000ec001d0000004536cad29291f4000000d029abb2000000000000000000000000000000000000000000000000362804ffdb77a163", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x17ae", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 4, 0 ], "type": "call" }, { "action": { "from": "0x8dcba0b75c1038c4babbdc0ff3bd9a8f6979dd13", "callType": "staticcall", "gas": "0x7aa5", "input": "0x70a082310000000000000000000000008dcba0b75c1038c4babbdc0ff3bd9a8f6979dd13", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x00000000000000000000000000000000000000000000005250313e4fd0c07b49" }, "subtraces": 0, "traceAddress": [ 4, 1 ], "type": "call" }, { "action": { "from": "0x8dcba0b75c1038c4babbdc0ff3bd9a8f6979dd13", "callType": "staticcall", "gas": "0x7702", "input": "0x70a082310000000000000000000000008dcba0b75c1038c4babbdc0ff3bd9a8f6979dd13", "to": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "value": "0x0" }, "result": { "gasUsed": "0x61d", "output": "0x000000000000000000000000000000000000000000000dadbe3d33571d3a80dc" }, "subtraces": 2, "traceAddress": [ 4, 2 ], "type": "call" }, { "action": { "from": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "callType": "staticcall", "gas": "0x7435", "input": "0x", "to": "0xffde4785e980a99fe10e6a87a67d243664b91b25", "value": "0x0" }, "result": { "gasUsed": "0xac", "output": "0x0000000000000000000000005bd628141c62a901e0a83e630ce5fafa95bbdee4" }, "subtraces": 0, "traceAddress": [ 4, 2, 0 ], "type": "call" }, { "action": { "from": "0xfa6de2697d59e88ed7fc4dfe5a33dac43565ea41", "callType": "delegatecall", "gas": "0x71f1", "input": "0x70a082310000000000000000000000008dcba0b75c1038c4babbdc0ff3bd9a8f6979dd13", "to": "0x5bd628141c62a901e0a83e630ce5fafa95bbdee4", "value": "0x0" }, "result": { "gasUsed": "0x2b1", "output": "0x000000000000000000000000000000000000000000000dadbe3d33571d3a80dc" }, "subtraces": 0, "traceAddress": [ 4, 2, 1 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x9fae42bbd5b3676bf336db6dab601a60065a4b18bad8a186f2d61ad474edcfd8" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xc58d260fabd9d06461eb5b6b22e7508204424a60", "callType": "call", "gas": "0x24c27", "input": "0x1249c58b", "to": "0x3d2224b431c359b2876858436d3a94db777adec7", "value": "0xde0b6b3a7640000" }, "result": { "gasUsed": "0x2435a", "output": "0x" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0x3d2224b431c359b2876858436d3a94db777adec7", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x7f76ed6da61ce62d5cb5f2ac978f7b2b5160cc11", "value": "0xde0b6b3a7640000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x301c860561a956cfc74d09825e4dd8fb7f441fa9b9a70ccf2c4bedcf42500873" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x21f975212041d7fa2f9c74b3446196ebe8c98c72", "callType": "call", "gas": "0xb3da", "input": "0xa8a41c700000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b00000000000000000000000021f975212041d7fa2f9c74b3446196ebe8c98c7200000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c01073000000000000000000000000dcc2b586edac6e5360d67c2bef85009072e83b7d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000079e70975db08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000616838330000000000000000000000000000000000000000000000000000000062582986ad48ada182ff388f26b0a999c13c70ce03129eab2a0466434698f8390befcd250000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000003e00000000000000000000000000000000000000000000000000000000000000480000000000000000000000000000000000000000000000000000000000000001bb9f8d6baf519bd4bf4b7b1648e8633e85f67b8af086b8be420303fff2493e28a472d7d4733d4e5d653e1c863813a889f75afb403fa2493a44f1ebd858f561111000000000000000000000000000000000000000000000000000000000000006423b872dd00000000000000000000000021f975212041d7fa2f9c74b3446196ebe8c98c7200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000488000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "value": "0x0" }, "result": { "gasUsed": "0xb3da", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x365157f168e3f71748d544db69554d452cc55162b25d416975cbb17b11eece2f" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xfff4da66c6561325d94beafd04c0957f3bfffcf7", "callType": "call", "gas": "0x13214", "input": "0x095ea7b3000000000000000000000000b5f54ac4466f5ce7e0d8a5cb9fe7b8c0f35b7ba80000000000000000000000000000000000000000000005150ae84a8cdf000000", "to": "0x07bac35846e5ed502aa91adf6a9e7aa210f2dcbe", "value": "0x0" }, "result": { "gasUsed": "0x6059", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xa156ef9f8b2d6335a2abfa89d8ef7e8d6e40947cf9c76f50abab5a87b4e623e2" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x58f85215c8dfb2744b1f8915ee2f6ef3766ba644", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x63bd8622def3f2c3ecaf0c0b6a7daaf909769e3a", "value": "0x24dc01ed8b70000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x65be833dd02304d0aa2f271c215fc9833d3716c4c7f886fdd1d28336ccb89329" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xd3de619623d3ddc2aac2856e4b995581a96c0303", "callType": "call", "gas": "0x29f6d", "input": "0x48c54b9d", "to": "0x0395e1cc343d7ae74a1eae8da3b018f2e66dbb67", "value": "0x0" }, "result": { "gasUsed": "0x158e2", "output": "0x" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0x0395e1cc343d7ae74a1eae8da3b018f2e66dbb67", "callType": "call", "gas": "0x21d97", "input": "0xa9059cbb000000000000000000000000d3de619623d3ddc2aac2856e4b995581a96c030300000000000000000000000000000000000000000000052ebcfa9330ce1bca9c", "to": "0x805ea9c07b49dd23ce11ec66dc6d8a2957385035", "value": "0x0" }, "result": { "gasUsed": "0x75d0", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xd09f5188384ec3f7c221b08b138bd929fe2c6e89ea2da728333676cecd45f7d7" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xb92c237209ea5cb18849c27ea09133df648bafaf", "callType": "call", "gas": "0x80d5", "input": "0xd0e30db0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x2efe52456c3b76" }, "result": { "gasUsed": "0x5da6", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xafd58893ddeb01bcf51a61da83c89f872398d0f9ab4147659008f89a4b18b17b" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x4ad64983349c49defe8d7a4686202d24b25d0ce8", "callType": "call", "gas": "0x10d88", "input": "0x", "to": "0x9a0a747610dc076b86a1c71dd1432e5a6fd560b4", "value": "0x11811a8c2d68400" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x339933bc678be96b43fadeba8e8ef0fa1e740b0141815362a384a698fda380d1" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x1434a8eaa6d3725d44984d674e4f2dd9cc472bf4", "callType": "call", "gas": "0x40260", "input": "0xab834bab0000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b0000000000000000000000001434a8eaa6d3725d44984d674e4f2dd9cc472bf4000000000000000000000000dcf5bf70535f3680a5ad5e16ee485153546e1ea00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dcc2b586edac6e5360d67c2bef85009072e83b7d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b000000000000000000000000dcf5bf70535f3680a5ad5e16ee485153546e1ea000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c01073000000000000000000000000dcc2b586edac6e5360d67c2bef85009072e83b7d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ee00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f7aab8c56b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061683915000000000000000000000000000000000000000000000000000000000000000061bba9aa618526bd3423d64e56728a37dfe5c1ee91a0ad9436474f0b7951625400000000000000000000000000000000000000000000000000000000000002ee00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f7aab8c56b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000616838ee0000000000000000000000000000000000000000000000000000000061698ac9cf019090decbb3dd421a640422bbf480b3a235a0074dfbf3dfc6e36f2ac58a300000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a0000000000000000000000000000000000000000000000000000000000000074000000000000000000000000000000000000000000000000000000000000007e0000000000000000000000000000000000000000000000000000000000000088000000000000000000000000000000000000000000000000000000000000009200000000000000000000000000000000000000000000000000000000000000940000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001c5795f7b996535dd0fb6c27ce14fcdcd98e2afee217d5ad539837ae90eaf2463728ea05cc5b19fbfdf510e56ac9a7cad0d10fc020b11baa278a02ca15c11573c65795f7b996535dd0fb6c27ce14fcdcd98e2afee217d5ad539837ae90eaf2463728ea05cc5b19fbfdf510e56ac9a7cad0d10fc020b11baa278a02ca15c11573c65c5321ae45550685308a405827575e3d6b4a84aa000000000000000000000000000000000000000000000000000000000000000000000000000000000000006423b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001434a8eaa6d3725d44984d674e4f2dd9cc472bf4000000000000000000000000000000000000000000000000000000000000044400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006423b872dd000000000000000000000000dcf5bf70535f3680a5ad5e16ee485153546e1ea00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "value": "0x5f7aab8c56b0000" }, "error": "Reverted", "result": { "gasUsed": "0x6cd0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xbc1b6ed210b51093d89f2ca8b9c35193adbf7ad9bbba00b710f262b19e75dd00" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x28c6c06298d514db089934071355e5743bf21d60", "callType": "call", "gas": "0x2d498", "input": "0xa9059cbb000000000000000000000000affb613cafb15b6fa326d187408f8005b4aaddea0000000000000000000000000000000000000000000000001965774de2f70000", "to": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", "value": "0x0" }, "result": { "gasUsed": "0x8aea", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x10a2b0e810b1a51d1693fddc9a2dda9fabb280f72fb36fd05955eae1cda1c4fe" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xdfd5293d8e347dfe59e90efd55b2956a1343963d", "callType": "call", "gas": "0x2d48c", "input": "0xa9059cbb000000000000000000000000b28bdc7157fe6397d2fa46a18a7022bd23ccb20b0000000000000000000000000000000000000000000000103598eac6f18d0000", "to": "0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096", "value": "0x0" }, "result": { "gasUsed": "0x764c", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xabd9aa012d389ff72dde566195951bb546bd554fea08afe3743c5ca1a3ba00ac" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x21a31ee1afc51d94c2efccaa2092ad1028285549", "callType": "call", "gas": "0x2d480", "input": "0xa9059cbb000000000000000000000000eb139afe62e197fa268df591943ef2d3b1abee6c00000000000000000000000000000000000000000000012952ab8d21c2700000", "to": "0xd533a949740bb3306d119cc777fa900ba034cd52", "value": "0x0" }, "result": { "gasUsed": "0x73f1", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x04e5ce1f0068de01852ceec86b01cd979443a76cb4e53ba9754c67e679fd73d4" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x4976a4a02f38326660d17bf34b431dc6e2eb2327", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0xbdcfc2309a24f43fd27480544745a863b00f1584", "value": "0x1b4fbd92b5f8000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xe5e79d31d2befc5bc0b61f24559234b6e6fa6acf41ba394326f8a25b54a48f2d" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x9696f59e4d72e237be84ffd425dcad154bf96976", "callType": "call", "gas": "0x2d4b0", "input": "0xa9059cbb0000000000000000000000008810788cf669cd5dc60711a39d9581512c9864e3000000000000000000000000000000000000000000000000000000003e1ba880", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x5fb5", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x3a277b15e7a415909ad7e4fcb6f3c83f26cc805a000a82799e63727ac6e105bb" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xdfd5293d8e347dfe59e90efd55b2956a1343963d", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0x68dff3cc45fdc2bb40012f636b68c142380302ab", "value": "0x78709d160e6fe000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x95abb0824a1c7fb4ef222dcc56dba1809bf84b3940a971cc00e41ab382d478e2" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xdfd5293d8e347dfe59e90efd55b2956a1343963d", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0xac4d85a6429362303862ebfa4a3c3679395d8f49", "value": "0x1218bd17531c000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x713fb5d90ede516d82cbf87d7ea0075053ba78116770e5e009338f01b330e05a" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x56eddb7aa87536c09ccc2793473599fd21a8b17f", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0xe38c6d5a40338b7387b30b5cc3f60eab8bc1a545", "value": "0x1888f170adf400" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x9a9909757ca8bacfc521da77e690feaf857796deee67491b1ea16583f417a860" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x28c6c06298d514db089934071355e5743bf21d60", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0xda5d8e67fa9893eb7dc5938db35f4efaa25cc846", "value": "0x4aa776a272ca800" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x76099a67a19fd24172958c5fd0027bc6bef974d709ac3b9ad7abbb04a60cad30" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x28c6c06298d514db089934071355e5743bf21d60", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0xec749d658992af5138cf30b83507f82e59c204fd", "value": "0x1c85723a5f7a000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x45471418d7eebda384e59bb211c24922d098d655cfdf33cee03dc47ef9315ac1" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x21a31ee1afc51d94c2efccaa2092ad1028285549", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0x1f55a65f5e2c3bcdca9a85cee066c0392d38a869", "value": "0xc52cf4b908c000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x1787f9eb4292ac0ea4f4d1f88233b0265506060713e6f49f3d04169bc99f15c2" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x4976a4a02f38326660d17bf34b431dc6e2eb2327", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0xebccb5ad1c30ccb1773c52814aaa7e4680d07e61", "value": "0x36bbe71a9224000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xb4624deb4394a5f2ccc6f7aa920471107e25678c85aca603817458bbdb02f67c" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x4976a4a02f38326660d17bf34b431dc6e2eb2327", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0x3fbc95f412cc976464792df82f24cf1a3398ea0e", "value": "0x912446a78707000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x4bb427e7e24c33aa899c8c6e821b2d841cef2baa6c9afad76e38c9da16f551b6" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x9696f59e4d72e237be84ffd425dcad154bf96976", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0x8cdd2401b5e17480c5995352acc0896b9ea98d14", "value": "0x11c723227a6cb4000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xc454a6c3fc11e5269d0ae19e3443095de7808d1b205e6868793968028cb6f6c0" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x21a31ee1afc51d94c2efccaa2092ad1028285549", "callType": "call", "gas": "0x2d474", "input": "0xa9059cbb000000000000000000000000659fbdfba048b54307a0df78b19ad7561765534c0000000000000000000000000000000000000000000167847570992133940000", "to": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", "value": "0x0" }, "result": { "gasUsed": "0x3347", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x3f3d02996c8ee80c3dcd6fae607f88295fdba44f8f3589d3dff6875b0f5be189" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x21a31ee1afc51d94c2efccaa2092ad1028285549", "callType": "call", "gas": "0x2d4b0", "input": "0xa9059cbb0000000000000000000000000f1884e64028a850d45e7524e1b907656fb29a4d0000000000000000000000000000000000000000000000000000000077e6e2a0", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x5fb5", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x34293205c3ab84f3f50673264d5123c4dd16b0a14e038744493451a2deb16093" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x56eddb7aa87536c09ccc2793473599fd21a8b17f", "callType": "call", "gas": "0x2d710", "input": "0x", "to": "0x5b0d9647b20968520a93eb58210c195f2733afac", "value": "0xa126adff030000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xa6878d2dc5c966bf74e0081f64ab11f51b3d0999f96d8f74dade7255afba04aa" }, { "output": "0x0000000000000000000000000000000000000000000000004563918244eaf413", "stateDiff": null, "trace": [ { "action": { "from": "0xeb278acc450e21ae49237969bceae1ca72e1aae5", "callType": "call", "gas": "0x20f12", "input": "0x2e95b6c80000000000000000000000000c7d5ae016f806603cb1782bea29ac69471cab9c000000000000000000000000000000000000000000000e738817dc236f1b54000000000000000000000000000000000000000000000000004561cac2f287b4000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000140000000000000003b6d0340281df7fc89294c84afa2a21ffee8f6807f9c9226", "to": "0x11111112542d85b3ef69ae05771c2dccff4faa26", "value": "0x0" }, "result": { "gasUsed": "0x178ba", "output": "0x0000000000000000000000000000000000000000000000004563918244eaf413" }, "subtraces": 5, "traceAddress": [], "type": "call" }, { "action": { "from": "0x11111112542d85b3ef69ae05771c2dccff4faa26", "callType": "call", "gas": "0x1f9d6", "input": "0x23b872dd000000000000000000000000eb278acc450e21ae49237969bceae1ca72e1aae5000000000000000000000000281df7fc89294c84afa2a21ffee8f6807f9c9226000000000000000000000000000000000000000000000e738817dc236f1b5400", "to": "0x0c7d5ae016f806603cb1782bea29ac69471cab9c", "value": "0x0" }, "result": { "gasUsed": "0x5976", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0x11111112542d85b3ef69ae05771c2dccff4faa26", "callType": "staticcall", "gas": "0x1970e", "input": "0x0902f1ac", "to": "0x281df7fc89294c84afa2a21ffee8f6807f9c9226", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000eae73a85de39f75258191000000000000000000000000000000000000000000000046fa2b4d23fc0202c60000000000000000000000000000000000000000000000000000000061681480" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0x11111112542d85b3ef69ae05771c2dccff4faa26", "callType": "call", "gas": "0x18c12", "input": "0x022c0d9f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004563918244eaf41300000000000000000000000011111112542d85b3ef69ae05771c2dccff4faa2600000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x281df7fc89294c84afa2a21ffee8f6807f9c9226", "value": "0x0" }, "result": { "gasUsed": "0xbbef", "output": "0x" }, "subtraces": 3, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0x281df7fc89294c84afa2a21ffee8f6807f9c9226", "callType": "call", "gas": "0x151ea", "input": "0xa9059cbb00000000000000000000000011111112542d85b3ef69ae05771c2dccff4faa260000000000000000000000000000000000000000000000004563918244eaf413", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x323e", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 2, 0 ], "type": "call" }, { "action": { "from": "0x281df7fc89294c84afa2a21ffee8f6807f9c9226", "callType": "staticcall", "gas": "0x11e0a", "input": "0x70a08231000000000000000000000000281df7fc89294c84afa2a21ffee8f6807f9c9226", "to": "0x0c7d5ae016f806603cb1782bea29ac69471cab9c", "value": "0x0" }, "result": { "gasUsed": "0x207", "output": "0x0000000000000000000000000000000000000000000ebce73075bfc2e440d591" }, "subtraces": 0, "traceAddress": [ 2, 1 ], "type": "call" }, { "action": { "from": "0x281df7fc89294c84afa2a21ffee8f6807f9c9226", "callType": "staticcall", "gas": "0x11a64", "input": "0x70a08231000000000000000000000000281df7fc89294c84afa2a21ffee8f6807f9c9226", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x000000000000000000000000000000000000000000000046b4c7bba1b7170eb3" }, "subtraces": 0, "traceAddress": [ 2, 2 ], "type": "call" }, { "action": { "from": "0x11111112542d85b3ef69ae05771c2dccff4faa26", "callType": "call", "gas": "0xd258", "input": "0x2e1a7d4d0000000000000000000000000000000000000000000000004563918244eaf413", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x2403", "output": "0x" }, "subtraces": 1, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x11111112542d85b3ef69ae05771c2dccff4faa26", "value": "0x4563918244eaf413" }, "result": { "gasUsed": "0x4f", "output": "0x" }, "subtraces": 0, "traceAddress": [ 3, 0 ], "type": "call" }, { "action": { "from": "0x11111112542d85b3ef69ae05771c2dccff4faa26", "callType": "call", "gas": "0x94c3", "input": "0x", "to": "0xeb278acc450e21ae49237969bceae1ca72e1aae5", "value": "0x4563918244eaf413" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 4 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xab6ce8397bab63de92651ed9695da3c93e92b6d7aa9f79ff7c1ebbce06bfac0e" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03", "callType": "call", "gas": "0xb9c3", "input": "0xa9059cbb000000000000000000000000bbdbd89da73c9ea0ca773c355ec534026ba2a98700000000000000000000000000000000000000000000000000000002540be400", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x5fb5", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x47c7c92ca4c5da8c8be2d4233ea95210ea88cd7d5020262da3b89e5903720282" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03", "callType": "call", "gas": "0x26dfe", "input": "0xa9059cbb0000000000000000000000004f02b2adac2e13306a537ff63339bb89a518a8460000000000000000000000000000000000000000000000208551b820d4115400", "to": "0xa2b4c0af19cc16a6cfacce81f192b024d625817d", "value": "0x0" }, "result": { "gasUsed": "0x18277", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xce8251162bdada2403fdac37c9020897448058593105e7231faaef38597a035b" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x31fe6fc3d0902e8577646425e035eb084f03bb8c", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x8eb871bbb6f754a04bca23881a7d25a30aad3f23", "value": "0x6a89bb84e7fbd8" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x074a3304a09fc16386435518d7ed6c43bceaa8f90a8326f397ee3bff13f32355" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", "callType": "call", "gas": "0x1f558", "input": "0xa9059cbb000000000000000000000000ce8baa66670163b990687ce62aed73552aa112a300000000000000000000000000000000000000000000006b03d362e18d53d400", "to": "0x9b9647431632af44be02ddd22477ed94d14aacaa", "value": "0x0" }, "result": { "gasUsed": "0x4ccb", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x2d1001c64f3d57c154560e7fccefec837cbdb60673fff17c919e5c4f3cac2e50" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x39f6a6c85d39d5abad8a398310c52e7c374f2ba3", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x1d46be717a31122e565671c4a16a27a7b1a33d81", "value": "0x84447cdcfce000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x505ee52f261426991b8bb913764e4459a6e575637f1a50c9e865663c5045d318" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xb5d85cbf7cb3ee0d56b3bb207d5fc4b82f43f511", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x1d309f17ae5645e189268ff739daf8ff68ebd312", "value": "0x105786d5b4ca800" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x819375782c655e35e4fdb2535657434462c232ff203c61cff4f1190883e2ff1e" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xb5d85cbf7cb3ee0d56b3bb207d5fc4b82f43f511", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x40cad8943983893ecd92e4e8e2ae1daaf9843918", "value": "0x5499958c32a0400" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x8690e284cff05a7eb44cb3fe628173cc83c5f055c4fe3dc4ab0358af0e2f6847" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xb5d85cbf7cb3ee0d56b3bb207d5fc4b82f43f511", "callType": "call", "gas": "0x0", "input": "0x", "to": "0xf510e6d444e609da0732bfb222a52a7a445ab910", "value": "0x2ee98a808a5c00" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xdfce1ab69b1ae39d10f9077752315584600fdc19779a75a171c4f7b130d4b15a" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xb5d85cbf7cb3ee0d56b3bb207d5fc4b82f43f511", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x1fdcd81c0529078c1169f749f73ae1b8c5528a06", "value": "0x2485b4a0cd4c00" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x9fa74b223dbf9959798ef1648aefc4a0ff42cab866611ca55c15b4d89cfb14c9" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xb5d85cbf7cb3ee0d56b3bb207d5fc4b82f43f511", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x077814e69eae0a7d5da3d4278438b6ae40744f3d", "value": "0x4b0f447812f400" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x8a23ab922e0b1ef3e4869c4f51117456d6b52826297c6b05b409753c314a9a84" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xddfabcdc4d8ffc6d5beaf154f18b778f892a0740", "callType": "call", "gas": "0x0", "input": "0x", "to": "0xeb2204b2dbe52b896a7aa93c08d5a5114106b173", "value": "0xc332b1df91000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xf343341af99fd5a088f1c5903235ae85706fcc766e2c71559cdcf16b977b2d9f" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xa13b65afa181eaba67f98456e0e6d44c985b4f4a", "callType": "call", "gas": "0xa738", "input": "0x7fd30df000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000100000000000000000000000036aebb3ec9474a2bed218f3eb04be07655d97546000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000d323bea14cc", "to": "0x15d4c048f83bd7e37d49ea4c83a07267ec4203da", "value": "0x0" }, "result": { "gasUsed": "0x9f6c", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xa2f25eaa74d0cce8430c20c2fa6a8e772f9a5584a8a1656319e1d00ce6333445" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x3628a11dd35113777e9c41ddce193f8382715ee9", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x4ad64983349c49defe8d7a4686202d24b25d0ce8", "value": "0x131c3bebcc54ec00" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x7650d0988dbfab8c5c56fb983357c543166f178e6bd0b961814a3c9075e385da" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x2534d777c4bd568e1cd38c4f39bce4b8564dfbec", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x09e0284d46fe227794c35f2e16035331663c33e2", "value": "0x16345785d8a0000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xa225da5152953353cfc6d0ac825513346258c3401bf462ca172c33f223f1b668" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x01f786430032acfeb90b93d13cbb509775846c7a", "callType": "call", "gas": "0x71b7", "input": "0xa9059cbb000000000000000000000000ee022c4a3a8855356e78a3960a34842dc868b754000000000000000000000000000000000000000000000000000000028fa6ae00", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x5fb5", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x43844fe9d5936a63a1192ce30be677fd2ba6e2ea071a1a054dab13f078e0d356" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xa910f92acdaf488fa6ef02174fb86208ad7722ba", "callType": "call", "gas": "0x1ce48", "input": "0xa9059cbb000000000000000000000000ea961445407d41902f16d329e594e0081b67f7b0000000000000000000000000000000000000000000000000cb8dae6a9ee68f50", "to": "0xa2b4c0af19cc16a6cfacce81f192b024d625817d", "value": "0x0" }, "result": { "gasUsed": "0x18277", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xb236ca3487699f1adf2c17cfc232ed3a84eab7b86804dbfa1c8205240de90445" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x5a9662f4940cd046ab4777f83d1a3e0f83177233", "callType": "call", "gas": "0xd0a8", "input": "0xa9059cbb0000000000000000000000005b00eeba150b69b73ddc66295e409b2b1b566cbc0000000000000000000000000000000000000000000000000000000077359400", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x5fb5", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xc5967474de26f27380e7c44450fc8b3512b9a6d97d0d6d1f4e68105d501ca88b" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xd0b62264e4e9aa1f26f6e45eb8d4a6d1514ccb22", "callType": "call", "gas": "0x4228", "input": "0xf7654176", "to": "0xfa52274dd61e1643d2205169732f29114bc240b3", "value": "0x3629d0b5dc15320" }, "result": { "gasUsed": "0x34c5", "output": "0x" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0xfa52274dd61e1643d2205169732f29114bc240b3", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x267be1c1d684f78cb4f6a176c4911b741e4ffdc0", "value": "0x3629d0b5dc15320" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x0e9691cb9030ab63b36bdfa3409d9c0419220a58f74baae249736a36ff7e2a1c" }, { "output": "0x0000000000000000000000000000000000000000000050ae861390fcd9b17f49", "stateDiff": null, "trace": [ { "action": { "from": "0xabf107de3e01c7c257e64e0a18d60a733aad395d", "callType": "call", "gas": "0x7a6e4", "input": "0x8182b61f000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000508809bcff7157938e3800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000012556e69737761705633000000000000000000000000000000000000000000000000000000000000057676f519001d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000240ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001142616c616e6365725632000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000508809bcff7157938e3700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c806df3b2bbb68adc8b0e302443692037ed9f91b42000000000000000000000063000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000000000869584cd00000000000000000000000086003b044f70dac0abc80ac8957305b6370893ed0000000000000000000000000000000000000000000000851634d88c61683972", "to": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "value": "0x57676f519001d0000" }, "result": { "gasUsed": "0x6d8fd", "output": "0x0000000000000000000000000000000000000000000050ae861390fcd9b17f49" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "delegatecall", "gas": "0x76f68", "input": "0x8182b61f000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000508809bcff7157938e3800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000012556e69737761705633000000000000000000000000000000000000000000000000000000000000057676f519001d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000240ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001142616c616e6365725632000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000508809bcff7157938e3700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c806df3b2bbb68adc8b0e302443692037ed9f91b42000000000000000000000063000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000000000869584cd00000000000000000000000086003b044f70dac0abc80ac8957305b6370893ed0000000000000000000000000000000000000000000000851634d88c61683972", "to": "0x44a6999ec971cfca458aff25a808f272f6d492a2", "value": "0x57676f519001d0000" }, "result": { "gasUsed": "0x6bf07", "output": "0x0000000000000000000000000000000000000000000050ae861390fcd9b17f49" }, "subtraces": 9, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "staticcall", "gas": "0x7236b", "input": "0x70a08231000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d", "to": "0x6b175474e89094c44da98b954eedeac495271d0f", "value": "0x0" }, "result": { "gasUsed": "0xa2a", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, 0 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "value": "0x57676f519001d0000" }, "result": { "gasUsed": "0x37", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 1 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "call", "gas": "0x6e856", "input": "0xb68df16d000000000000000000000000b2bc06a4efb20fc6553a69dbfa49b7be938034a7000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e4832b24bb0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000000000000000", "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "value": "0x0" }, "result": { "gasUsed": "0x963a", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002013c9929e00000000000000000000000000000000000000000000000000000000" }, "subtraces": 1, "traceAddress": [ 0, 2 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "delegatecall", "gas": "0x6c00d", "input": "0x832b24bb0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000057676f519001d0000", "to": "0xb2bc06a4efb20fc6553a69dbfa49b7be938034a7", "value": "0x0" }, "result": { "gasUsed": "0x8783", "output": "0x13c9929e00000000000000000000000000000000000000000000000000000000" }, "subtraces": 1, "traceAddress": [ 0, 2, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "call", "gas": "0x67c94", "input": "0xd0e30db0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x57676f519001d0000" }, "result": { "gasUsed": "0x5da6", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 2, 0, 0 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "call", "gas": "0x63a1e", "input": "0xb68df16d000000000000000000000000b4fa284689c9784a60d840eb136bb16c5246191f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000003a4832b24bb0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000012556e69737761705633000000000000000000000000000000000000000000000000000000000000057676f519001d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "value": "0x0" }, "result": { "gasUsed": "0x28f1f", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002013c9929e00000000000000000000000000000000000000000000000000000000" }, "subtraces": 1, "traceAddress": [ 0, 3 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "delegatecall", "gas": "0x6140a", "input": "0x832b24bb0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000012556e69737761705633000000000000000000000000000000000000000000000000000000000000057676f519001d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", "to": "0xb4fa284689c9784a60d840eb136bb16c5246191f", "value": "0x0" }, "result": { "gasUsed": "0x27fe2", "output": "0x13c9929e00000000000000000000000000000000000000000000000000000000" }, "subtraces": 2, "traceAddress": [ 0, 3, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "staticcall", "gas": "0x5e862", "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000000057676f519001d0000" }, "subtraces": 0, "traceAddress": [ 0, 3, 0, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "delegatecall", "gas": "0x5cdb6", "input": "0xf712a1480000000000000000000000000000000000000000000000000000000000000080000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000057676f519001d000000000000000000000000000000000012556e69737761705633000000000000000000000000000000000000000000000000000000000000057676f519001d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e592427a0aece92de3edee1f18e0157c058615640000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000", "to": "0x22b4fc7f97a9619cacbb9b99b5238797b88bc17c", "value": "0x0" }, "result": { "gasUsed": "0x24c82", "output": "0x00000000000000000000000000000000000000000000000000000058c2ac0fa2" }, "subtraces": 2, "traceAddress": [ 0, 3, 0, 1 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "staticcall", "gas": "0x5acb8", "input": "0xdd62ed3e00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0xa9d", "output": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" }, "subtraces": 0, "traceAddress": [ 0, 3, 0, 1, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "call", "gas": "0x59432", "input": "0xc04b8d59000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000000000000000000000000000000000000616839bb0000000000000000000000000000000000000000000000057676f519001d00000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000", "to": "0xe592427a0aece92de3edee1f18e0157c05861564", "value": "0x0" }, "result": { "gasUsed": "0x21fd3", "output": "0x00000000000000000000000000000000000000000000000000000058c2ac0fa2" }, "subtraces": 1, "traceAddress": [ 0, 3, 0, 1, 1 ], "type": "call" }, { "action": { "from": "0xe592427a0aece92de3edee1f18e0157c05861564", "callType": "call", "gas": "0x5614d", "input": "0x128acb0800000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057676f519001d0000000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d2500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000", "to": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", "value": "0x0" }, "result": { "gasUsed": "0x200f9", "output": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffa73d53f05e0000000000000000000000000000000000000000000000057676f519001d0000" }, "subtraces": 4, "traceAddress": [ 0, 3, 0, 1, 1, 0 ], "type": "call" }, { "action": { "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", "callType": "call", "gas": "0x446bf", "input": "0xa9059cbb00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000000000000000000000000000000000058c2ac0fa2", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0xabf1", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [ 0, 3, 0, 1, 1, 0, 0 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x419c9", "input": "0xa9059cbb00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000000000000000000000000000000000058c2ac0fa2", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x8f78", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 3, 0, 1, 1, 0, 0, 0 ], "type": "call" }, { "action": { "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", "callType": "staticcall", "gas": "0x39a18", "input": "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x9e6", "output": "0x00000000000000000000000000000000000000000000015444be6dc4e4c39835" }, "subtraces": 0, "traceAddress": [ 0, 3, 0, 1, 1, 0, 1 ], "type": "call" }, { "action": { "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", "callType": "call", "gas": "0x38d43", "input": "0xfa461e33ffffffffffffffffffffffffffffffffffffffffffffffffffffffa73d53f05e0000000000000000000000000000000000000000000000057676f519001d0000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20001f4a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000", "to": "0xe592427a0aece92de3edee1f18e0157c05861564", "value": "0x0" }, "result": { "gasUsed": "0x2857", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 3, 0, 1, 1, 0, 2 ], "type": "call" }, { "action": { "from": "0xe592427a0aece92de3edee1f18e0157c05861564", "callType": "call", "gas": "0x37085", "input": "0x23b872dd00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f56400000000000000000000000000000000000000000000000057676f519001d0000", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x1851", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 3, 0, 1, 1, 0, 2, 0 ], "type": "call" }, { "action": { "from": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640", "callType": "staticcall", "gas": "0x36315", "input": "0x70a0823100000000000000000000000088e6a0c2ddd26feeb64f039a2c41296fcb3f5640", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x000000000000000000000000000000000000000000000159bb3562dde4e09835" }, "subtraces": 0, "traceAddress": [ 0, 3, 0, 1, 1, 0, 3 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "call", "gas": "0x39cc8", "input": "0xb68df16d000000000000000000000000b4fa284689c9784a60d840eb136bb16c5246191f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000344832b24bb0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000240ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001142616c616e6365725632000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000508809bcff7157938e3700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c806df3b2bbb68adc8b0e302443692037ed9f91b420000000000000000000000630000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "value": "0x0" }, "result": { "gasUsed": "0x24171", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002013c9929e00000000000000000000000000000000000000000000000000000000" }, "subtraces": 1, "traceAddress": [ 0, 4 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "delegatecall", "gas": "0x38ad8", "input": "0x832b24bb0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000240ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000001142616c616e6365725632000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000508809bcff7157938e3700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c806df3b2bbb68adc8b0e302443692037ed9f91b4200000000000000000000006300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", "to": "0xb4fa284689c9784a60d840eb136bb16c5246191f", "value": "0x0" }, "result": { "gasUsed": "0x23c0a", "output": "0x13c9929e00000000000000000000000000000000000000000000000000000000" }, "subtraces": 2, "traceAddress": [ 0, 4, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "staticcall", "gas": "0x36966", "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x523", "output": "0x00000000000000000000000000000000000000000000000000000058c2ac0fa2" }, "subtraces": 1, "traceAddress": [ 0, 4, 0, 0 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x358e6", "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x211", "output": "0x00000000000000000000000000000000000000000000000000000058c2ac0fa2" }, "subtraces": 0, "traceAddress": [ 0, 4, 0, 0, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "delegatecall", "gas": "0x35632", "input": "0xf712a1480000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000000058c2ac0fa20000000000000000000000000000001142616c616e6365725632000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000508809bcff7157938e3700000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c806df3b2bbb68adc8b0e302443692037ed9f91b42000000000000000000000063", "to": "0x22b4fc7f97a9619cacbb9b99b5238797b88bc17c", "value": "0x0" }, "result": { "gasUsed": "0x21052", "output": "0x0000000000000000000000000000000000000000000050ae861390fcd9b17f49" }, "subtraces": 2, "traceAddress": [ 0, 4, 0, 1 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "staticcall", "gas": "0x3402f", "input": "0xdd62ed3e00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0xd62", "output": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffe3671788e59f" }, "subtraces": 1, "traceAddress": [ 0, 4, 0, 1, 0 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x33051", "input": "0xdd62ed3e00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c8", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0xa4d", "output": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffe3671788e59f" }, "subtraces": 0, "traceAddress": [ 0, 4, 0, 1, 0, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "call", "gas": "0x3225c", "input": "0x52bbbe2900000000000000000000000000000000000000000000000000000000000000e000000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000616839bb06df3b2bbb68adc8b0e302443692037ed9f91b420000000000000000000000630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000000058c2ac0fa200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000", "to": "0xba12222222228d8ba445958a75a0704d566bf2c8", "value": "0x0" }, "result": { "gasUsed": "0x1df5e", "output": "0x0000000000000000000000000000000000000000000050ae861390fcd9b17f49" }, "subtraces": 3, "traceAddress": [ 0, 4, 0, 1, 1 ], "type": "call" }, { "action": { "from": "0xba12222222228d8ba445958a75a0704d566bf2c8", "callType": "call", "gas": "0x2ac20", "input": "0x01ec954a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000006b175474e89094c44da98b954eedeac495271d0f00000000000000000000000000000000000000000000000000000058c2ac0fa206df3b2bbb68adc8b0e302443692037ed9f91b420000000000000000000000630000000000000000000000000000000000000000000000000000000000ccb93600000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c1800000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c180000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000001eccf8fe0d33c77208611300000000000000000000000000000000000000000000000000002c6d4c6c08f300000000000000000000000000000000000000000000000000002623fdf5fe64", "to": "0x06df3b2bbb68adc8b0e302443692037ed9f91b42", "value": "0x0" }, "result": { "gasUsed": "0x8b65", "output": "0x0000000000000000000000000000000000000000000050ae861390fcd9b17f49" }, "subtraces": 0, "traceAddress": [ 0, 4, 0, 1, 1, 0 ], "type": "call" }, { "action": { "from": "0xba12222222228d8ba445958a75a0704d566bf2c8", "callType": "call", "gas": "0x1f70a", "input": "0x23b872dd00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c800000000000000000000000000000000000000000000000000000058c2ac0fa2", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x3ce8", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [ 0, 4, 0, 1, 1, 1 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x1ec4b", "input": "0x23b872dd00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18000000000000000000000000ba12222222228d8ba445958a75a0704d566bf2c800000000000000000000000000000000000000000000000000000058c2ac0fa2", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x39cd", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 4, 0, 1, 1, 1, 0 ], "type": "call" }, { "action": { "from": "0xba12222222228d8ba445958a75a0704d566bf2c8", "callType": "call", "gas": "0x1b56b", "input": "0xa9059cbb00000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c180000000000000000000000000000000000000000000050ae861390fcd9b17f49", "to": "0x6b175474e89094c44da98b954eedeac495271d0f", "value": "0x0" }, "result": { "gasUsed": "0x75de", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 4, 0, 1, 1, 2 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "call", "gas": "0x152f0", "input": "0xb68df16d0000000000000000000000004638a7ebe75b911b995d0ec73a81e4f85f41f24e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a4832b24bb0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "value": "0x0" }, "result": { "gasUsed": "0x275d", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002013c9929e00000000000000000000000000000000000000000000000000000000" }, "subtraces": 1, "traceAddress": [ 0, 5 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "delegatecall", "gas": "0x140d9", "input": "0x832b24bb0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee0000000000000000000000000000000000000000000000000000000000000000", "to": "0x4638a7ebe75b911b995d0ec73a81e4f85f41f24e", "value": "0x0" }, "result": { "gasUsed": "0x1882", "output": "0x13c9929e00000000000000000000000000000000000000000000000000000000" }, "subtraces": 2, "traceAddress": [ 0, 5, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "staticcall", "gas": "0x1316f", "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, 5, 0, 0 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "staticcall", "gas": "0x12c06", "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x523", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 1, "traceAddress": [ 0, 5, 0, 1 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x1247c", "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x211", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, 5, 0, 1, 0 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "staticcall", "gas": "0x126a6", "input": "0x70a0823100000000000000000000000022f9dcf4647084d6c31b2765f6910cd85c178c18", "to": "0x6b175474e89094c44da98b954eedeac495271d0f", "value": "0x0" }, "result": { "gasUsed": "0x25a", "output": "0x0000000000000000000000000000000000000000000050ae861390fcd9b17f49" }, "subtraces": 0, "traceAddress": [ 0, 6 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "call", "gas": "0x11f73", "input": "0x54132d780000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a9059cbb000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d0000000000000000000000000000000000000000000050ae861390fcd9b17f4900000000000000000000000000000000000000000000000000000000", "to": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "value": "0x0" }, "result": { "gasUsed": "0x6059", "output": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [ 0, 7 ], "type": "call" }, { "action": { "from": "0x22f9dcf4647084d6c31b2765f6910cd85c178c18", "callType": "call", "gas": "0x117d9", "input": "0xa9059cbb000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d0000000000000000000000000000000000000000000050ae861390fcd9b17f49", "to": "0x6b175474e89094c44da98b954eedeac495271d0f", "value": "0x0" }, "result": { "gasUsed": "0x5b4e", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 7, 0 ], "type": "call" }, { "action": { "from": "0xdef1c0ded9bec7f1a1670819833240f027b25eff", "callType": "staticcall", "gas": "0xbb55", "input": "0x70a08231000000000000000000000000abf107de3e01c7c257e64e0a18d60a733aad395d", "to": "0x6b175474e89094c44da98b954eedeac495271d0f", "value": "0x0" }, "result": { "gasUsed": "0x25a", "output": "0x0000000000000000000000000000000000000000000050ae861390fcd9b17f49" }, "subtraces": 0, "traceAddress": [ 0, 8 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xefeb1aa7947bc0d6f2ae4ebec7cb9250f42afb9bdd231c0adc51020a2a5cb5d7" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000024a718ca30cbba9e000000000000000000000000000000000000000000000089185e267744baecd7", "stateDiff": null, "trace": [ { "action": { "from": "0xc625596ceaec2f71a3453c581e1c019ff2179006", "callType": "call", "gas": "0x43383", "input": "0x38ed173900000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000084a77431dc7ee0f05200000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cbf4e4f6bc3e755ce50f5983fca401337986f7b80000000000000000000000000000000000000000000000000000000061683a210000000000000000000000000000000000000000000000000000000000000003000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a2b4c0af19cc16a6cfacce81f192b024d625817d", "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "value": "0x0" }, "result": { "gasUsed": "0x3e1f7", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000024a718ca30cbba9e000000000000000000000000000000000000000000000089185e267744baecd7" }, "subtraces": 5, "traceAddress": [], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "staticcall", "gas": "0x4104d", "input": "0x0902f1ac", "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", "value": "0x0" }, "result": { "gasUsed": "0x9c8", "output": "0x00000000000000000000000000000000000000000000050051ca21e154a1c57500000000000000000000000000000000000000000000000000005113c4ba84df00000000000000000000000000000000000000000000000000000000616839ab" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "staticcall", "gas": "0x3f411", "input": "0x0902f1ac", "to": "0xf82d8ec196fb0d56c6b82a8b1870f09502a49f88", "value": "0x0" }, "result": { "gasUsed": "0x9c8", "output": "0x00000000000000000000000000000000000000000000a0f744221c1102556d0e00000000000000000000000000000000000000000000002ac344405e84c9568900000000000000000000000000000000000000000000000000000000616839ab" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x3d5f4", "input": "0x23b872dd000000000000000000000000c625596ceaec2f71a3453c581e1c019ff21790060000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f185200000000000000000000000000000000000000000000000000000002540be400", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x67a2", "output": "0x" }, "subtraces": 0, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x36511", "input": "0x022c0d9f00000000000000000000000000000000000000000000000024a718ca30cbba9e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f82d8ec196fb0d56c6b82a8b1870f09502a49f8800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", "value": "0x0" }, "result": { "gasUsed": "0xbc7a", "output": "0x" }, "subtraces": 3, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", "callType": "call", "gas": "0x3240f", "input": "0xa9059cbb000000000000000000000000f82d8ec196fb0d56c6b82a8b1870f09502a49f8800000000000000000000000000000000000000000000000024a718ca30cbba9e", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x323e", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3, 0 ], "type": "call" }, { "action": { "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", "callType": "staticcall", "gas": "0x2f02d", "input": "0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000005002d23091723d60ad7" }, "subtraces": 0, "traceAddress": [ 3, 1 ], "type": "call" }, { "action": { "from": "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852", "callType": "staticcall", "gas": "0x2ec8a", "input": "0x70a082310000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x407", "output": "0x0000000000000000000000000000000000000000000000000000511618c668df" }, "subtraces": 0, "traceAddress": [ 3, 2 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x2a44a", "input": "0x022c0d9f000000000000000000000000000000000000000000000089185e267744baecd70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cbf4e4f6bc3e755ce50f5983fca401337986f7b800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0xf82d8ec196fb0d56c6b82a8b1870f09502a49f88", "value": "0x0" }, "result": { "gasUsed": "0x25b6d", "output": "0x" }, "subtraces": 3, "traceAddress": [ 4 ], "type": "call" }, { "action": { "from": "0xf82d8ec196fb0d56c6b82a8b1870f09502a49f88", "callType": "call", "gas": "0x2664b", "input": "0xa9059cbb000000000000000000000000cbf4e4f6bc3e755ce50f5983fca401337986f7b8000000000000000000000000000000000000000000000089185e267744baecd7", "to": "0xa2b4c0af19cc16a6cfacce81f192b024d625817d", "value": "0x0" }, "result": { "gasUsed": "0x18277", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 4, 0 ], "type": "call" }, { "action": { "from": "0xf82d8ec196fb0d56c6b82a8b1870f09502a49f88", "callType": "staticcall", "gas": "0xe771", "input": "0x70a08231000000000000000000000000f82d8ec196fb0d56c6b82a8b1870f09502a49f88", "to": "0xa2b4c0af19cc16a6cfacce81f192b024d625817d", "value": "0x0" }, "result": { "gasUsed": "0x52c4", "output": "0x00000000000000000000000000000000000000000000a06e327bacd72796dd14" }, "subtraces": 0, "traceAddress": [ 4, 1 ], "type": "call" }, { "action": { "from": "0xf82d8ec196fb0d56c6b82a8b1870f09502a49f88", "callType": "staticcall", "gas": "0x9463", "input": "0x70a08231000000000000000000000000f82d8ec196fb0d56c6b82a8b1870f09502a49f88", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x00000000000000000000000000000000000000000000002ae7eb5928b5951127" }, "subtraces": 0, "traceAddress": [ 4, 2 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x18210e6792c28caebecb38d5174aae8fa1efd9b813a28572c18054d48a643ee4" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x94eb098e1710d7131362a68b833aa171de00c39a", "callType": "call", "gas": "0x15ac8", "input": "0xa9059cbb000000000000000000000000a1d8d972560c2f8144af871db508f0b0b10a3fbf000000000000000000000000000000000000000000000000000000001dcd6500", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x6925", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x13982", "input": "0xa9059cbb000000000000000000000000a1d8d972560c2f8144af871db508f0b0b10a3fbf000000000000000000000000000000000000000000000000000000001dcd6500", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x4cac", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xfa4b161c92c5beee942e725a1b3efcb2ce3f5e6e39f9c55ab860953b260a6c0d" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xcb115a5373d0555420d9d7e152e2385bf625a86f", "callType": "call", "gas": "0xdc24", "input": "0xa9059cbb000000000000000000000000b9ee1e551f538a464e8f8c41e9904498505b49b0000000000000000000000000000000000000000000000001515e783339bf0000", "to": "0x111111111117dc0aa78b770fa6a738034120c302", "value": "0x0" }, "result": { "gasUsed": "0x324a", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xcd2ce786a35249e78c001745a9423681c53ee86d4a1cd07c6c3269e3eabdaa2c" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x72256b4af463d8b9f65daa9f8a7d02eedd89c482", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x1b7b74fe6517a4a060f8bad61cbbc7031b663e1f", "value": "0xd99a8cec7e200000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x5068fac1bde989afd43b206a8c05a1079066b891583bb5d3a866df432791f830" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x00cddd3edec87f1a07edafcac309dfb2e4fa76b9", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x077d360f11d220e4d5d831430c81c26c9be7c4a4", "value": "0x21f5da4dbf25e000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x3baf0403cb4d49c4d1a31d6acb209cbbd7288fa8dbcd7e55ce777e6d556842ad" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x2ceb70df003ce358bb9b7b07553fcef79049a6f3", "callType": "call", "gas": "0x0", "input": "0x", "to": "0xaa017d7f00ed22b872d23965cfcdd722e18426c4", "value": "0x6ea70195c20ae00" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xa25c9a30c2a4fd16b684d6ba31d1b755fc1b595cfd6674c644f423d91d851421" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xc01f9fac89ab4e09623b2aadd2572abfbc2390b6", "callType": "call", "gas": "0x8f7c", "input": "0x095ea7b3000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x6949", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xa6e2dce89ca32be6b47b701019f0a1f444551152582d776867003a1dca9d793f" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x7292ca5b1b807e00a7e2ef8b9649be2fbd010958", "callType": "call", "gas": "0x8cc0", "input": "0xb6b4af05000000000000000000000000000000000000000000000003ef799f76933370000000000000000000000000000000000000000000000000000000001c14dcee9d0000000000000000000000000000000000000000000000000000000061683d08a9bb9e08b28d7590991c10efd9fa858dfa9acfbc0f7ec8324f880910348af7f18ed00310e75fecd44e26b293ae9e694f8753be4e308325bf4159ca2d01ff4dd4000000000000000000000000000000000000000000000000000000000000001c346e2f06e7e077dbe581b54ad70b68dbd3295fcc90552c2a4da862a6088d704363fb3af310b0d625ced54616728416dcbcced492d3cf495361eaec9d08a18e0d0000000000000000000000000000000000000000000000000000000000000000", "to": "0x52de8d3febd3a06d3c627f59d56e6892b80dcf12", "value": "0x3ef799f7693337000" }, "result": { "gasUsed": "0x7f38", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x022b98b9423d373d77fabb45b6cfb1a87ef639586df3a423b5f3dffdf87bc1a0" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x8a5bed2ba1994ab1ea48d825ba6d0275bfc7ca78", "callType": "call", "gas": "0x5da6", "input": "0xd0e30db0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x4e1003b28d9280000" }, "result": { "gasUsed": "0x5da6", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xd202f2b507eb6072ced6fab906041242d32e96b4d17e7c35918620421198e48e" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xe67b18b27db897ff71994a6ad3890626620e580a", "callType": "call", "gas": "0x34cc5", "input": "0x", "to": "0xe67b18b27db897ff71994a6ad3890626620e580a", "value": "0x0" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x08ebb832cf01473737cfafab22207069add5240571b6da523cbd8d7be13103f8" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xd1453c1310846ec5ba080fcb1d3e128e9d124745", "callType": "call", "gas": "0x23c84", "input": "0x3070b98d00000000000000000000000000000000000000000000000000000000000001180000000000000000000000000000000000000000000000000000000000000000", "to": "0x9acbeb4338fb2664be1ee82059dda51794fc0978", "value": "0x0" }, "result": { "gasUsed": "0x161a0", "output": "0x" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0x9acbeb4338fb2664be1ee82059dda51794fc0978", "callType": "call", "gas": "0x14f27", "input": "0xa9059cbb000000000000000000000000d1453c1310846ec5ba080fcb1d3e128e9d12474500000000000000000000000000000000000000000000000d8c04228a1b504000", "to": "0x97872eafd79940c7b24f7bcc1eadb1457347adc9", "value": "0x0" }, "result": { "gasUsed": "0x77f0", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xc7b0e98d94301f2d160054c225b5e41da14e08a86357a87374100efaa59e0926" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x623315d856babe92411a5a2816d55f00a07c74f0", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x0de916604e798ce1c5307177fb11a491dd3b12ac", "value": "0x16345785d8a0000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x0f63e71d7a71b6d4116dc9f1266b7439ec07d2ba321a709ed34bae9981626ecd" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xa564adc4bb6f5ae30276d3c12e7f717207db9c18", "callType": "call", "gas": "0x58417", "input": "0x791ac947000000000000000000000000000000000000000000002ae232908570724000000000000000000000000000000000000000000000000000000df88cd5b4f613cd00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a564adc4bb6f5ae30276d3c12e7f717207db9c18000000000000000000000000000000000000000000000000000000006168405900000000000000000000000000000000000000000000000000000000000000020000000000000000000000004da08a1bff50be96bded5c7019227164b49c2bfc000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "value": "0x0" }, "result": { "gasUsed": "0x4812d", "output": "0x" }, "subtraces": 7, "traceAddress": [], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x55c12", "input": "0x23b872dd000000000000000000000000a564adc4bb6f5ae30276d3c12e7f717207db9c180000000000000000000000005013b8c94ff2e95e8b36e3c064274b20987403f8000000000000000000000000000000000000000000002ae23290857072400000", "to": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "value": "0x0" }, "result": { "gasUsed": "0x37efa", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 4, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "callType": "staticcall", "gas": "0x4da12", "input": "0xad5c4648", "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "value": "0x0" }, "result": { "gasUsed": "0x113", "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" }, "subtraces": 0, "traceAddress": [ 0, 0 ], "type": "call" }, { "action": { "from": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "callType": "call", "gas": "0x476e0", "input": "0x791ac9470000000000000000000000000000000000000000000003f912176707ed569103000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000004da08a1bff50be96bded5c7019227164b49c2bfc00000000000000000000000000000000000000000000000000000000616839bb00000000000000000000000000000000000000000000000000000000000000020000000000000000000000004da08a1bff50be96bded5c7019227164b49c2bfc000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "value": "0x0" }, "result": { "gasUsed": "0x20385", "output": "0x" }, "subtraces": 7, "traceAddress": [ 0, 1 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x45cad", "input": "0x23b872dd0000000000000000000000004da08a1bff50be96bded5c7019227164b49c2bfc0000000000000000000000005013b8c94ff2e95e8b36e3c064274b20987403f80000000000000000000000000000000000000000000003f912176707ed569103", "to": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "value": "0x0" }, "result": { "gasUsed": "0x89e7", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 1, 0 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "staticcall", "gas": "0x3c4ac", "input": "0x0902f1ac", "to": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "value": "0x0" }, "result": { "gasUsed": "0x9c8", "output": "0x0000000000000000000000000000000000000000000a7a8d4799f0f018ac99590000000000000000000000000000000000000000000000052ee7a595569618bf0000000000000000000000000000000000000000000000000000000061683951" }, "subtraces": 0, "traceAddress": [ 0, 1, 1 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "staticcall", "gas": "0x3b90c", "input": "0x70a082310000000000000000000000005013b8c94ff2e95e8b36e3c064274b20987403f8", "to": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "value": "0x0" }, "result": { "gasUsed": "0x6a3", "output": "0x0000000000000000000000000000000000000000000a7e20c5b614055dbfb79e" }, "subtraces": 0, "traceAddress": [ 0, 1, 2 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x3ac84", "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c2e24d92ed8dd60000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "value": "0x0" }, "result": { "gasUsed": "0x101e2", "output": "0x" }, "subtraces": 3, "traceAddress": [ 0, 1, 3 ], "type": "call" }, { "action": { "from": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "callType": "call", "gas": "0x36a46", "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000001c2e24d92ed8dd6", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x750a", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 1, 3, 0 ], "type": "call" }, { "action": { "from": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "callType": "staticcall", "gas": "0x2f4b7", "input": "0x70a082310000000000000000000000005013b8c94ff2e95e8b36e3c064274b20987403f8", "to": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "value": "0x0" }, "result": { "gasUsed": "0x6a3", "output": "0x0000000000000000000000000000000000000000000a7e20c5b614055dbfb79e" }, "subtraces": 0, "traceAddress": [ 0, 1, 3, 1 ], "type": "call" }, { "action": { "from": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "callType": "staticcall", "gas": "0x2ec99", "input": "0x70a082310000000000000000000000005013b8c94ff2e95e8b36e3c064274b20987403f8", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000000052d24c347c3a88ae9" }, "subtraces": 0, "traceAddress": [ 0, 1, 3, 2 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "staticcall", "gas": "0x2acdc", "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x00000000000000000000000000000000000000000000000001c2e24d92ed8dd6" }, "subtraces": 0, "traceAddress": [ 0, 1, 4 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x2a926", "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000001c2e24d92ed8dd6", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x2407", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 1, 5 ], "type": "call" }, { "action": { "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "value": "0x1c2e24d92ed8dd6" }, "result": { "gasUsed": "0x53", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 1, 5, 0 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x26a56", "input": "0x", "to": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "value": "0x1c2e24d92ed8dd6" }, "result": { "gasUsed": "0x37", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 1, 6 ], "type": "call" }, { "action": { "from": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x8b4ddd7a804978508c20b1238bde91e1f6f4802f", "value": "0xe17126c976c6eb" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 2 ], "type": "call" }, { "action": { "from": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x8b4ddd7a804978508c20b1238bde91e1f6f4802f", "value": "0xe17126c976c6eb" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 3 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "staticcall", "gas": "0x1e46f", "input": "0x0902f1ac", "to": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "value": "0x0" }, "result": { "gasUsed": "0x1f8", "output": "0x0000000000000000000000000000000000000000000a7e20c5b614055dbfb79e0000000000000000000000000000000000000000000000052d24c347c3a88ae900000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "staticcall", "gas": "0x1e080", "input": "0x70a082310000000000000000000000005013b8c94ff2e95e8b36e3c064274b20987403f8", "to": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "value": "0x0" }, "result": { "gasUsed": "0x6a3", "output": "0x0000000000000000000000000000000000000000000aa4ba900a64961ae6a49e" }, "subtraces": 0, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x1d3f8", "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012b7b13a0e44da7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "value": "0x0" }, "result": { "gasUsed": "0x927e", "output": "0x" }, "subtraces": 3, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "callType": "call", "gas": "0x1b9cb", "input": "0xa9059cbb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000012b7b13a0e44da7f", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x5a7a", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3, 0 ], "type": "call" }, { "action": { "from": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "callType": "staticcall", "gas": "0x15e62", "input": "0x70a082310000000000000000000000005013b8c94ff2e95e8b36e3c064274b20987403f8", "to": "0x4da08a1bff50be96bded5c7019227164b49c2bfc", "value": "0x0" }, "result": { "gasUsed": "0x6a3", "output": "0x0000000000000000000000000000000000000000000aa4ba900a64961ae6a49e" }, "subtraces": 0, "traceAddress": [ 3, 1 ], "type": "call" }, { "action": { "from": "0x5013b8c94ff2e95e8b36e3c064274b20987403f8", "callType": "staticcall", "gas": "0x15644", "input": "0x70a082310000000000000000000000005013b8c94ff2e95e8b36e3c064274b20987403f8", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000000051a6d120db563b06a" }, "subtraces": 0, "traceAddress": [ 3, 2 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "staticcall", "gas": "0x141f6", "input": "0x70a082310000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x00000000000000000000000000000000000000000000000012b7b13a0e44da7f" }, "subtraces": 0, "traceAddress": [ 4 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0x13e40", "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000012b7b13a0e44da7f", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x2407", "output": "0x" }, "subtraces": 1, "traceAddress": [ 5 ], "type": "call" }, { "action": { "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "value": "0x12b7b13a0e44da7f" }, "result": { "gasUsed": "0x53", "output": "0x" }, "subtraces": 0, "traceAddress": [ 5, 0 ], "type": "call" }, { "action": { "from": "0x7a250d5630b4cf539739df2c5dacb4c659f2488d", "callType": "call", "gas": "0xff71", "input": "0x", "to": "0xa564adc4bb6f5ae30276d3c12e7f717207db9c18", "value": "0x12b7b13a0e44da7f" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 6 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x6bb7f27d2d7b2c8c86ac338dc745a5ac1818b758833845db3273e145b2a74dfd" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000d8d74446166f08000000000000000000000000000000000000000000000000000000000008f4d864300000000000000000000000000000000000000000000000008d069c6d147badb", "stateDiff": null, "trace": [ { "action": { "from": "0xe97a8888c89951ed4567d61fbca8a6c6c7e762c2", "callType": "call", "gas": "0x34491", "input": "0x18cbafe500000000000000000000000000000000000000000000000d8d74446166f0800000000000000000000000000000000000000000000000000008ae0fd410b6d8ff00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e97a8888c89951ed4567d61fbca8a6c6c7e762c200000000000000000000000000000000000000000000000000000000616840ab000000000000000000000000000000000000000000000000000000000000000300000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc9000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "value": "0x0" }, "result": { "gasUsed": "0x2f54d", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000d8d74446166f08000000000000000000000000000000000000000000000000000000000008f4d864300000000000000000000000000000000000000000000000008d069c6d147badb" }, "subtraces": 7, "traceAddress": [], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x32411", "input": "0x0902f1ac", "to": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x00000000000000000000000000000000000000000000060887b5902080f6fee7000000000000000000000000000000000000000000000000000000408c1758d200000000000000000000000000000000000000000000000000000000616839ab" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x30752", "input": "0x0902f1ac", "to": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000000000000d8af414795a7000000000000000000000000000000000000000000000d5e2a8d7ff0ad33a45e00000000000000000000000000000000000000000000000000000000616839ab" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x2e8a6", "input": "0x23b872dd000000000000000000000000e97a8888c89951ed4567d61fbca8a6c6c7e762c2000000000000000000000000fca032a9a68c5cbfaf8377775173eca59b83707300000000000000000000000000000000000000000000000d8d74446166f08000", "to": "0x97872eafd79940c7b24f7bcc1eadb1457347adc9", "value": "0x0" }, "result": { "gasUsed": "0x534b", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x28a75", "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008f4d8643000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "value": "0x0" }, "result": { "gasUsed": "0xf77e", "output": "0x" }, "subtraces": 3, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "callType": "call", "gas": "0x24c54", "input": "0xa9059cbb000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0000000000000000000000000000000000000000000000000000000008f4d8643", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x6925", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [ 3, 0 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x22747", "input": "0xa9059cbb000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0000000000000000000000000000000000000000000000000000000008f4d8643", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x4cac", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3, 0, 0 ], "type": "call" }, { "action": { "from": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "callType": "staticcall", "gas": "0x1e268", "input": "0x70a08231000000000000000000000000fca032a9a68c5cbfaf8377775173eca59b837073", "to": "0x97872eafd79940c7b24f7bcc1eadb1457347adc9", "value": "0x0" }, "result": { "gasUsed": "0x3a2", "output": "0x0000000000000000000000000000000000000000000006161529d481e7e77ee7" }, "subtraces": 0, "traceAddress": [ 3, 1 ], "type": "call" }, { "action": { "from": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "callType": "staticcall", "gas": "0x1dd2d", "input": "0x70a08231000000000000000000000000fca032a9a68c5cbfaf8377775173eca59b837073", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x523", "output": "0x0000000000000000000000000000000000000000000000000000003ffcc9d28f" }, "subtraces": 1, "traceAddress": [ 3, 2 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x1d2de", "input": "0x70a08231000000000000000000000000fca032a9a68c5cbfaf8377775173eca59b837073", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x211", "output": "0x0000000000000000000000000000000000000000000000000000003ffcc9d28f" }, "subtraces": 0, "traceAddress": [ 3, 2, 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x18f02", "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008d069c6d147badb000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "value": "0x0" }, "result": { "gasUsed": "0x101d7", "output": "0x" }, "subtraces": 3, "traceAddress": [ 4 ], "type": "call" }, { "action": { "from": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "callType": "call", "gas": "0x154cf", "input": "0xa9059cbb000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f00000000000000000000000000000000000000000000000008d069c6d147badb", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x750a", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 4, 0 ], "type": "call" }, { "action": { "from": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "callType": "staticcall", "gas": "0xdf2e", "input": "0x70a08231000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x523", "output": "0x0000000000000000000000000000000000000000000000000000d8afd0951bea" }, "subtraces": 1, "traceAddress": [ 4, 1 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0xd8d7", "input": "0x70a08231000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x211", "output": "0x0000000000000000000000000000000000000000000000000000d8afd0951bea" }, "subtraces": 0, "traceAddress": [ 4, 1, 0 ], "type": "call" }, { "action": { "from": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "callType": "staticcall", "gas": "0xd878", "input": "0x70a08231000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x000000000000000000000000000000000000000000000d5e21bd1629dbebe983" }, "subtraces": 0, "traceAddress": [ 4, 2 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x8f2c", "input": "0x2e1a7d4d00000000000000000000000000000000000000000000000008d069c6d147badb", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x2413", "output": "0x" }, "subtraces": 1, "traceAddress": [ 5 ], "type": "call" }, { "action": { "from": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "value": "0x8d069c6d147badb" }, "result": { "gasUsed": "0x5f", "output": "0x" }, "subtraces": 0, "traceAddress": [ 5, 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x500c", "input": "0x", "to": "0xe97a8888c89951ed4567d61fbca8a6c6c7e762c2", "value": "0x8d069c6d147badb" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 6 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x4ff9a149d4661bf3c70e9a611c158aecfc37514f869e231800d9c0e4bc41c5ac" }, { "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54000000000000000000000000000000000000000000", "stateDiff": null, "trace": [ { "action": { "from": "0x4d72d4269ab46962713ca19cab8161a87684a163", "callType": "call", "gas": "0x3a793", "input": "0x18cbafe500000000000000000000000000000000000000000000001422b82c0614d1217e0000000000000000000000000000000000000000000000000d5f62cd05cb81d300000000000000000000000000000000000000000000000000000000000000a00000000000000000000000004d72d4269ab46962713ca19cab8161a87684a163000000000000000000000000000000000000000000000000000000006168408d000000000000000000000000000000000000000000000000000000000000000300000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc9000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "value": "0x0" }, "error": "Reverted", "result": { "gasUsed": "0x3fd0", "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54000000000000000000000000000000000000000000" }, "subtraces": 2, "traceAddress": [], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x38587", "input": "0x0902f1ac", "to": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000006161529d481e7e77ee70000000000000000000000000000000000000000000000000000003ffcc9d28f00000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x368c8", "input": "0x0902f1ac", "to": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000000000000d8afd0951bea000000000000000000000000000000000000000000000d5e21bd1629dbebe98300000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xb0a3123f5200c73db7002859e75f15791bc0494ccb70db821b8af1d9e6582a9e" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000017979cfe362a000000000000000000000000000000000000000000000000015ab6967948ff12c4e5000000000000000000000000000000000000000000000000000000013172707c", "stateDiff": null, "trace": [ { "action": { "from": "0x1f4d1e4e624db5373cd58e149e4310b0f40b6302", "callType": "call", "gas": "0x315e8", "input": "0x7ff36ab5000000000000000000000000000000000000000000000000000000012ff2d55b00000000000000000000000000000000000000000000000000000000000000800000000000000000000000001f4d1e4e624db5373cd58e149e4310b0f40b630200000000000000000000000000000000000000000000000000000000616840590000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000383518188c0c6d7730d91b2c03a03c837814a899", "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "value": "0x17979cfe362a0000" }, "result": { "gasUsed": "0x2cb67", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000017979cfe362a000000000000000000000000000000000000000000000000015ab6967948ff12c4e5000000000000000000000000000000000000000000000000000000013172707c" }, "subtraces": 6, "traceAddress": [], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x2f612", "input": "0x0902f1ac", "to": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000004a4b0de5efece730886de800000000000000000000000000000000000000000000050a2f49fb9468acce7d00000000000000000000000000000000000000000000000000000000616839a3" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x2d935", "input": "0x0902f1ac", "to": "0x34d7d7aaf50ad4944b70b320acb24c95fa2def7c", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000000000000630f60a951940000000000000000000000000000000000000000007019bfa8cf04046ce70a3c00000000000000000000000000000000000000000000000000000000616839a3" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x2a65c", "input": "0xd0e30db0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x17979cfe362a0000" }, "result": { "gasUsed": "0x5da6", "output": "0x" }, "subtraces": 0, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x244fc", "input": "0xa9059cbb000000000000000000000000c3d03e4f041fd4cd388c549ee2a29a9e5075882f00000000000000000000000000000000000000000000000017979cfe362a0000", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x1f7e", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x21a51", "input": "0x022c0d9f00000000000000000000000000000000000000000000015ab6967948ff12c4e5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d7d7aaf50ad4944b70b320acb24c95fa2def7c00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", "value": "0x0" }, "result": { "gasUsed": "0xbd16", "output": "0x" }, "subtraces": 3, "traceAddress": [ 4 ], "type": "call" }, { "action": { "from": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", "callType": "call", "gas": "0x1de0f", "input": "0xa9059cbb00000000000000000000000034d7d7aaf50ad4944b70b320acb24c95fa2def7c00000000000000000000000000000000000000000000015ab6967948ff12c4e5", "to": "0x6b175474e89094c44da98b954eedeac495271d0f", "value": "0x0" }, "result": { "gasUsed": "0x3312", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 4, 0 ], "type": "call" }, { "action": { "from": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", "callType": "staticcall", "gas": "0x1a94a", "input": "0x70a08231000000000000000000000000c3d03e4f041fd4cd388c549ee2a29a9e5075882f", "to": "0x6b175474e89094c44da98b954eedeac495271d0f", "value": "0x0" }, "result": { "gasUsed": "0x25a", "output": "0x0000000000000000000000000000000000000000004a49b32f59739e3175a903" }, "subtraces": 0, "traceAddress": [ 4, 1 ], "type": "call" }, { "action": { "from": "0xc3d03e4f041fd4cd388c549ee2a29a9e5075882f", "callType": "staticcall", "gas": "0x1a552", "input": "0x70a08231000000000000000000000000c3d03e4f041fd4cd388c549ee2a29a9e5075882f", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x00000000000000000000000000000000000000000000050a46e198929ed6ce7d" }, "subtraces": 0, "traceAddress": [ 4, 2 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x15840", "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000013172707c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f4d1e4e624db5373cd58e149e4310b0f40b630200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x34d7d7aaf50ad4944b70b320acb24c95fa2def7c", "value": "0x0" }, "result": { "gasUsed": "0x1112a", "output": "0x" }, "subtraces": 3, "traceAddress": [ 5 ], "type": "call" }, { "action": { "from": "0x34d7d7aaf50ad4944b70b320acb24c95fa2def7c", "callType": "call", "gas": "0x11f06", "input": "0xa9059cbb0000000000000000000000001f4d1e4e624db5373cd58e149e4310b0f40b6302000000000000000000000000000000000000000000000000000000013172707c", "to": "0x383518188c0c6d7730d91b2c03a03c837814a899", "value": "0x0" }, "result": { "gasUsed": "0x8726", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 5, 0 ], "type": "call" }, { "action": { "from": "0x34d7d7aaf50ad4944b70b320acb24c95fa2def7c", "callType": "staticcall", "gas": "0x977e", "input": "0x70a0823100000000000000000000000034d7d7aaf50ad4944b70b320acb24c95fa2def7c", "to": "0x383518188c0c6d7730d91b2c03a03c837814a899", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000000000000630e2f36e118" }, "subtraces": 0, "traceAddress": [ 5, 1 ], "type": "call" }, { "action": { "from": "0x34d7d7aaf50ad4944b70b320acb24c95fa2def7c", "callType": "staticcall", "gas": "0x93c9", "input": "0x70a0823100000000000000000000000034d7d7aaf50ad4944b70b320acb24c95fa2def7c", "to": "0x6b175474e89094c44da98b954eedeac495271d0f", "value": "0x0" }, "result": { "gasUsed": "0x25a", "output": "0x000000000000000000000000000000000000000000701b1a5f657d4d6bf9cf21" }, "subtraces": 0, "traceAddress": [ 5, 2 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x0ed28658351183a1e0e8ce7797d16b8233e354740d9f93a49b331aa410a5c9d3" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xbc273efc16046e388e739046f43de281a547b04d", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x9ea6593d16fc991ab09a8b1479924819f67885a6", "value": "0xde0b6b3a7640000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xac6c523310ea310e69f74f55abc99743e53ea02b1f1ec6d63d3ad03ca8993d9c" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xc59af5b5730fd0d7541af26d5e7f9dd13a514947", "callType": "call", "gas": "0x3f4c1", "input": "0xe323f825000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a5149470000000000000000000000000000000000000000000000000000000059bc43d80000000000000000000000000e930b8610229d74da0a174626138deb732ce6e90000000000000000000000000000000000000000000000000000000000000000", "to": "0xeab695a8f5a44f583003a8bc97d677880d528248", "value": "0x0" }, "result": { "gasUsed": "0x3dcb3", "output": "0x" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0xeab695a8f5a44f583003a8bc97d677880d528248", "callType": "delegatecall", "gas": "0x3daba", "input": "0xe323f825000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a5149470000000000000000000000000000000000000000000000000000000059bc43d80000000000000000000000000e930b8610229d74da0a174626138deb732ce6e90000000000000000000000000000000000000000000000000000000000000000", "to": "0xf052a5645bab613840f269e83efb46db42c8d5ff", "value": "0x0" }, "result": { "gasUsed": "0x3d234", "output": "0x" }, "subtraces": 5, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xeab695a8f5a44f583003a8bc97d677880d528248", "callType": "staticcall", "gas": "0x3855f", "input": "0x18160ddd", "to": "0x0e930b8610229d74da0a174626138deb732ce6e9", "value": "0x0" }, "result": { "gasUsed": "0x13a8", "output": "0x000000000000000000000000000000000000000000000000000016a461cbdc25" }, "subtraces": 1, "traceAddress": [ 0, 0 ], "type": "call" }, { "action": { "from": "0x0e930b8610229d74da0a174626138deb732ce6e9", "callType": "delegatecall", "gas": "0x36d2d", "input": "0x18160ddd", "to": "0xd5d828ed981093eebf95ed6887f441070a6edfea", "value": "0x0" }, "result": { "gasUsed": "0x93e", "output": "0x000000000000000000000000000000000000000000000000000016a461cbdc25" }, "subtraces": 0, "traceAddress": [ 0, 0, 0 ], "type": "call" }, { "action": { "from": "0xeab695a8f5a44f583003a8bc97d677880d528248", "callType": "staticcall", "gas": "0x36643", "input": "0x18160ddd", "to": "0xbd62d757f195702b41bccbb699bb98b6b55b6128", "value": "0x0" }, "result": { "gasUsed": "0x13a8", "output": "0x0000000000000000000000000000000000000000000000000000000789074ca0" }, "subtraces": 1, "traceAddress": [ 0, 1 ], "type": "call" }, { "action": { "from": "0xbd62d757f195702b41bccbb699bb98b6b55b6128", "callType": "delegatecall", "gas": "0x34e8e", "input": "0x18160ddd", "to": "0xa274a5da3c2f5b6e804455c7498e1b9967969dc5", "value": "0x0" }, "result": { "gasUsed": "0x93e", "output": "0x0000000000000000000000000000000000000000000000000000000789074ca0" }, "subtraces": 0, "traceAddress": [ 0, 1, 0 ], "type": "call" }, { "action": { "from": "0xeab695a8f5a44f583003a8bc97d677880d528248", "callType": "call", "gas": "0x33553", "input": "0x4d7f3db0000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a5149470000000000000000000000000000000000000000000000000000000059bc43d80000000000000000000000000e930b8610229d74da0a174626138deb732ce6e90000000000000000000000000000000000000000000000000000000000000000", "to": "0xf3d253257167c935f8c62a02aeaebb24c9c5012a", "value": "0x0" }, "result": { "gasUsed": "0x2f00", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 2 ], "type": "call" }, { "action": { "from": "0xf3d253257167c935f8c62a02aeaebb24c9c5012a", "callType": "delegatecall", "gas": "0x31e4a", "input": "0x4d7f3db0000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a5149470000000000000000000000000000000000000000000000000000000059bc43d80000000000000000000000000e930b8610229d74da0a174626138deb732ce6e90000000000000000000000000000000000000000000000000000000000000000", "to": "0x083b33869354138482d50d2463bd09fbd99b0bd2", "value": "0x0" }, "result": { "gasUsed": "0x2481", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 2, 0 ], "type": "call" }, { "action": { "from": "0xeab695a8f5a44f583003a8bc97d677880d528248", "callType": "call", "gas": "0x30579", "input": "0x5d7b0758000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a5149470000000000000000000000000000000000000000000000000000000059bc43d8", "to": "0x0e930b8610229d74da0a174626138deb732ce6e9", "value": "0x0" }, "result": { "gasUsed": "0x28c04", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 3 ], "type": "call" }, { "action": { "from": "0x0e930b8610229d74da0a174626138deb732ce6e9", "callType": "delegatecall", "gas": "0x2f8d8", "input": "0x5d7b0758000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a5149470000000000000000000000000000000000000000000000000000000059bc43d8", "to": "0xd5d828ed981093eebf95ed6887f441070a6edfea", "value": "0x0" }, "result": { "gasUsed": "0x28b55", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 3, 0 ], "type": "call" }, { "action": { "from": "0x0e930b8610229d74da0a174626138deb732ce6e9", "callType": "call", "gas": "0x2e100", "input": "0x7cbab1c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a5149470000000000000000000000000000000000000000000000000000000059bc43d8", "to": "0xeab695a8f5a44f583003a8bc97d677880d528248", "value": "0x0" }, "result": { "gasUsed": "0x6ecf", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 3, 0, 0 ], "type": "call" }, { "action": { "from": "0xeab695a8f5a44f583003a8bc97d677880d528248", "callType": "delegatecall", "gas": "0x2d4eb", "input": "0x7cbab1c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a5149470000000000000000000000000000000000000000000000000000000059bc43d8", "to": "0xf052a5645bab613840f269e83efb46db42c8d5ff", "value": "0x0" }, "result": { "gasUsed": "0x6e1a", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 3, 0, 0, 0 ], "type": "call" }, { "action": { "from": "0xeab695a8f5a44f583003a8bc97d677880d528248", "callType": "staticcall", "gas": "0x2c26f", "input": "0x70a08231000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a514947", "to": "0x0e930b8610229d74da0a174626138deb732ce6e9", "value": "0x0" }, "result": { "gasUsed": "0xa4d", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 1, "traceAddress": [ 0, 3, 0, 0, 0, 0 ], "type": "call" }, { "action": { "from": "0x0e930b8610229d74da0a174626138deb732ce6e9", "callType": "delegatecall", "gas": "0x2b6e0", "input": "0x70a08231000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a514947", "to": "0xd5d828ed981093eebf95ed6887f441070a6edfea", "value": "0x0" }, "result": { "gasUsed": "0x9a1", "output": "0x0000000000000000000000000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, 3, 0, 0, 0, 0, 0 ], "type": "call" }, { "action": { "from": "0xeab695a8f5a44f583003a8bc97d677880d528248", "callType": "call", "gas": "0x6ce9", "input": "0x23b872dd000000000000000000000000c59af5b5730fd0d7541af26d5e7f9dd13a514947000000000000000000000000eab695a8f5a44f583003a8bc97d677880d5282480000000000000000000000000000000000000000000000000000000059bc43d8", "to": "0x04f2694c8fcee23e8fd0dfea1d4f5bb8c352111f", "value": "0x0" }, "result": { "gasUsed": "0x5a0b", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 4 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x3a32c5b248b8e828c5abbe4d4babe51fd21e875be413aefb2aa8054535dd61c5" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x2fd5be726ce4f7625ca54ee6c27cdd77e1a72c7b", "callType": "call", "gas": "0x605c", "input": "0xa22cb465000000000000000000000000b4f6267b4252a374810a19cb655c17d21a547e370000000000000000000000000000000000000000000000000000000000000001", "to": "0x5b29d4c6de73fa99ea53172689b7f62c99408e8d", "value": "0x0" }, "result": { "gasUsed": "0x605c", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x6ec0a5a0d6a6c197cc2d28dada156082f22c6b2c5bbcaa7dd6b314ae7186d65b" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000d8d74446166f08000000000000000000000000000000000000000000000000000000000008cd5c33400000000000000000000000000000000000000000000000008a982db833c2b08000000000000000000000000000000000000000000000000000000008c2a0026", "stateDiff": null, "trace": [ { "action": { "from": "0x70be2bfe60d875faad5922f2379af1a0afc8e754", "callType": "call", "gas": "0x3c09e", "input": "0x38ed173900000000000000000000000000000000000000000000000d8d74446166f08000000000000000000000000000000000000000000000000000000000008b49c9c500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000070be2bfe60d875faad5922f2379af1a0afc8e7540000000000000000000000000000000000000000000000000000000061684059000000000000000000000000000000000000000000000000000000000000000400000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc9000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7", "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "value": "0x0" }, "result": { "gasUsed": "0x330ed", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000d8d74446166f08000000000000000000000000000000000000000000000000000000000008cd5c33400000000000000000000000000000000000000000000000008a982db833c2b08000000000000000000000000000000000000000000000000000000008c2a0026" }, "subtraces": 7, "traceAddress": [], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x39e64", "input": "0x0902f1ac", "to": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000006161529d481e7e77ee70000000000000000000000000000000000000000000000000000003ffcc9d28f00000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x381a6", "input": "0x0902f1ac", "to": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000000000000d8afd0951bea000000000000000000000000000000000000000000000d5e21bd1629dbebe98300000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x364e7", "input": "0x0902f1ac", "to": "0x06da0fd433c1a5d7a4faa01111c044910a184553", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000006e1b063a8a4c08b9c9d00000000000000000000000000000000000000000000000000006fb092b685c900000000000000000000000000000000000000000000000000000000616839a3" }, "subtraces": 0, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x34639", "input": "0x23b872dd00000000000000000000000070be2bfe60d875faad5922f2379af1a0afc8e754000000000000000000000000fca032a9a68c5cbfaf8377775173eca59b83707300000000000000000000000000000000000000000000000d8d74446166f08000", "to": "0x97872eafd79940c7b24f7bcc1eadb1457347adc9", "value": "0x0" }, "result": { "gasUsed": "0x534b", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x2e802", "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008cd5c334000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "value": "0x0" }, "result": { "gasUsed": "0xce3e", "output": "0x" }, "subtraces": 3, "traceAddress": [ 4 ], "type": "call" }, { "action": { "from": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "callType": "call", "gas": "0x2a86b", "input": "0xa9059cbb000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0000000000000000000000000000000000000000000000000000000008cd5c334", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x6925", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [ 4, 0 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x281ee", "input": "0xa9059cbb000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0000000000000000000000000000000000000000000000000000000008cd5c334", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x4cac", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 4, 0, 0 ], "type": "call" }, { "action": { "from": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "callType": "staticcall", "gas": "0x23e7f", "input": "0x70a08231000000000000000000000000fca032a9a68c5cbfaf8377775173eca59b837073", "to": "0x97872eafd79940c7b24f7bcc1eadb1457347adc9", "value": "0x0" }, "result": { "gasUsed": "0x3a2", "output": "0x000000000000000000000000000000000000000000000623a29e18e34ed7fee7" }, "subtraces": 0, "traceAddress": [ 4, 1 ], "type": "call" }, { "action": { "from": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "callType": "staticcall", "gas": "0x23944", "input": "0x70a08231000000000000000000000000fca032a9a68c5cbfaf8377775173eca59b837073", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x523", "output": "0x0000000000000000000000000000000000000000000000000000003f6ff40f5b" }, "subtraces": 1, "traceAddress": [ 4, 2 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x22d85", "input": "0x70a08231000000000000000000000000fca032a9a68c5cbfaf8377775173eca59b837073", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x211", "output": "0x0000000000000000000000000000000000000000000000000000003f6ff40f5b" }, "subtraces": 0, "traceAddress": [ 4, 2, 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x21240", "input": "0x022c0d9f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008a982db833c2b0800000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "value": "0x0" }, "result": { "gasUsed": "0x95cb", "output": "0x" }, "subtraces": 3, "traceAddress": [ 5 ], "type": "call" }, { "action": { "from": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "callType": "call", "gas": "0x1d600", "input": "0xa9059cbb00000000000000000000000006da0fd433c1a5d7a4faa01111c044910a18455300000000000000000000000000000000000000000000000008a982db833c2b08", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x323e", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 5, 0 ], "type": "call" }, { "action": { "from": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "callType": "staticcall", "gas": "0x1a21f", "input": "0x70a08231000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x523", "output": "0x0000000000000000000000000000000000000000000000000000d8b05d6adf1e" }, "subtraces": 1, "traceAddress": [ 5, 1 ], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x198bd", "input": "0x70a08231000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x211", "output": "0x0000000000000000000000000000000000000000000000000000d8b05d6adf1e" }, "subtraces": 0, "traceAddress": [ 5, 1, 0 ], "type": "call" }, { "action": { "from": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "callType": "staticcall", "gas": "0x19b6a", "input": "0x70a08231000000000000000000000000397ff1542f962076d0bfe58ea045ffa2d347aca0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x000000000000000000000000000000000000000000000d5e1913934e58afbe7b" }, "subtraces": 0, "traceAddress": [ 5, 2 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "call", "gas": "0x176f9", "input": "0x022c0d9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008c2a002600000000000000000000000070be2bfe60d875faad5922f2379af1a0afc8e75400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x06da0fd433c1a5d7a4faa01111c044910a184553", "value": "0x0" }, "result": { "gasUsed": "0xeae7", "output": "0x" }, "subtraces": 3, "traceAddress": [ 6 ], "type": "call" }, { "action": { "from": "0x06da0fd433c1a5d7a4faa01111c044910a184553", "callType": "call", "gas": "0x13d26", "input": "0xa9059cbb00000000000000000000000070be2bfe60d875faad5922f2379af1a0afc8e754000000000000000000000000000000000000000000000000000000008c2a0026", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x5fb5", "output": "0x" }, "subtraces": 0, "traceAddress": [ 6, 0 ], "type": "call" }, { "action": { "from": "0x06da0fd433c1a5d7a4faa01111c044910a184553", "callType": "staticcall", "gas": "0xdcfc", "input": "0x70a0823100000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000006e1b90d2b8043c7c7a5" }, "subtraces": 0, "traceAddress": [ 6, 1 ], "type": "call" }, { "action": { "from": "0x06da0fd433c1a5d7a4faa01111c044910a184553", "callType": "staticcall", "gas": "0xd947", "input": "0x70a0823100000000000000000000000006da0fd433c1a5d7a4faa01111c044910a184553", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0x407", "output": "0x00000000000000000000000000000000000000000000000000006fb0068c85a3" }, "subtraces": 0, "traceAddress": [ 6, 2 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x6009e65c95c3a8e7ca9a6d343c963ec6849538ea83912b539c79167059b5f8e2" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x7d00ee4cfb893c41043d9945603d00523efe0b2a", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x2a71996eb62e15f76c78d90b6ce901527e47ab0d", "value": "0x494654067e10000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xff1a2fba402bf937bec8f3845c70a99dd64b7c6f68eda6a66743e9f0ae7e4f84" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x7cf703ac5f9bc457ae57268eaeacb8446b5ae439", "callType": "call", "gas": "0x6258", "input": "0xa22cb46500000000000000000000000036f8575d53cadb0c622e6483f631571f02628b800000000000000000000000000000000000000000000000000000000000000001", "to": "0xaa20f900e24ca7ed897c44d92012158f436ef791", "value": "0x0" }, "result": { "gasUsed": "0x6258", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xdd537336526a83bb87a636b9cc5d5ec3ab8d928bb37e6502d21b96fd85c085c5" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0xcb337b4586976fcde54fefb5db82c8c521959b2d", "callType": "call", "gas": "0x2d761", "input": "0xa694fc3a000000000000000000000000000000000000000000000000000000038efc9822", "to": "0xc8c436271f9a6f10a5b80c8b8ed7d0e8f37a612d", "value": "0x0" }, "result": { "gasUsed": "0x2d626", "output": "0x" }, "subtraces": 4, "traceAddress": [], "type": "call" }, { "action": { "from": "0xc8c436271f9a6f10a5b80c8b8ed7d0e8f37a612d", "callType": "call", "gas": "0x2c00d", "input": "0x23b872dd000000000000000000000000cb337b4586976fcde54fefb5db82c8c521959b2d000000000000000000000000c8c436271f9a6f10a5b80c8b8ed7d0e8f37a612d000000000000000000000000000000000000000000000000000000038efc9822", "to": "0x383518188c0c6d7730d91b2c03a03c837814a899", "value": "0x0" }, "result": { "gasUsed": "0x6162", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xc8c436271f9a6f10a5b80c8b8ed7d0e8f37a612d", "callType": "call", "gas": "0x25e63", "input": "0x095ea7b3000000000000000000000000fd31c7d00ca47653c6ce64af53c1571f9c36566a000000000000000000000000000000000000000000000000000000038efc9822", "to": "0x383518188c0c6d7730d91b2c03a03c837814a899", "value": "0x0" }, "result": { "gasUsed": "0x5fef", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0xc8c436271f9a6f10a5b80c8b8ed7d0e8f37a612d", "callType": "call", "gas": "0x1f48c", "input": "0x7acb7757000000000000000000000000000000000000000000000000000000038efc9822000000000000000000000000cb337b4586976fcde54fefb5db82c8c521959b2d", "to": "0xfd31c7d00ca47653c6ce64af53c1571f9c36566a", "value": "0x0" }, "result": { "gasUsed": "0x1bd01", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 3, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0xfd31c7d00ca47653c6ce64af53c1571f9c36566a", "callType": "call", "gas": "0x1de63", "input": "0x23b872dd000000000000000000000000c8c436271f9a6f10a5b80c8b8ed7d0e8f37a612d000000000000000000000000fd31c7d00ca47653c6ce64af53c1571f9c36566a000000000000000000000000000000000000000000000000000000038efc9822", "to": "0x383518188c0c6d7730d91b2c03a03c837814a899", "value": "0x0" }, "result": { "gasUsed": "0x3412", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 2, 0 ], "type": "call" }, { "action": { "from": "0xfd31c7d00ca47653c6ce64af53c1571f9c36566a", "callType": "staticcall", "gas": "0x17c32", "input": "0x1bd39674000000000000000000000000000000000000000000000000000000038efc9822", "to": "0x04f2694c8fcee23e8fd0dfea1d4f5bb8c352111f", "value": "0x0" }, "result": { "gasUsed": "0xa59", "output": "0x00000a1579e379d0078e7c38a12cff68dc85cfd6ce93bffd96e9ed54ecb1df80" }, "subtraces": 0, "traceAddress": [ 2, 1 ], "type": "call" }, { "action": { "from": "0xfd31c7d00ca47653c6ce64af53c1571f9c36566a", "callType": "call", "gas": "0x6b82", "input": "0xa9059cbb0000000000000000000000002882a5cd82ac49e06620382660f5ed932607c5f1000000000000000000000000000000000000000000000000000000038efc9822", "to": "0x04f2694c8fcee23e8fd0dfea1d4f5bb8c352111f", "value": "0x0" }, "result": { "gasUsed": "0x33d4", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 2, 2 ], "type": "call" }, { "action": { "from": "0xc8c436271f9a6f10a5b80c8b8ed7d0e8f37a612d", "callType": "call", "gas": "0x3cc7", "input": "0x1e83409a000000000000000000000000cb337b4586976fcde54fefb5db82c8c521959b2d", "to": "0xfd31c7d00ca47653c6ce64af53c1571f9c36566a", "value": "0x0" }, "result": { "gasUsed": "0x3c58", "output": "0x" }, "subtraces": 2, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0xfd31c7d00ca47653c6ce64af53c1571f9c36566a", "callType": "staticcall", "gas": "0x324b", "input": "0x7965d56d00000a1579e379d0078e7c38a12cff68dc85cfd6ce93bffd96e9ed54ecb1df80", "to": "0x04f2694c8fcee23e8fd0dfea1d4f5bb8c352111f", "value": "0x0" }, "result": { "gasUsed": "0x2c1", "output": "0x000000000000000000000000000000000000000000000000000000038efc9822" }, "subtraces": 0, "traceAddress": [ 3, 0 ], "type": "call" }, { "action": { "from": "0xfd31c7d00ca47653c6ce64af53c1571f9c36566a", "callType": "call", "gas": "0x243c", "input": "0xc3a2a665000000000000000000000000cb337b4586976fcde54fefb5db82c8c521959b2d000000000000000000000000000000000000000000000000000000038efc9822", "to": "0x2882a5cd82ac49e06620382660f5ed932607c5f1", "value": "0x0" }, "result": { "gasUsed": "0x2433", "output": "0x" }, "subtraces": 1, "traceAddress": [ 3, 1 ], "type": "call" }, { "action": { "from": "0x2882a5cd82ac49e06620382660f5ed932607c5f1", "callType": "call", "gas": "0x2114", "input": "0xa9059cbb000000000000000000000000cb337b4586976fcde54fefb5db82c8c521959b2d000000000000000000000000000000000000000000000000000000038efc9822", "to": "0x04f2694c8fcee23e8fd0dfea1d4f5bb8c352111f", "value": "0x0" }, "result": { "gasUsed": "0x2114", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3, 1, 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x74c8bcfe8cb686279c39b130542d49a329086dbfcef3e0bd2e1c777bd947733f" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x77e73aa60839b01fda633d3a090df4e143a56db4", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x9d56205cb2d5ce1d24a85036b1d310bb79b84ba7", "value": "0x38daeffbb1c8ca" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xe830d49e326dc746a8a9f81cb0b4ec26a44503b262610ff0d34824435123cbeb" }, { "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54000000000000000000000000000000000000000000", "stateDiff": null, "trace": [ { "action": { "from": "0x4806e82cd6b5a295cb349929c41d80379b11fe49", "callType": "call", "gas": "0x3448e", "input": "0x18cbafe500000000000000000000000000000000000000000000000d8d726b7177a80000000000000000000000000000000000000000000000000000096d2534e62c829000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000004806e82cd6b5a295cb349929c41d80379b11fe490000000000000000000000000000000000000000000000000000000061684059000000000000000000000000000000000000000000000000000000000000000300000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc9000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "value": "0x0" }, "error": "Reverted", "result": { "gasUsed": "0x3fd0", "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54000000000000000000000000000000000000000000" }, "subtraces": 2, "traceAddress": [], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x3240e", "input": "0x0902f1ac", "to": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x000000000000000000000000000000000000000000000623a29e18e34ed7fee70000000000000000000000000000000000000000000000000000003f6ff40f5b00000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x3074f", "input": "0x0902f1ac", "to": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000000000000d8b05d6adf1e000000000000000000000000000000000000000000000d5e1913934e58afbe7b00000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x8d2eebaed66d59718c416bf6d52104989e2e695dd68dbb4b2c217b64dd60ee65" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000b6f336b57a6f0f00000000000000000000000000000000000000000000000000ed0cec54167fe5", "stateDiff": null, "trace": [ { "action": { "from": "0xe89e695c0f4ed2434e0a3c9314cfe07a3ff22ba4", "callType": "call", "gas": "0x1be0a", "input": "0x7ff36ab500000000000000000000000000000000000000000000000000ebfb0361ee21320000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e89e695c0f4ed2434e0a3c9314cfe07a3ff22ba40000000000000000000000000000000000000000000000000000000061683e010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000027c70cd1946795b66be9d954418546998b546634", "to": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "value": "0xb6f336b57a6f0f" }, "result": { "gasUsed": "0x1ac63", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000b6f336b57a6f0f00000000000000000000000000000000000000000000000000ed0cec54167fe5" }, "subtraces": 4, "traceAddress": [], "type": "call" }, { "action": { "from": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "callType": "staticcall", "gas": "0x1a3e8", "input": "0x0902f1ac", "to": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "value": "0x0" }, "result": { "gasUsed": "0x9c8", "output": "0x0000000000000000000000000000000000000000000000debda8b09aecca1c740000000000000000000000000000000000000000000000ab6341491d7e0a58b900000000000000000000000000000000000000000000000000000000616839a3" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "callType": "call", "gas": "0x17128", "input": "0xd0e30db0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0xb6f336b57a6f0f" }, "result": { "gasUsed": "0x5da6", "output": "0x" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "callType": "call", "gas": "0x10fd9", "input": "0xa9059cbb00000000000000000000000057654ae132413e81459ad2ae70c2570a9b89fb5300000000000000000000000000000000000000000000000000b6f336b57a6f0f", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x1f7e", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "callType": "call", "gas": "0xe83a", "input": "0x022c0d9f00000000000000000000000000000000000000000000000000ed0cec54167fe50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e89e695c0f4ed2434e0a3c9314cfe07a3ff22ba400000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "value": "0x0" }, "result": { "gasUsed": "0xd87a", "output": "0x" }, "subtraces": 3, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "callType": "call", "gas": "0xb0eb", "input": "0xa9059cbb000000000000000000000000e89e695c0f4ed2434e0a3c9314cfe07a3ff22ba400000000000000000000000000000000000000000000000000ed0cec54167fe5", "to": "0x27c70cd1946795b66be9d954418546998b546634", "value": "0x0" }, "result": { "gasUsed": "0x45a1", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3, 0 ], "type": "call" }, { "action": { "from": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "callType": "staticcall", "gas": "0x69e1", "input": "0x70a0823100000000000000000000000057654ae132413e81459ad2ae70c2570a9b89fb53", "to": "0x27c70cd1946795b66be9d954418546998b546634", "value": "0x0" }, "result": { "gasUsed": "0x3be", "output": "0x0000000000000000000000000000000000000000000000debcbba3ae98b39c8f" }, "subtraces": 0, "traceAddress": [ 3, 1 ], "type": "call" }, { "action": { "from": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "callType": "staticcall", "gas": "0x648b", "input": "0x70a0823100000000000000000000000057654ae132413e81459ad2ae70c2570a9b89fb53", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000000ab63f83c543384c7c8" }, "subtraces": 0, "traceAddress": [ 3, 2 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x175282f92986f57ff44388f4a90c8a7ab9b30aaf0120138d57a156658ca93969" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x80da6ea6d3357632006659f50e54c54270c22254", "callType": "call", "gas": "0x61d2", "input": "0xa22cb4650000000000000000000000003988cd7b6e2bac6e386170be6de4c4028fc872cf0000000000000000000000000000000000000000000000000000000000000001", "to": "0xaadba140ae5e4c8a9ef0cc86ea3124b446e3e46a", "value": "0x0" }, "result": { "gasUsed": "0x61d2", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x1e3e551c184670be674478fb2f7f5987a466c6bbd6bad5c7703b1f11036232fc" }, { "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000016f497d8aba100000000000000000000000000000000000000000000000000001dbdff314279e6b", "stateDiff": null, "trace": [ { "action": { "from": "0xe483eac1811ccf75703e7c9d3ec6440386c0cdbe", "callType": "call", "gas": "0x208af", "input": "0x7ff36ab500000000000000000000000000000000000000000000000001d9131b2e446c780000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e483eac1811ccf75703e7c9d3ec6440386c0cdbe0000000000000000000000000000000000000000000000000000000061683de10000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000027c70cd1946795b66be9d954418546998b546634", "to": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "value": "0x16f497d8aba1000" }, "result": { "gasUsed": "0x1c68b", "output": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000016f497d8aba100000000000000000000000000000000000000000000000000001dbdff314279e6b" }, "subtraces": 4, "traceAddress": [], "type": "call" }, { "action": { "from": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "callType": "staticcall", "gas": "0x1ed63", "input": "0x0902f1ac", "to": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "value": "0x0" }, "result": { "gasUsed": "0x9c8", "output": "0x0000000000000000000000000000000000000000000000debcbba3ae98b39c8f0000000000000000000000000000000000000000000000ab63f83c543384c7c800000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "callType": "call", "gas": "0x1baa2", "input": "0xd0e30db0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x16f497d8aba1000" }, "result": { "gasUsed": "0x5da6", "output": "0x" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "callType": "call", "gas": "0x15953", "input": "0xa9059cbb00000000000000000000000057654ae132413e81459ad2ae70c2570a9b89fb53000000000000000000000000000000000000000000000000016f497d8aba1000", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x1f7e", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0x03f7724180aa6b939894b5ca4314783b0b36b329", "callType": "call", "gas": "0x131b4", "input": "0x022c0d9f00000000000000000000000000000000000000000000000001dbdff314279e6b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e483eac1811ccf75703e7c9d3ec6440386c0cdbe00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000", "to": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "value": "0x0" }, "result": { "gasUsed": "0xf2a2", "output": "0x" }, "subtraces": 3, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "callType": "call", "gas": "0xf93f", "input": "0xa9059cbb000000000000000000000000e483eac1811ccf75703e7c9d3ec6440386c0cdbe00000000000000000000000000000000000000000000000001dbdff314279e6b", "to": "0x27c70cd1946795b66be9d954418546998b546634", "value": "0x0" }, "result": { "gasUsed": "0x886d", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 3, 0 ], "type": "call" }, { "action": { "from": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "callType": "staticcall", "gas": "0x7075", "input": "0x70a0823100000000000000000000000057654ae132413e81459ad2ae70c2570a9b89fb53", "to": "0x27c70cd1946795b66be9d954418546998b546634", "value": "0x0" }, "result": { "gasUsed": "0x3be", "output": "0x0000000000000000000000000000000000000000000000debadfc3bb848bfe24" }, "subtraces": 0, "traceAddress": [ 3, 1 ], "type": "call" }, { "action": { "from": "0x57654ae132413e81459ad2ae70c2570a9b89fb53", "callType": "staticcall", "gas": "0x6b1e", "input": "0x70a0823100000000000000000000000057654ae132413e81459ad2ae70c2570a9b89fb53", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x216", "output": "0x0000000000000000000000000000000000000000000000ab656785d1be3ed7c8" }, "subtraces": 0, "traceAddress": [ 3, 2 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xda6a0fda8dffbded2e3f6d6e937c5881b38b4817e87af896b7b542bb69865ce2" }, { "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54000000000000000000000000000000000000000000", "stateDiff": null, "trace": [ { "action": { "from": "0x9dae21637a9f91330bcd80f898f52b1bfa3e1cd6", "callType": "call", "gas": "0x3448e", "input": "0x18cbafe500000000000000000000000000000000000000000000000821ab0d4414980000000000000000000000000000000000000000000000000000052f9fb161e0959e00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009dae21637a9f91330bcd80f898f52b1bfa3e1cd60000000000000000000000000000000000000000000000000000000061684059000000000000000000000000000000000000000000000000000000000000000300000000000000000000000097872eafd79940c7b24f7bcc1eadb1457347adc9000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "to": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "value": "0x0" }, "error": "Reverted", "result": { "gasUsed": "0x3fd0", "output": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b556e69737761705632526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54000000000000000000000000000000000000000000" }, "subtraces": 2, "traceAddress": [], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x3240e", "input": "0x0902f1ac", "to": "0xfca032a9a68c5cbfaf8377775173eca59b837073", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x000000000000000000000000000000000000000000000623a29e18e34ed7fee70000000000000000000000000000000000000000000000000000003f6ff40f5b00000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xd9e1ce17f2641f24ae83637ab66a2cca9c378b9f", "callType": "staticcall", "gas": "0x3074f", "input": "0x0902f1ac", "to": "0x397ff1542f962076d0bfe58ea045ffa2d347aca0", "value": "0x0" }, "result": { "gasUsed": "0x9d5", "output": "0x0000000000000000000000000000000000000000000000000000d8b05d6adf1e000000000000000000000000000000000000000000000d5e1913934e58afbe7b00000000000000000000000000000000000000000000000000000000616839bb" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xb6daece64b63de5d2e3f343964ce75258e43e1cce9a1585d1f3b70d4ce53972f" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x9dfe8fcbd2c5e1b34adad3c74db5a6456548cc52", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x5d77836e71fc66cbf955b27ce0f075123f68fe80", "value": "0x3bbebf7711daf8e" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xd9bc775dddd4b44ec2fc0ab04577a95e8d9c26ae510f532aa75d6caa604fcd52" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x5ebd59c9d7c1217298d8f2bd5a62331a911b90df", "callType": "call", "gas": "0x3e51f", "input": "0xab834bab0000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b0000000000000000000000005ebd59c9d7c1217298d8f2bd5a62331a911b90df0000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a4680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000495f947276749ce646f68ac8c248420045cb7b5e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b0000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a46800000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b3256965e7c3cf26e11fcaf296dfc8807c01073000000000000000000000000495f947276749ce646f68ac8c248420045cb7b5e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004e20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075f3395e8b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006168391100000000000000000000000000000000000000000000000000000000000000006edc1f9e0c389442ce1a7605839a4983195b6a571c3c932133006694e78a217500000000000000000000000000000000000000000000000000000000000004e20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075f3395e8b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000615f0d9200000000000000000000000000000000000000000000000000000000624efeefc1adfadfcc3c38ebb372d003768a33971e635c27e962d6ddf9e5fa84780a490e0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006a000000000000000000000000000000000000000000000000000000000000007a000000000000000000000000000000000000000000000000000000000000008a000000000000000000000000000000000000000000000000000000000000009a00000000000000000000000000000000000000000000000000000000000000aa00000000000000000000000000000000000000000000000000000000000000ac0000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001b20db8375b50db2615da02c1ac615d26e68b547c13359541bfe8668cce1e50d3b12e21ce2a4ea30b18ff15b3c20ba9381da8d8a19b95859dab789a327b247a83320db8375b50db2615da02c1ac615d26e68b547c13359541bfe8668cce1e50d3b12e21ce2a4ea30b18ff15b3c20ba9381da8d8a19b95859dab789a327b247a833000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4f242432a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000005ebd59c9d7c1217298d8f2bd5a62331a911b90df7ade8a0795c7792711d7db4f16fd1501e1a8a468000000000023e30000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4f242432a0000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a46800000000000000000000000000000000000000000000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a468000000000023e30000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c400000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "value": "0x75f3395e8b0000" }, "result": { "gasUsed": "0x2d397", "output": "0x" }, "subtraces": 6, "traceAddress": [], "type": "call" }, { "action": { "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "callType": "call", "gas": "0x31a10", "input": "0xc45527910000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a468", "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", "value": "0x0" }, "result": { "gasUsed": "0xade", "output": "0x00000000000000000000000089e49ee2665fe18e0447b201d90288685700920b" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "callType": "call", "gas": "0x30c3c", "input": "0x97204d8e", "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", "value": "0x0" }, "result": { "gasUsed": "0xa35", "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" }, "subtraces": 0, "traceAddress": [ 1 ], "type": "call" }, { "action": { "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "callType": "call", "gas": "0x2f6c3", "input": "0x5c60da1b", "to": "0x89e49ee2665fe18e0447b201d90288685700920b", "value": "0x0" }, "result": { "gasUsed": "0x9dd", "output": "0x000000000000000000000000f9e266af4bca5890e2781812cc6a6e89495a79f2" }, "subtraces": 0, "traceAddress": [ 2 ], "type": "call" }, { "action": { "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x5b3256965e7c3cf26e11fcaf296dfc8807c01073", "value": "0xebe672bd16000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 3 ], "type": "call" }, { "action": { "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "callType": "call", "gas": "0x8fc", "input": "0x", "to": "0x7ade8a0795c7792711d7db4f16fd1501e1a8a468", "value": "0x6734d232b9a000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [ 4 ], "type": "call" }, { "action": { "from": "0x7be8076f4ea4a4ad08075c2508e481d6c946d12b", "callType": "call", "gas": "0x246cd", "input": "0x1b0f7ba9000000000000000000000000495f947276749ce646f68ac8c248420045cb7b5e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c4f242432a0000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a4680000000000000000000000005ebd59c9d7c1217298d8f2bd5a62331a911b90df7ade8a0795c7792711d7db4f16fd1501e1a8a468000000000023e30000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x89e49ee2665fe18e0447b201d90288685700920b", "value": "0x0" }, "result": { "gasUsed": "0x13041", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [ 5 ], "type": "call" }, { "action": { "from": "0x89e49ee2665fe18e0447b201d90288685700920b", "callType": "delegatecall", "gas": "0x23144", "input": "0x1b0f7ba9000000000000000000000000495f947276749ce646f68ac8c248420045cb7b5e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c4f242432a0000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a4680000000000000000000000005ebd59c9d7c1217298d8f2bd5a62331a911b90df7ade8a0795c7792711d7db4f16fd1501e1a8a468000000000023e30000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0xf9e266af4bca5890e2781812cc6a6e89495a79f2", "value": "0x0" }, "result": { "gasUsed": "0x12373", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 2, "traceAddress": [ 5, 0 ], "type": "call" }, { "action": { "from": "0x89e49ee2665fe18e0447b201d90288685700920b", "callType": "call", "gas": "0x213be", "input": "0x69dc9ff30000000000000000000000007be8076f4ea4a4ad08075c2508e481d6c946d12b", "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", "value": "0x0" }, "result": { "gasUsed": "0x9f9", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 5, 0, 0 ], "type": "call" }, { "action": { "from": "0x89e49ee2665fe18e0447b201d90288685700920b", "callType": "call", "gas": "0x205c5", "input": "0xf242432a0000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a4680000000000000000000000005ebd59c9d7c1217298d8f2bd5a62331a911b90df7ade8a0795c7792711d7db4f16fd1501e1a8a468000000000023e30000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "to": "0x495f947276749ce646f68ac8c248420045cb7b5e", "value": "0x0" }, "result": { "gasUsed": "0xffce", "output": "0x" }, "subtraces": 1, "traceAddress": [ 5, 0, 1 ], "type": "call" }, { "action": { "from": "0x495f947276749ce646f68ac8c248420045cb7b5e", "callType": "staticcall", "gas": "0x1c157", "input": "0xc45527910000000000000000000000007ade8a0795c7792711d7db4f16fd1501e1a8a468", "to": "0xa5409ec958c83c3f309868babaca7c86dcb077c1", "value": "0x0" }, "result": { "gasUsed": "0x30e", "output": "0x00000000000000000000000089e49ee2665fe18e0447b201d90288685700920b" }, "subtraces": 0, "traceAddress": [ 5, 0, 1, 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0x4b404bbf2e3e7be48ba152c850b7bd39f517adee7d90f30e48ae6d263cdf30ac" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x48fce6e074892eaf601399d146725dfa895d96eb", "callType": "call", "gas": "0x1ca65", "input": "0x94b918de000000000000000000000000000000000000000000000000000000008d0d3389", "to": "0xbabee6d5f6edd301b5fae591a0d61ab702b359d0", "value": "0x0" }, "result": { "gasUsed": "0x1c3d7", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0xbabee6d5f6edd301b5fae591a0d61ab702b359d0", "callType": "delegatecall", "gas": "0x1a734", "input": "0x94b918de000000000000000000000000000000000000000000000000000000008d0d3389", "to": "0x2f57883d43db6118d9e5d65059baf7fe13a9c349", "value": "0x0" }, "result": { "gasUsed": "0x1a734", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 2, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0xbabee6d5f6edd301b5fae591a0d61ab702b359d0", "callType": "call", "gas": "0x14aee", "input": "0x9dc29fac00000000000000000000000048fce6e074892eaf601399d146725dfa895d96eb000000000000000000000000000000000000000000000000000000008d0d3389", "to": "0xf64f8958d2d44eabae7517d013284c385a4cc2a3", "value": "0x0" }, "result": { "gasUsed": "0x5ffd", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 0 ], "type": "call" }, { "action": { "from": "0xf64f8958d2d44eabae7517d013284c385a4cc2a3", "callType": "delegatecall", "gas": "0x129b8", "input": "0x9dc29fac00000000000000000000000048fce6e074892eaf601399d146725dfa895d96eb000000000000000000000000000000000000000000000000000000008d0d3389", "to": "0xb85629f107ad634a95b1bfc853071d72e89a1e03", "value": "0x0" }, "result": { "gasUsed": "0x435a", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 0, 0 ], "type": "call" }, { "action": { "from": "0xbabee6d5f6edd301b5fae591a0d61ab702b359d0", "callType": "call", "gas": "0x7f00", "input": "0x0bed750e00000000000000000000000048fce6e074892eaf601399d146725dfa895d96eb000000000000000000000000000000000000000000000083997d6918a95345c4", "to": "0x785c34312dfa6b74f6f1829f79ade39042222168", "value": "0x0" }, "result": { "gasUsed": "0x6906", "output": "0x" }, "subtraces": 1, "traceAddress": [ 0, 1 ], "type": "call" }, { "action": { "from": "0x785c34312dfa6b74f6f1829f79ade39042222168", "callType": "delegatecall", "gas": "0x60f9", "input": "0x0bed750e00000000000000000000000048fce6e074892eaf601399d146725dfa895d96eb000000000000000000000000000000000000000000000083997d6918a95345c4", "to": "0x46242e446aa798a62fb1e45bec1bf2c5e62ca0ea", "value": "0x0" }, "result": { "gasUsed": "0x4c63", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 1, 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xb4c24727bc3268c2bd83c128719104e1f67d39f2fe51acec34d60ff64be02bde" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x5b323f429d519f6dddf2c50164f912e9994be383", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x4e19cd116fdefec95a6505e0466631e468bee6d1", "value": "0x134f142e8a2c9000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x448f324e067c9c7289f28ec4e11d72caf7acd8abc26998b5593776c37127d106" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xeb9dc47e1822302803cc7a583a6fb4a162f31ac1", "callType": "call", "gas": "0x879b", "input": "0x095ea7b3000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "to": "0x97872eafd79940c7b24f7bcc1eadb1457347adc9", "value": "0x0" }, "result": { "gasUsed": "0x62b8", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x34e7a279a9d993fbe3e90a09e2e6514363d244fbf1195da2af35799bf6dfecc3" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x0025f132b765f404983dd8ea4d4b306f8c4e457e", "callType": "call", "gas": "0x879b", "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "to": "0x41a7982d3e857addd9b6cacb6f8a7515764ec23a", "value": "0x0" }, "result": { "gasUsed": "0x62b8", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x4c275d2bfbf275ef24ddbb331ddca0e6aca0b47d81ba313c169c397d4c7c3be4" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xd23d446294b03e05e1788afeb2ad1b287950712a", "callType": "call", "gas": "0x1c98", "input": "0x095ea7b30000000000000000000000003ee18b2214aff97000d974cf647e7c347e8fa58500000000000000000000000000000000000000000000000002c68af0bb140000", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x0" }, "result": { "gasUsed": "0x1c98", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x1dce09cefe13e948be10c5ff8ff6438038719cf547aafada558f1f0c0c89618a" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x47816d34a6092d6586d6aedea548ed9d9a87207f", "callType": "call", "gas": "0x97a0", "input": "0x095ea7b3000000000000000000000000e5c783ee536cf5e63e792988335c4255169be4e1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "to": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "value": "0x0" }, "result": { "gasUsed": "0x95df", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "callType": "delegatecall", "gas": "0x7966", "input": "0x095ea7b3000000000000000000000000e5c783ee536cf5e63e792988335c4255169be4e1ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "to": "0xa2327a938febf5fec13bacfb16ae10ecbc4cbdcf", "value": "0x0" }, "result": { "gasUsed": "0x7966", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xa56c4d9ad6026036600c2e879df4677952d6b87ad5a56cf5c1196544477e30f9" }, { "output": "0x00000000000000000000000000000000000000000000000000000000001af562", "stateDiff": null, "trace": [ { "action": { "from": "0xcafe551eea003b9e609e26ea71106599648807e0", "callType": "call", "gas": "0x2f797", "input": "0xeee3f07a00000000000000000000000093f0286336ccdfce48739d0cdea0f78a20e5cbed", "to": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", "value": "0x30d98d59a960000" }, "result": { "gasUsed": "0x22bf2", "output": "0x00000000000000000000000000000000000000000000000000000000001af562" }, "subtraces": 1, "traceAddress": [], "type": "call" }, { "action": { "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", "callType": "delegatecall", "gas": "0x2d85e", "input": "0xeee3f07a00000000000000000000000093f0286336ccdfce48739d0cdea0f78a20e5cbed", "to": "0x8407dc57739bcda7aa53ca6f12f82f9d51c2f21e", "value": "0x30d98d59a960000" }, "result": { "gasUsed": "0x2181b", "output": "0x00000000000000000000000000000000000000000000000000000000001af562" }, "subtraces": 5, "traceAddress": [ 0 ], "type": "call" }, { "action": { "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", "callType": "staticcall", "gas": "0x2b85a", "input": "0x37d277d4", "to": "0x33e71e649abdc09f650ad44139674828a2075ad2", "value": "0x0" }, "result": { "gasUsed": "0x29c", "output": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a574554485f544f4b454e00000000000000000000000000000000000000000000" }, "subtraces": 0, "traceAddress": [ 0, 0 ], "type": "call" }, { "action": { "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", "callType": "staticcall", "gas": "0x2b0d3", "input": "0x358177730000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a574554485f544f4b454e00000000000000000000000000000000000000000000", "to": "0x33e71e649abdc09f650ad44139674828a2075ad2", "value": "0x0" }, "result": { "gasUsed": "0xc85", "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2" }, "subtraces": 0, "traceAddress": [ 0, 1 ], "type": "call" }, { "action": { "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", "callType": "call", "gas": "0x27fa6", "input": "0xd0e30db0", "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "value": "0x30d98d59a960000" }, "result": { "gasUsed": "0x1ada", "output": "0x" }, "subtraces": 0, "traceAddress": [ 0, 2 ], "type": "call" }, { "action": { "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", "callType": "staticcall", "gas": "0x262dd", "input": "0x3579e67a000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001", "to": "0x33e71e649abdc09f650ad44139674828a2075ad2", "value": "0x0" }, "result": { "gasUsed": "0x145f", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [ 0, 3 ], "type": "call" }, { "action": { "from": "0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2", "callType": "staticcall", "gas": "0x24ca2", "input": "0xeb96fbcd000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000000000000000000000001", "to": "0x33e71e649abdc09f650ad44139674828a2075ad2", "value": "0x0" }, "result": { "gasUsed": "0x4b8", "output": "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000c99a6a985ed2cac1ef41640596c5a5f9f4e19ef50000000000000000000000000000000000000000000000000000000000000014" }, "subtraces": 0, "traceAddress": [ 0, 4 ], "type": "call" } ], "vmTrace": null, "transactionHash": "0xbdad749e23c7b314d7e10680b69b1440c7ca154412c4e906f45a04568c5ee789" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x5568863f74f6fcfc2478b303527dc2c801d616cb", "callType": "call", "gas": "0x0", "input": "0x", "to": "0x8c35fdb1778dbf91d00f4ec6558646a930d0480e", "value": "0x470de4df820000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x1cb07b6344382e643c2a5d2a2536af58a611d8fe32417b0067670f1258d6b900" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0xfef98848fb586cb1426e8f5c84f002ea75155f7c", "callType": "call", "gas": "0x84a8", "input": "0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "to": "0x3ec8798b81485a254928b70cda1cf0a2bb0b74d7", "value": "0x0" }, "result": { "gasUsed": "0x6043", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xb7cf643a8229ba2114d77884e065678c05302255b262cc6c32e92b8375976736" }, { "output": "0x0000000000000000000000000000000000000000000000000000000000000001", "stateDiff": null, "trace": [ { "action": { "from": "0x03770d676850a47fe4e11eeb733b782efa081a99", "callType": "call", "gas": "0x83e1", "input": "0x095ea7b3000000000000000000000000e592427a0aece92de3edee1f18e0157c05861564ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", "to": "0x58b6a8a3302369daec383334672404ee733ab239", "value": "0x0" }, "result": { "gasUsed": "0x5f9d", "output": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x8b187d0b7bd55eaba0a57cb702415c547d96375bf3bf57feede6b6cddceca383" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x7ccd62d45c77121e4762230074a934765df4824f", "callType": "call", "gas": "0x0", "input": "0x", "to": "0xb233ddab5da16808a2401b6895e129f4854e2744", "value": "0x1aa535d3d0c0000" }, "result": { "gasUsed": "0x0", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0x1375db3f59a9c8de89373ed8d43a9b4795db86bf3017daf4ebafc1a87b2ee141" }, { "output": "0x", "stateDiff": null, "trace": [ { "action": { "from": "0x09ac6cb7cb825bbc8bf1cbd24f69ed0c7d94a7b5", "callType": "call", "gas": "0x2b8d8", "input": "0xa9059cbb000000000000000000000000f2f1dcb0712c4227fd525140aecaffcd6440f72600000000000000000000000000000000000000000000000000000000304be78b", "to": "0xdac17f958d2ee523a2206206994597c13d831ec7", "value": "0x0" }, "result": { "gasUsed": "0xa281", "output": "0x" }, "subtraces": 0, "traceAddress": [], "type": "call" } ], "vmTrace": null, "transactionHash": "0xe5d8756a63fd3ab1f70e392d01c5870fae871bca7ec0fbb71075d78dba0ed3fc" } ] }
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free