From 2abe3023b6fbfb061c8cefac74bd3a4a3746eb88 Mon Sep 17 00:00:00 2001 From: Igor Artamonov Date: Sun, 9 Aug 2020 18:42:23 -0400 Subject: [PATCH] problem: no response on invalid request to proxy rel: #43 --- .../kotlin/io/emeraldpay/dshackle/TlsSetup.kt | 2 +- .../emeraldpay/dshackle/config/ProxyConfig.kt | 2 +- .../emeraldpay/dshackle/proxy/ProxyServer.kt | 25 +- .../emeraldpay/dshackle/proxy/ReadRpcJson.kt | 19 +- .../upstream/rpcclient/JsonRpcResponse.kt | 27 + .../dshackle/proxy/ProxyServerSpec.groovy | 23 + .../dshackle/proxy/ReadRpcJsonSpec.groovy | 50 + testing/dshackle/dshackle.yaml | 3 + .../main/groovy/testing/BlocksHandler.groovy | 15 +- .../groovy/testing/ResourceResponse.groovy | 25 + .../main/groovy/testing/SimpleUpstream.groovy | 2 +- .../groovy/testing/TestcaseHandler.groovy | 15 + .../src/main/resources/trace-0xd949bc.json | 6966 +++++++++++++++++ 13 files changed, 7148 insertions(+), 26 deletions(-) create mode 100644 testing/simple-upstream/src/main/groovy/testing/ResourceResponse.groovy create mode 100644 testing/simple-upstream/src/main/resources/trace-0xd949bc.json diff --git a/src/main/kotlin/io/emeraldpay/dshackle/TlsSetup.kt b/src/main/kotlin/io/emeraldpay/dshackle/TlsSetup.kt index 41e6b4b3..c4f0d8e0 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/TlsSetup.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/TlsSetup.kt @@ -28,7 +28,7 @@ import org.springframework.beans.factory.annotation.Autowired import org.springframework.stereotype.Service @Service -class TlsSetup( +open class TlsSetup( @Autowired val fileResolver: FileResolver ) { diff --git a/src/main/kotlin/io/emeraldpay/dshackle/config/ProxyConfig.kt b/src/main/kotlin/io/emeraldpay/dshackle/config/ProxyConfig.kt index 6a699ac0..0b6fd473 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/config/ProxyConfig.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/config/ProxyConfig.kt @@ -21,7 +21,7 @@ import io.emeraldpay.grpc.Chain /** * Configure HTTP Proxy to Upstreams */ -class ProxyConfig { +open class ProxyConfig { companion object { public const val CONFIG_ID = "parsed.proxy" diff --git a/src/main/kotlin/io/emeraldpay/dshackle/proxy/ProxyServer.kt b/src/main/kotlin/io/emeraldpay/dshackle/proxy/ProxyServer.kt index 0b1304ca..c57a3b18 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/proxy/ProxyServer.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/proxy/ProxyServer.kt @@ -18,14 +18,19 @@ package io.emeraldpay.dshackle.proxy import io.emeraldpay.api.proto.BlockchainOuterClass import io.emeraldpay.api.proto.Common +import io.emeraldpay.dshackle.Global import io.emeraldpay.dshackle.TlsSetup import io.emeraldpay.dshackle.config.ProxyConfig import io.emeraldpay.dshackle.rpc.NativeCall +import io.emeraldpay.dshackle.upstream.rpcclient.JsonRpcResponse +import io.infinitape.etherjar.rpc.RpcException +import io.netty.buffer.ByteBuf import io.netty.buffer.Unpooled import io.netty.handler.ssl.SslContextBuilder import org.reactivestreams.Publisher import org.slf4j.LoggerFactory import org.springframework.http.HttpHeaders +import reactor.core.publisher.Flux import reactor.core.publisher.Mono import reactor.netty.DisposableServer import reactor.netty.http.server.HttpServer @@ -90,15 +95,27 @@ class ProxyServer( } } + fun processRequest(chain: Common.ChainRef, request: Mono): Flux { + return request.map(readRpcJson) + .flatMapMany { call -> execute(chain, call) } + .onErrorResume(RpcException::class.java) { err -> + val id = err.details?.let { + if (it is JsonRpcResponse.Id) it else JsonRpcResponse.IntId(-1) + } ?: JsonRpcResponse.IntId(-1) + + val json = JsonRpcResponse.error(err.code, err.rpcMessage, id) + Mono.just(Global.objectMapper.writeValueAsString(json)) + } + .map { Unpooled.wrappedBuffer(it.toByteArray()) } + } + fun proxy(routeConfig: ProxyConfig.Route): BiFunction> { val chain = Common.ChainRef.forNumber(routeConfig.blockchain.id) return BiFunction { req, resp -> - val results = req.receive() + val request = req.receive() .aggregate() .asByteArray() - .map(readRpcJson) - .flatMapMany { call -> execute(chain, call) } - .map { Unpooled.wrappedBuffer(it.toByteArray()) } + val results = processRequest(chain, request) resp.addHeader(HttpHeaders.CONTENT_TYPE, "application/json") .send(results) } diff --git a/src/main/kotlin/io/emeraldpay/dshackle/proxy/ReadRpcJson.kt b/src/main/kotlin/io/emeraldpay/dshackle/proxy/ReadRpcJson.kt index c811b49e..f7433ef8 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/proxy/ReadRpcJson.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/proxy/ReadRpcJson.kt @@ -20,6 +20,7 @@ import com.fasterxml.jackson.databind.ObjectMapper import com.google.protobuf.ByteString import io.emeraldpay.api.proto.BlockchainOuterClass import io.emeraldpay.dshackle.Global +import io.emeraldpay.dshackle.upstream.rpcclient.JsonRpcResponse import io.infinitape.etherjar.rpc.RpcException import io.infinitape.etherjar.rpc.RpcResponseError import io.infinitape.etherjar.rpc.json.RequestJson @@ -36,8 +37,7 @@ import java.util.stream.Collectors * Reader for JSON RPC request */ @Service -open class ReadRpcJson( -) : Function { +open class ReadRpcJson() : Function { companion object { private val log = LoggerFactory.getLogger(ReadRpcJson::class.java) @@ -49,18 +49,21 @@ open class ReadRpcJson( init { jsonExtractor = Function { json -> - if ("2.0" != json["jsonrpc"]) { - throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "Unsupported JSON RPC version") - } if (json["id"] == null) { - throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "ID not set") + throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "ID is not set") } val id = json["id"] + if ("2.0" != json["jsonrpc"]) { + if (json["jsonrpc"] == null) { + throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "jsonrpc version is not set", id?.let { JsonRpcResponse.Id.from(it) }) + } + throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "Unsupported JSON RPC version: " + json["jsonrpc"].toString(), id?.let { JsonRpcResponse.Id.from(it) }) + } if (!(json["method"] != null && json["method"] is String)) { - throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "ID not set") + throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "Method is not set", id?.let { JsonRpcResponse.Id.from(it) }) } if (json.containsKey("params") && json["params"] !is List<*>) { - throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "Params must be an array") + throw RpcException(RpcResponseError.CODE_INVALID_REQUEST, "Params must be an array", id?.let { JsonRpcResponse.Id.from(it) }) } RequestJson( json["method"].toString(), diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/rpcclient/JsonRpcResponse.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/rpcclient/JsonRpcResponse.kt index fb7da024..05d94de1 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/rpcclient/JsonRpcResponse.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/rpcclient/JsonRpcResponse.kt @@ -164,6 +164,19 @@ class JsonRpcResponse( override fun isInt(): Boolean { return true } + + override fun equals(other: Any?): Boolean { + if (this === other) return true + if (other !is IntId) return false + + if (id != other.id) return false + + return true + } + + override fun hashCode(): Int { + return id + } } class StringId(val id: String) : Id { @@ -178,6 +191,20 @@ class JsonRpcResponse( override fun isInt(): Boolean { return false } + + override fun equals(other: Any?): Boolean { + if (this === other) return true + if (other !is StringId) return false + + if (id != other.id) return false + + return true + } + + override fun hashCode(): Int { + return id.hashCode() + } + } class ResponseJsonSerializer : JsonSerializer() { diff --git a/src/test/groovy/io/emeraldpay/dshackle/proxy/ProxyServerSpec.groovy b/src/test/groovy/io/emeraldpay/dshackle/proxy/ProxyServerSpec.groovy index 0f84d750..630530d7 100644 --- a/src/test/groovy/io/emeraldpay/dshackle/proxy/ProxyServerSpec.groovy +++ b/src/test/groovy/io/emeraldpay/dshackle/proxy/ProxyServerSpec.groovy @@ -22,7 +22,10 @@ import io.emeraldpay.dshackle.TlsSetup import io.emeraldpay.dshackle.config.ProxyConfig import io.emeraldpay.dshackle.rpc.NativeCall import io.emeraldpay.dshackle.test.TestingCommons +import io.emeraldpay.dshackle.upstream.rpcclient.JsonRpcResponse +import io.infinitape.etherjar.rpc.RpcException import reactor.core.publisher.Flux +import reactor.core.publisher.Mono import reactor.test.StepVerifier import spock.lang.Specification @@ -65,4 +68,24 @@ class ProxyServerSpec extends Specification { .expectComplete() .verify(Duration.ofSeconds(1)) } + + def "Return error on invalid request"() { + setup: + ReadRpcJson read = Mock(ReadRpcJson) { + 1 * apply(_) >> { throw new RpcException(-32123, "test", new JsonRpcResponse.IntId(4)) } + } + def server = new ProxyServer( + Stub(ProxyConfig), + read, + Stub(WriteRpcJson), Stub(NativeCall), Stub(TlsSetup) + ) + when: + def act = server.processRequest(Common.ChainRef.CHAIN_ETHEREUM, Mono.just("".bytes)) + .map { new String(it.array()) } + then: + StepVerifier.create(act) + .expectNext('{"jsonrpc":"2.0","id":4,"error":{"code":-32123,"message":"test"}}') + .expectComplete() + .verify(Duration.ofSeconds(1)) + } } diff --git a/src/test/groovy/io/emeraldpay/dshackle/proxy/ReadRpcJsonSpec.groovy b/src/test/groovy/io/emeraldpay/dshackle/proxy/ReadRpcJsonSpec.groovy index 2120c710..6b00db8e 100644 --- a/src/test/groovy/io/emeraldpay/dshackle/proxy/ReadRpcJsonSpec.groovy +++ b/src/test/groovy/io/emeraldpay/dshackle/proxy/ReadRpcJsonSpec.groovy @@ -17,6 +17,7 @@ package io.emeraldpay.dshackle.proxy import io.emeraldpay.dshackle.test.TestingCommons +import io.emeraldpay.dshackle.upstream.rpcclient.JsonRpcResponse import io.infinitape.etherjar.rpc.RpcException import spock.lang.Specification @@ -174,4 +175,53 @@ class ReadRpcJsonSpec extends Specification { payload.toStringUtf8() == '[143,false]' } } + + def "Error if id is not set"() { + when: + reader.apply('{"jsonrpc":"2.0", "method":"net_peerCount", "params":[]}'.bytes) + then: + def t = thrown(RpcException) + t.code == -32600 + t.rpcMessage.toLowerCase() == "id is not set" + } + + def "Error if jsonrpc is not set"() { + when: + reader.apply('{"id":2, "method":"net_peerCount", "params":[]}'.bytes) + then: + def t = thrown(RpcException) + t.code == -32600 + t.rpcMessage.toLowerCase() == "jsonrpc version is not set" + t.details == new JsonRpcResponse.IntId(2) + } + + def "Error if jsonrpc version is invalid"() { + when: + reader.apply('{"id":2, "jsonrpc":"3.0", "method":"net_peerCount", "params":[]}'.bytes) + then: + def t = thrown(RpcException) + t.code == -32600 + t.rpcMessage.toLowerCase() == "unsupported json rpc version: 3.0" + t.details == new JsonRpcResponse.IntId(2) + } + + def "Error if method is not set"() { + when: + reader.apply('{"id":2, "jsonrpc":"2.0", "params":[]}'.bytes) + then: + def t = thrown(RpcException) + t.code == -32600 + t.rpcMessage.toLowerCase() == "method is not set" + t.details == new JsonRpcResponse.IntId(2) + } + + def "Error if params is not array"() { + when: + reader.apply('{"id":2, "jsonrpc":"2.0", "method":"test", "params":123}'.bytes) + then: + def t = thrown(RpcException) + t.code == -32600 + t.rpcMessage.toLowerCase() == "params must be an array" + t.details == new JsonRpcResponse.IntId(2) + } } diff --git a/testing/dshackle/dshackle.yaml b/testing/dshackle/dshackle.yaml index bebcca0d..a1a46490 100644 --- a/testing/dshackle/dshackle.yaml +++ b/testing/dshackle/dshackle.yaml @@ -8,6 +8,9 @@ cluster: upstreams: - id: test-1 chain: ethereum + methods: + enabled: + - name: debug_traceTransaction options: disable-validation: true connection: diff --git a/testing/simple-upstream/src/main/groovy/testing/BlocksHandler.groovy b/testing/simple-upstream/src/main/groovy/testing/BlocksHandler.groovy index 50b2ff38..11526f97 100644 --- a/testing/simple-upstream/src/main/groovy/testing/BlocksHandler.groovy +++ b/testing/simple-upstream/src/main/groovy/testing/BlocksHandler.groovy @@ -5,9 +5,11 @@ import com.fasterxml.jackson.databind.ObjectMapper class BlocksHandler implements CallHandler { ObjectMapper objectMapper + ResourceResponse resourceResponse BlocksHandler(ObjectMapper objectMapper) { this.objectMapper = objectMapper + this.resourceResponse = new ResourceResponse(objectMapper) } @Override @@ -18,22 +20,13 @@ class BlocksHandler implements CallHandler { if (method == "eth_getBlockByNumber") { String blockId = params[0] println("get block $blockId") - def result = getResource("block-${blockId}.json") - return Result.ok(result) + return resourceResponse.respondWith("block-${blockId}.json") } if (method == "eth_getTransactionByHash") { String txId = params[0] - def result = getResource("tx-${txId}.json") - return Result.ok(result) + return resourceResponse.respondWith("tx-${txId}.json") } return null } - Object getResource(String name) { - String json = BlocksHandler.class.getResourceAsStream("/" + name)?.text - if (json == null) { - return null - } - return objectMapper.readValue(json, Map) - } } diff --git a/testing/simple-upstream/src/main/groovy/testing/ResourceResponse.groovy b/testing/simple-upstream/src/main/groovy/testing/ResourceResponse.groovy new file mode 100644 index 00000000..46a1084b --- /dev/null +++ b/testing/simple-upstream/src/main/groovy/testing/ResourceResponse.groovy @@ -0,0 +1,25 @@ +package testing + +import com.fasterxml.jackson.databind.ObjectMapper + +class ResourceResponse { + + ObjectMapper objectMapper + + ResourceResponse(ObjectMapper objectMapper) { + this.objectMapper = objectMapper + } + + Object getResource(String name) { + String json = BlocksHandler.class.getResourceAsStream("/" + name)?.text + if (json == null) { + return null + } + return objectMapper.readValue(json, Map) + } + + CallHandler.Result respondWith(String name) { + return CallHandler.Result.ok(getResource(name)) + } + +} diff --git a/testing/simple-upstream/src/main/groovy/testing/SimpleUpstream.groovy b/testing/simple-upstream/src/main/groovy/testing/SimpleUpstream.groovy index 99a4ac5b..ef0db702 100644 --- a/testing/simple-upstream/src/main/groovy/testing/SimpleUpstream.groovy +++ b/testing/simple-upstream/src/main/groovy/testing/SimpleUpstream.groovy @@ -13,7 +13,7 @@ class SimpleUpstream { void prepare() { objectMapper = new ObjectMapper() - handlers << new TestcaseHandler() + handlers << new TestcaseHandler(objectMapper) handlers << new CommonHandlers() handlers << new BlocksHandler(objectMapper) handlers << new InvalidCallHandler() diff --git a/testing/simple-upstream/src/main/groovy/testing/TestcaseHandler.groovy b/testing/simple-upstream/src/main/groovy/testing/TestcaseHandler.groovy index 0828b896..c1963744 100644 --- a/testing/simple-upstream/src/main/groovy/testing/TestcaseHandler.groovy +++ b/testing/simple-upstream/src/main/groovy/testing/TestcaseHandler.groovy @@ -1,7 +1,17 @@ package testing +import com.fasterxml.jackson.databind.ObjectMapper + class TestcaseHandler implements CallHandler { + ObjectMapper objectMapper + ResourceResponse resourceResponse + + TestcaseHandler(ObjectMapper objectMapper) { + this.objectMapper = objectMapper + this.resourceResponse = new ResourceResponse(objectMapper) + } + @Override Result handle(String method, List params) { // https://github.com/emeraldpay/dshackle/issues/35 @@ -9,6 +19,11 @@ class TestcaseHandler implements CallHandler { && params[0].to?.toLowerCase() == "0x542156d51D10Db5acCB99f9Db7e7C91B74E80a2c".toLowerCase()) { return Result.error(-32015, "VM execution error.") } + // https://github.com/emeraldpay/dshackle/issues/43 + if (method == "debug_traceTransaction" + && params[0].toLowerCase() == "0xd949bc0fe1a5d16f4522bc47933554dcc4ada0493ff71ee1973b2410257af9fe".toLowerCase()) { + return resourceResponse.respondWith("trace-0xd949bc.json") + } return null } } diff --git a/testing/simple-upstream/src/main/resources/trace-0xd949bc.json b/testing/simple-upstream/src/main/resources/trace-0xd949bc.json new file mode 100644 index 00000000..d3f56e8a --- /dev/null +++ b/testing/simple-upstream/src/main/resources/trace-0xd949bc.json @@ -0,0 +1,6966 @@ +{ + "jsonrpc": "2.0", + "result": { + "gas": "0x75a2", + "failed": false, + "returnValue": "0x", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 410732, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [], + "memory": [], + "storage": {} + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 410729, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [], + "storage": {} + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 410726, + "gasCost": 12, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {} + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 410714, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 410711, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 8, + "op": "LT", + "gas": 410709, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 410706, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 410703, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 410693, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 410690, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 410687, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000007500000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 18, + "op": "SHR", + "gas": 410684, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000007500000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 19, + "op": "DUP1", + "gas": 410681, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 410678, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 25, + "op": "GT", + "gas": 410675, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000044f541ae" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 410672, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 410669, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000007f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 127, + "op": "JUMPDEST", + "gas": 410659, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 128, + "op": "DUP1", + "gas": 410658, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 129, + "op": "PUSH1", + "gas": 410655, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 131, + "op": "GT", + "gas": 410652, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000d7" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 132, + "op": "PUSH2", + "gas": 410649, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 135, + "op": "JUMPI", + "gas": 410646, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 170, + "op": "JUMPDEST", + "gas": 410636, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 171, + "op": "DUP1", + "gas": 410635, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 172, + "op": "PUSH1", + "gas": 410632, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 174, + "op": "EQ", + "gas": 410629, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075", + "000000000000000000000000000000000000000000000000000000000000002c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 175, + "op": "PUSH2", + "gas": 410626, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 178, + "op": "JUMPI", + "gas": 410623, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000d3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 179, + "op": "DUP1", + "gas": 410613, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 180, + "op": "PUSH1", + "gas": 410610, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 182, + "op": "EQ", + "gas": 410607, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 183, + "op": "PUSH2", + "gas": 410604, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 186, + "op": "JUMPI", + "gas": 410601, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000f5" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 245, + "op": "JUMPDEST", + "gas": 410591, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 246, + "op": "CALLVALUE", + "gas": 410590, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 247, + "op": "DUP1", + "gas": 410588, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 248, + "op": "ISZERO", + "gas": 410585, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 249, + "op": "PUSH2", + "gas": 410582, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 252, + "op": "JUMPI", + "gas": 410579, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000101" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 257, + "op": "JUMPDEST", + "gas": 410569, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 258, + "op": "POP", + "gas": 410568, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 259, + "op": "PUSH2", + "gas": 410566, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 262, + "op": "PUSH2", + "gas": 410563, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 265, + "op": "CALLDATASIZE", + "gas": 410560, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 266, + "op": "PUSH1", + "gas": 410558, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 268, + "op": "PUSH2", + "gas": 410555, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 271, + "op": "JUMP", + "gas": 410552, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000eed" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3821, + "op": "JUMPDEST", + "gas": 410544, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3822, + "op": "PUSH1", + "gas": 410543, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3824, + "op": "DUP1", + "gas": 410540, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3825, + "op": "PUSH1", + "gas": 410537, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3827, + "op": "DUP1", + "gas": 410534, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3828, + "op": "PUSH1", + "gas": 410531, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3830, + "op": "DUP1", + "gas": 410528, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3831, + "op": "PUSH1", + "gas": 410525, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3833, + "op": "DUP8", + "gas": 410522, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3834, + "op": "DUP10", + "gas": 410519, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3835, + "op": "SUB", + "gas": 410516, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3836, + "op": "SLT", + "gas": 410513, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000003a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3837, + "op": "ISZERO", + "gas": 410510, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3838, + "op": "PUSH2", + "gas": 410507, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3841, + "op": "JUMPI", + "gas": 410504, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000f05" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3845, + "op": "JUMPDEST", + "gas": 410494, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3846, + "op": "PUSH2", + "gas": 410493, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3849, + "op": "DUP9", + "gas": 410490, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3850, + "op": "DUP9", + "gas": 410487, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3851, + "op": "PUSH2", + "gas": 410484, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3854, + "op": "JUMP", + "gas": 410481, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000c85" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3205, + "op": "JUMPDEST", + "gas": 410473, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3206, + "op": "DUP1", + "gas": 410472, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3207, + "op": "CALLDATALOAD", + "gas": 410469, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3208, + "op": "PUSH1", + "gas": 410466, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3210, + "op": "DUP2", + "gas": 410463, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000ff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3211, + "op": "AND", + "gas": 410460, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000ff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3212, + "op": "DUP2", + "gas": 410457, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3213, + "op": "EQ", + "gas": 410454, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3214, + "op": "PUSH2", + "gas": 410451, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3217, + "op": "JUMPI", + "gas": 410448, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000009b2" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2482, + "op": "JUMPDEST", + "gas": 410438, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2483, + "op": "SWAP3", + "gas": 410437, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2484, + "op": "SWAP2", + "gas": 410434, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000f0f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2485, + "op": "POP", + "gas": 410431, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2486, + "op": "POP", + "gas": 410429, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000f0f", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2487, + "op": "JUMP", + "gas": 410427, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000f0f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3855, + "op": "JUMPDEST", + "gas": 410419, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3856, + "op": "SWAP6", + "gas": 410418, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3857, + "op": "POP", + "gas": 410415, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3858, + "op": "PUSH1", + "gas": 410413, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3860, + "op": "DUP8", + "gas": 410410, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3861, + "op": "ADD", + "gas": 410407, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3862, + "op": "CALLDATALOAD", + "gas": 410404, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000024" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3863, + "op": "PUSH2", + "gas": 410401, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3866, + "op": "DUP2", + "gas": 410398, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3867, + "op": "PUSH2", + "gas": 410395, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3870, + "op": "JUMP", + "gas": 410392, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000fbf" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 4031, + "op": "JUMPDEST", + "gas": 410384, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 4032, + "op": "PUSH20", + "gas": 410383, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 4053, + "op": "DUP2", + "gas": 410380, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 4054, + "op": "AND", + "gas": 410377, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 4055, + "op": "DUP2", + "gas": 410374, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 4056, + "op": "EQ", + "gas": 410371, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 4057, + "op": "PUSH2", + "gas": 410368, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 4060, + "op": "JUMPI", + "gas": 410365, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000ace" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2766, + "op": "JUMPDEST", + "gas": 410355, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2767, + "op": "POP", + "gas": 410354, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 2768, + "op": "JUMP", + "gas": 410352, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000f1f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3871, + "op": "JUMPDEST", + "gas": 410344, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3872, + "op": "SWAP5", + "gas": 410343, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3873, + "op": "POP", + "gas": 410340, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3874, + "op": "PUSH1", + "gas": 410338, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3876, + "op": "DUP8", + "gas": 410335, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3877, + "op": "ADD", + "gas": 410332, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3878, + "op": "CALLDATALOAD", + "gas": 410329, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3879, + "op": "SWAP4", + "gas": 410326, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3880, + "op": "POP", + "gas": 410323, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3881, + "op": "PUSH1", + "gas": 410321, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3883, + "op": "DUP8", + "gas": 410318, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000060" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3884, + "op": "ADD", + "gas": 410315, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000060", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3885, + "op": "CALLDATALOAD", + "gas": 410312, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000064" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3886, + "op": "SWAP3", + "gas": 410309, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3887, + "op": "POP", + "gas": 410306, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3888, + "op": "PUSH1", + "gas": 410304, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3890, + "op": "DUP8", + "gas": 410301, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3891, + "op": "ADD", + "gas": 410298, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3892, + "op": "CALLDATALOAD", + "gas": 410295, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3893, + "op": "PUSH8", + "gas": 410292, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3902, + "op": "DUP2", + "gas": 410289, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3903, + "op": "GT", + "gas": 410286, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3904, + "op": "ISZERO", + "gas": 410283, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3905, + "op": "PUSH2", + "gas": 410280, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3908, + "op": "JUMPI", + "gas": 410277, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000f48" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3912, + "op": "JUMPDEST", + "gas": 410267, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3913, + "op": "PUSH2", + "gas": 410266, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3916, + "op": "DUP10", + "gas": 410263, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3917, + "op": "DUP3", + "gas": 410260, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3918, + "op": "DUP11", + "gas": 410257, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3919, + "op": "ADD", + "gas": 410254, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3920, + "op": "PUSH2", + "gas": 410251, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3923, + "op": "JUMP", + "gas": 410248, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000c45" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3141, + "op": "JUMPDEST", + "gas": 410240, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3142, + "op": "PUSH1", + "gas": 410239, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3144, + "op": "DUP1", + "gas": 410236, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3145, + "op": "DUP4", + "gas": 410233, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3146, + "op": "PUSH1", + "gas": 410230, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3148, + "op": "DUP5", + "gas": 410227, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003a4", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3149, + "op": "ADD", + "gas": 410224, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003a4", + "000000000000000000000000000000000000000000000000000000000000001f", + "00000000000000000000000000000000000000000000000000000000000000a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3150, + "op": "SLT", + "gas": 410221, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000c3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3151, + "op": "PUSH2", + "gas": 410218, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3154, + "op": "JUMPI", + "gas": 410215, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000c56" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3158, + "op": "JUMPDEST", + "gas": 410205, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3159, + "op": "POP", + "gas": 410204, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3160, + "op": "DUP2", + "gas": 410202, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3161, + "op": "CALLDATALOAD", + "gas": 410199, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3162, + "op": "PUSH8", + "gas": 410196, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3171, + "op": "DUP2", + "gas": 410193, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3172, + "op": "GT", + "gas": 410190, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3173, + "op": "ISZERO", + "gas": 410187, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3174, + "op": "PUSH2", + "gas": 410184, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3177, + "op": "JUMPI", + "gas": 410181, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000c6d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3181, + "op": "JUMPDEST", + "gas": 410171, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3182, + "op": "PUSH1", + "gas": 410170, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3184, + "op": "DUP4", + "gas": 410167, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3185, + "op": "ADD", + "gas": 410164, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3186, + "op": "SWAP2", + "gas": 410161, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000000c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3187, + "op": "POP", + "gas": 410158, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3188, + "op": "DUP4", + "gas": 410156, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3189, + "op": "PUSH1", + "gas": 410153, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3191, + "op": "DUP3", + "gas": 410150, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3192, + "op": "DUP6", + "gas": 410147, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3193, + "op": "ADD", + "gas": 410144, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000000a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3194, + "op": "ADD", + "gas": 410141, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000368" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3195, + "op": "GT", + "gas": 410138, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000388" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3196, + "op": "ISZERO", + "gas": 410135, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3197, + "op": "PUSH2", + "gas": 410132, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3200, + "op": "JUMPI", + "gas": 410129, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000c3e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3134, + "op": "JUMPDEST", + "gas": 410119, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3135, + "op": "SWAP3", + "gas": 410118, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000003a4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3136, + "op": "POP", + "gas": 410115, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3137, + "op": "SWAP3", + "gas": 410113, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "00000000000000000000000000000000000000000000000000000000000000c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3138, + "op": "SWAP1", + "gas": 410110, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000000a4", + "0000000000000000000000000000000000000000000000000000000000000d9f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3139, + "op": "POP", + "gas": 410107, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000d9f", + "00000000000000000000000000000000000000000000000000000000000000a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3140, + "op": "JUMP", + "gas": 410105, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000d9f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3487, + "op": "JUMPDEST", + "gas": 410097, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3488, + "op": "SWAP8", + "gas": 410096, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3489, + "op": "SWAP11", + "gas": 410093, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3490, + "op": "SWAP7", + "gas": 410090, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "0000000000000000000000000000000000000000000000000000000000000110" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3491, + "op": "SWAP10", + "gas": 410087, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003a4", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3492, + "op": "POP", + "gas": 410084, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000003a4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3493, + "op": "SWAP5", + "gas": 410082, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3494, + "op": "SWAP8", + "gas": 410079, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000000c4", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3495, + "op": "POP", + "gas": 410076, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000000c4", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3496, + "op": "SWAP3", + "gas": 410074, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000000c4", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3497, + "op": "SWAP6", + "gas": 410071, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3498, + "op": "SWAP4", + "gas": 410068, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3499, + "op": "SWAP5", + "gas": 410065, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000110", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3500, + "op": "SWAP3", + "gas": 410062, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000110" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3501, + "op": "POP", + "gas": 410059, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3502, + "op": "POP", + "gas": 410057, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3503, + "op": "POP", + "gas": 410055, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 3504, + "op": "JUMP", + "gas": 410053, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000110" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 272, + "op": "JUMPDEST", + "gas": 410045, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 273, + "op": "PUSH2", + "gas": 410044, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 276, + "op": "JUMP", + "gas": 410041, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000301" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 769, + "op": "JUMPDEST", + "gas": 410033, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 770, + "op": "CALLER", + "gas": 410032, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 771, + "op": "PUSH1", + "gas": 410030, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 773, + "op": "SWAP1", + "gas": 410027, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 774, + "op": "DUP2", + "gas": 410024, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 775, + "op": "MSTORE", + "gas": 410021, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 776, + "op": "PUSH1", + "gas": 410018, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 778, + "op": "PUSH1", + "gas": 410015, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 780, + "op": "MSTORE", + "gas": 410012, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 781, + "op": "PUSH1", + "gas": 410009, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 783, + "op": "SWAP1", + "gas": 410006, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 784, + "op": "SHA3", + "gas": 410003, + "gasCost": 42, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 785, + "op": "SLOAD", + "gas": 409961, + "gasCost": 800, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "e9aa3362e80077d4621a0bff76fcb780a24af5780c4fe4325784108d311c437e" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 786, + "op": "PUSH1", + "gas": 409161, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 788, + "op": "AND", + "gas": 409158, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000ff" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 789, + "op": "PUSH2", + "gas": 409155, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 792, + "op": "JUMPI", + "gas": 409152, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000031d" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 797, + "op": "JUMPDEST", + "gas": 409142, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 798, + "op": "DUP4", + "gas": 409141, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 799, + "op": "DUP6", + "gas": 409138, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 800, + "op": "PUSH20", + "gas": 409135, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 821, + "op": "AND", + "gas": 409132, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 822, + "op": "BALANCE", + "gas": 409129, + "gasCost": 700, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 823, + "op": "EQ", + "gas": 408429, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "00000000000000000000000000000000000000000000000087af04e132718c08" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 824, + "op": "ISZERO", + "gas": 408426, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 825, + "op": "PUSH2", + "gas": 408423, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 828, + "op": "JUMPI", + "gas": 408420, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000341" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 833, + "op": "JUMPDEST", + "gas": 408410, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 834, + "op": "PUSH1", + "gas": 408409, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 836, + "op": "DUP4", + "gas": 408406, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 837, + "op": "DUP2", + "gas": 408403, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 838, + "op": "MSTORE", + "gas": 408400, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000009073c8c1fee3dd73fb10c0b4241ce8b708a7c432", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 839, + "op": "PUSH1", + "gas": 408397, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 841, + "op": "DUP2", + "gas": 408394, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 842, + "op": "SWAP1", + "gas": 408391, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 843, + "op": "MSTORE", + "gas": 408388, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 844, + "op": "PUSH1", + "gas": 408385, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 846, + "op": "SWAP1", + "gas": 408382, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 847, + "op": "SHA3", + "gas": 408379, + "gasCost": 42, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 848, + "op": "SLOAD", + "gas": 408337, + "gasCost": 800, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "76b35ea2d6f8880562a4e7e8893ecaa75ab4dc70e56b5bee9dbc2bffff029cf4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 849, + "op": "PUSH1", + "gas": 407537, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 851, + "op": "AND", + "gas": 407534, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000ff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 852, + "op": "ISZERO", + "gas": 407531, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 853, + "op": "PUSH2", + "gas": 407528, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 856, + "op": "JUMPI", + "gas": 407525, + "gasCost": 10, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000035d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 857, + "op": "PUSH2", + "gas": 407515, + "gasCost": 3, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 860, + "op": "JUMP", + "gas": 407512, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4", + "0000000000000000000000000000000000000000000000000000000000000411" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 1041, + "op": "JUMPDEST", + "gas": 407504, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 1042, + "op": "POP", + "gas": 407503, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4", + "00000000000000000000000000000000000000000000000000000000000002c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 1043, + "op": "POP", + "gas": 407501, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "00000000000000000000000000000000000000000000000000000000000000c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 1044, + "op": "POP", + "gas": 407499, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408", + "0000000000000000000000000000000000000000000000000005ab3eeacf3439" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 1045, + "op": "POP", + "gas": 407497, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6", + "00000000000000000000000000000000000000000000000087b5809dd6b1b408" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 1046, + "op": "POP", + "gas": 407495, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000003d715939a6f90497175e4b6b31eee68f313237d6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 1047, + "op": "POP", + "gas": 407493, + "gasCost": 2, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 1048, + "op": "JUMP", + "gas": 407491, + "gasCost": 8, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075", + "00000000000000000000000000000000000000000000000000000000000000f3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 243, + "op": "JUMPDEST", + "gas": 407483, + "gasCost": 1, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + }, + { + "pc": 244, + "op": "STOP", + "gas": 407482, + "gasCost": 0, + "depth": 1, + "error": null, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000075" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000005ab3eeacf3439", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {} + } + ] + }, + "id": 1 +} \ No newline at end of file